
    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_fd84ec0fe9b0b9d8261f3d1a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_5e4ac14d37dd5088e7a070bd.woff')format("woff");}.ff2{font-family:ff2;line-height:0.986000;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_94d06e849d07d5d52fbc81fa.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8d7b4b736ed5e01054c6e8f3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.206055;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_8d7b4b736ed5e01054c6e8f3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.206055;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_8d7b4b736ed5e01054c6e8f3.woff')format("woff");}.ff6{font-family:ff6;line-height:1.206055;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_8d7b4b736ed5e01054c6e8f3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.206055;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_8d7b4b736ed5e01054c6e8f3.woff')format("woff");}.ff8{font-family:ff8;line-height:1.206055;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_8d7b4b736ed5e01054c6e8f3.woff')format("woff");}.ff9{font-family:ff9;line-height:1.206055;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_c87bd3a493ec0d2c0c3f6785.woff')format("woff");}.ffa{font-family:ffa;line-height:0.482000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_652a99ef2a60c400be69adf0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.712000;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;}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.ls9{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.004800px;}
.ls1d{letter-spacing:0.109685px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:10.461300px;}
.ls8{letter-spacing:11.954850px;}
.ls20{letter-spacing:12.729992px;}
.ls1c{letter-spacing:13.243548px;}
.ls1a{letter-spacing:13.448400px;}
.ls1f{letter-spacing:13.454400px;}
.lsf{letter-spacing:13.987490px;}
.ls16{letter-spacing:14.645022px;}
.ls11{letter-spacing:14.704798px;}
.lse{letter-spacing:14.764573px;}
.ls6{letter-spacing:14.824349px;}
.lsa{letter-spacing:14.943900px;}
.ls18{letter-spacing:15.003676px;}
.ls17{letter-spacing:15.063451px;}
.ls10{letter-spacing:15.123227px;}
.ls7{letter-spacing:15.242778px;}
.lsd{letter-spacing:15.302554px;}
.ls15{letter-spacing:15.601432px;}
.lsc{letter-spacing:15.661207px;}
.ls12{letter-spacing:16.199188px;}
.ls14{letter-spacing:16.737168px;}
.ls13{letter-spacing:16.916495px;}
.ls19{letter-spacing:16.959900px;}
.ls1e{letter-spacing:17.997459px;}
.lsb{letter-spacing:19.008641px;}
.ls2{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls3{letter-spacing:72.355200px;}
.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;}
}
.ws2a{word-spacing:-14.943900px;}
.wsa1{word-spacing:-13.449600px;}
.wsa{word-spacing:-11.955150px;}
.ws8{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.ws15{word-spacing:-3.287658px;}
.wsc{word-spacing:-3.108331px;}
.ws46{word-spacing:-2.689902px;}
.ws2b{word-spacing:-2.630126px;}
.ws81{word-spacing:-2.211697px;}
.ws67{word-spacing:-2.092146px;}
.ws8d{word-spacing:-1.972595px;}
.ws47{word-spacing:-1.912819px;}
.wsa6{word-spacing:-1.882944px;}
.ws5a{word-spacing:-1.853044px;}
.ws96{word-spacing:-1.829146px;}
.ws83{word-spacing:-1.793268px;}
.ws60{word-spacing:-1.673717px;}
.ws9a{word-spacing:-1.613952px;}
.ws1c{word-spacing:-1.613941px;}
.ws77{word-spacing:-1.554166px;}
.ws61{word-spacing:-1.374839px;}
.ws4f{word-spacing:-1.315063px;}
.ws5e{word-spacing:-1.255288px;}
.ws35{word-spacing:-1.135736px;}
.ws80{word-spacing:-1.016185px;}
.wsb6{word-spacing:-0.968371px;}
.ws65{word-spacing:-0.956410px;}
.wsb3{word-spacing:-0.914573px;}
.ws2e{word-spacing:-0.896634px;}
.wsb4{word-spacing:-0.860774px;}
.ws32{word-spacing:-0.836858px;}
.ws8e{word-spacing:-0.777083px;}
.ws1d{word-spacing:-0.717307px;}
.wsb7{word-spacing:-0.699379px;}
.ws28{word-spacing:-0.657532px;}
.ws3f{word-spacing:-0.597756px;}
.wsa7{word-spacing:-0.591782px;}
.ws4e{word-spacing:-0.537980px;}
.ws9d{word-spacing:-0.484186px;}
.ws7e{word-spacing:-0.478205px;}
.ws14{word-spacing:-0.418429px;}
.wsaa{word-spacing:-0.376589px;}
.ws3b{word-spacing:-0.358654px;}
.ws92{word-spacing:-0.322790px;}
.wsf{word-spacing:-0.298878px;}
.ws18{word-spacing:-0.239102px;}
.ws9e{word-spacing:-0.215194px;}
.ws16{word-spacing:-0.179327px;}
.wsb1{word-spacing:-0.161395px;}
.ws27{word-spacing:-0.119551px;}
.ws99{word-spacing:-0.107597px;}
.ws1b{word-spacing:-0.059776px;}
.ws9c{word-spacing:-0.053798px;}
.ws1{word-spacing:-0.041843px;}
.ws9{word-spacing:-0.006355px;}
.ws21{word-spacing:-0.001125px;}
.ws0{word-spacing:0.000000px;}
.ws97{word-spacing:0.053798px;}
.ws2c{word-spacing:0.059776px;}
.ws93{word-spacing:0.107597px;}
.wse{word-spacing:0.119551px;}
.ws98{word-spacing:0.161395px;}
.ws2{word-spacing:0.167371px;}
.ws24{word-spacing:0.179327px;}
.ws4{word-spacing:0.209214px;}
.ws7{word-spacing:0.215194px;}
.ws1e{word-spacing:0.239102px;}
.wsac{word-spacing:0.268992px;}
.ws11{word-spacing:0.298878px;}
.ws94{word-spacing:0.322790px;}
.ws29{word-spacing:0.358654px;}
.ws6b{word-spacing:0.418429px;}
.ws4d{word-spacing:0.478205px;}
.ws66{word-spacing:0.537980px;}
.wsa5{word-spacing:0.591782px;}
.ws5b{word-spacing:0.597756px;}
.ws69{word-spacing:0.777083px;}
.ws33{word-spacing:0.836858px;}
.wsb0{word-spacing:0.860774px;}
.ws3a{word-spacing:0.896634px;}
.wsa2{word-spacing:0.914573px;}
.ws79{word-spacing:0.956410px;}
.ws72{word-spacing:1.075961px;}
.ws22{word-spacing:1.195512px;}
.ws45{word-spacing:1.255288px;}
.ws13{word-spacing:1.315063px;}
.wsb5{word-spacing:1.344960px;}
.ws59{word-spacing:1.374839px;}
.wsad{word-spacing:1.398758px;}
.ws17{word-spacing:1.434614px;}
.ws49{word-spacing:1.494390px;}
.wsd{word-spacing:1.554166px;}
.ws2d{word-spacing:1.613941px;}
.wsb2{word-spacing:1.613952px;}
.ws1f{word-spacing:1.733492px;}
.ws50{word-spacing:1.793268px;}
.ws68{word-spacing:1.853044px;}
.ws52{word-spacing:1.912819px;}
.ws2f{word-spacing:2.151922px;}
.ws9f{word-spacing:2.205734px;}
.ws76{word-spacing:2.211697px;}
.ws44{word-spacing:2.271473px;}
.ws4a{word-spacing:2.331248px;}
.ws86{word-spacing:2.391024px;}
.ws95{word-spacing:2.507394px;}
.ws6{word-spacing:2.510252px;}
.ws7f{word-spacing:2.510575px;}
.ws3{word-spacing:2.511541px;}
.ws36{word-spacing:2.570351px;}
.ws38{word-spacing:2.749678px;}
.ws64{word-spacing:2.809453px;}
.ws8c{word-spacing:2.869229px;}
.wsb{word-spacing:2.869236px;}
.ws3e{word-spacing:2.929004px;}
.ws40{word-spacing:2.988780px;}
.wsab{word-spacing:3.012710px;}
.ws26{word-spacing:3.048556px;}
.ws43{word-spacing:3.227882px;}
.wsa3{word-spacing:3.227904px;}
.wsb8{word-spacing:3.281702px;}
.wsa9{word-spacing:3.335501px;}
.ws34{word-spacing:3.347434px;}
.ws4c{word-spacing:3.407209px;}
.ws4b{word-spacing:3.466985px;}
.wsba{word-spacing:3.496896px;}
.ws7a{word-spacing:3.526760px;}
.ws19{word-spacing:3.583475px;}
.ws6f{word-spacing:3.586536px;}
.wsaf{word-spacing:3.604493px;}
.ws10{word-spacing:3.646312px;}
.ws9b{word-spacing:3.667164px;}
.ws8b{word-spacing:3.765863px;}
.ws71{word-spacing:3.825638px;}
.ws42{word-spacing:3.885414px;}
.wsa4{word-spacing:3.981082px;}
.ws25{word-spacing:4.004965px;}
.ws5c{word-spacing:4.064741px;}
.ws7c{word-spacing:4.184292px;}
.ws1a{word-spacing:4.303872px;}
.ws37{word-spacing:4.363619px;}
.ws85{word-spacing:4.423394px;}
.wsa8{word-spacing:4.465267px;}
.ws41{word-spacing:4.483170px;}
.ws58{word-spacing:4.542946px;}
.ws87{word-spacing:4.722272px;}
.ws56{word-spacing:4.782048px;}
.ws7d{word-spacing:4.901599px;}
.ws84{word-spacing:5.021150px;}
.ws51{word-spacing:5.080926px;}
.ws5f{word-spacing:5.140702px;}
.ws6d{word-spacing:5.200477px;}
.ws31{word-spacing:5.260253px;}
.ws54{word-spacing:5.320028px;}
.ws23{word-spacing:5.379804px;}
.ws8f{word-spacing:5.439580px;}
.ws3d{word-spacing:5.618906px;}
.ws6c{word-spacing:5.678682px;}
.ws5d{word-spacing:5.798233px;}
.ws20{word-spacing:5.858009px;}
.ws75{word-spacing:6.037336px;}
.ws3c{word-spacing:6.097111px;}
.ws55{word-spacing:6.156887px;}
.ws89{word-spacing:6.276438px;}
.ws30{word-spacing:6.336214px;}
.ws8a{word-spacing:6.395989px;}
.wsae{word-spacing:6.402010px;}
.ws74{word-spacing:6.455765px;}
.ws73{word-spacing:6.515540px;}
.ws78{word-spacing:6.754643px;}
.ws6a{word-spacing:6.814418px;}
.ws90{word-spacing:6.874194px;}
.ws7b{word-spacing:6.933970px;}
.ws6e{word-spacing:7.053521px;}
.wsb9{word-spacing:7.101389px;}
.ws53{word-spacing:7.113296px;}
.ws91{word-spacing:7.173072px;}
.ws88{word-spacing:7.292623px;}
.ws12{word-spacing:7.651277px;}
.ws82{word-spacing:7.950155px;}
.ws70{word-spacing:8.009930px;}
.ws39{word-spacing:8.069706px;}
.ws57{word-spacing:8.249033px;}
.ws63{word-spacing:8.368584px;}
.ws48{word-spacing:8.428360px;}
.wsa0{word-spacing:10.383091px;}
.ws62{word-spacing:10.520506px;}
._3{margin-left:-12.158438px;}
._19{margin-left:-7.663229px;}
._d{margin-left:-6.647044px;}
._7{margin-left:-5.308087px;}
._2{margin-left:-3.933223px;}
._1{margin-left:-2.301354px;}
._6{margin-left:-1.243336px;}
._4{width:3.000204px;}
._1e{width:4.363619px;}
._22{width:10.813326px;}
._0{width:12.971268px;}
._f{width:14.824386px;}
._1d{width:15.852496px;}
._8{width:17.621850px;}
._a{width:18.638035px;}
._14{width:20.084602px;}
._15{width:22.045244px;}
._9{width:23.790689px;}
._18{width:25.643732px;}
._1a{width:26.779469px;}
._b{width:29.098765px;}
._23{width:30.193319px;}
._13{width:31.202863px;}
._1c{width:32.207096px;}
._16{width:33.940589px;}
._12{width:35.136101px;}
._e{width:37.001096px;}
._1b{width:39.392120px;}
._21{width:40.814783px;}
._c{width:41.842920px;}
._17{width:43.624236px;}
._5{width:54.402876px;}
._20{width:57.145474px;}
._10{width:1754.564700px;}
._1f{width:2485.118700px;}
._11{width:2509.028700px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fsa{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs8{font-size:60.120000px;}
.fs9{font-size:62.286600px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.ya1{bottom:1.130996px;}
.y135{bottom:1.367648px;}
.y140{bottom:1.922111px;}
.ya4{bottom:2.180091px;}
.y16d{bottom:2.308403px;}
.y122{bottom:2.690432px;}
.y44{bottom:45.921000px;}
.y1c0{bottom:99.864000px;}
.y19{bottom:100.260000px;}
.yd6{bottom:101.388000px;}
.y20a{bottom:105.391500px;}
.yaa{bottom:107.586000px;}
.y43{bottom:108.444000px;}
.y13e{bottom:111.789000px;}
.y1db{bottom:113.299500px;}
.y10f{bottom:114.882000px;}
.y77{bottom:116.407500px;}
.y18{bottom:118.147500px;}
.y1bf{bottom:120.754500px;}
.yd5{bottom:122.280000px;}
.y209{bottom:124.542000px;}
.y16b{bottom:127.885500px;}
.ya9{bottom:128.478000px;}
.y42{bottom:129.336000px;}
.y13d{bottom:132.681000px;}
.ye8{bottom:132.882000px;}
.y120{bottom:134.191500px;}
.y10e{bottom:135.774000px;}
.y17{bottom:136.035000px;}
.y76{bottom:137.298000px;}
.y1be{bottom:141.646500px;}
.yd4{bottom:143.170500px;}
.y208{bottom:143.692500px;}
.y16a{bottom:148.777500px;}
.ya8{bottom:149.368500px;}
.y41{bottom:150.228000px;}
.y13c{bottom:153.573000px;}
.ye7{bottom:153.774000px;}
.y16{bottom:153.924000px;}
.y11f{bottom:155.083500px;}
.y10d{bottom:156.666000px;}
.y1b5{bottom:158.055000px;}
.y75{bottom:158.190000px;}
.y1bd{bottom:162.538500px;}
.y207{bottom:162.843000px;}
.yd3{bottom:168.546000px;}
.y18b{bottom:169.279500px;}
.y169{bottom:169.668000px;}
.ya7{bottom:170.260500px;}
.y40{bottom:171.118500px;}
.y15{bottom:171.811500px;}
.y13b{bottom:174.463500px;}
.ye6{bottom:174.664500px;}
.y11e{bottom:175.974000px;}
.y10c{bottom:177.556500px;}
.y1b4{bottom:178.947000px;}
.y74{bottom:179.082000px;}
.y206{bottom:181.993500px;}
.y238{bottom:182.563500px;}
.y1bc{bottom:183.429000px;}
.y14{bottom:189.699000px;}
.y18a{bottom:190.171500px;}
.y168{bottom:190.560000px;}
.y3f{bottom:192.010500px;}
.y13a{bottom:195.355500px;}
.ye5{bottom:195.556500px;}
.ya6{bottom:195.634500px;}
.y11d{bottom:196.866000px;}
.y10b{bottom:198.448500px;}
.y1b3{bottom:199.837500px;}
.y73{bottom:199.972500px;}
.y205{bottom:201.144000px;}
.y237{bottom:201.714000px;}
.yd2{bottom:203.887500px;}
.y1bb{bottom:204.321000px;}
.y13{bottom:207.586500px;}
.y15a{bottom:208.218000px;}
.y189{bottom:211.063500px;}
.y167{bottom:211.452000px;}
.y3e{bottom:212.902500px;}
.y139{bottom:216.247500px;}
.ye4{bottom:216.448500px;}
.y11c{bottom:217.758000px;}
.y10a{bottom:219.340500px;}
.y204{bottom:220.294500px;}
.y1b2{bottom:220.729500px;}
.y72{bottom:220.864500px;}
.y9e{bottom:223.255500px;}
.yd1{bottom:224.779500px;}
.y1ba{bottom:225.213000px;}
.y12{bottom:225.475500px;}
.ya5{bottom:227.781000px;}
.y159{bottom:229.110000px;}
.y188{bottom:231.954000px;}
.y166{bottom:232.342500px;}
.y3d{bottom:233.793000px;}
.y138{bottom:237.138000px;}
.y11b{bottom:238.648500px;}
.y203{bottom:239.445000px;}
.y236{bottom:240.015000px;}
.y109{bottom:240.232500px;}
.y71{bottom:241.756500px;}
.ye3{bottom:241.822500px;}
.y9d{bottom:244.147500px;}
.yd0{bottom:245.671500px;}
.y1b1{bottom:246.105000px;}
.y158{bottom:250.002000px;}
.ya3{bottom:250.210800px;}
.y11{bottom:252.330000px;}
.y187{bottom:252.846000px;}
.y165{bottom:253.234500px;}
.y3c{bottom:254.685000px;}
.y202{bottom:258.597000px;}
.y235{bottom:259.165500px;}
.y11a{bottom:259.540500px;}
.y108{bottom:261.123000px;}
.y137{bottom:262.513500px;}
.y70{bottom:262.647000px;}
.y1da{bottom:264.024000px;}
.y9c{bottom:265.038000px;}
.ycf{bottom:266.563500px;}
.y1b9{bottom:266.995500px;}
.y10{bottom:270.217500px;}
.y157{bottom:270.892500px;}
.y186{bottom:273.738000px;}
.y164{bottom:274.126500px;}
.y3b{bottom:275.577000px;}
.ye2{bottom:277.165500px;}
.y201{bottom:277.747500px;}
.y234{bottom:278.316000px;}
.y119{bottom:280.432500px;}
.y107{bottom:282.015000px;}
.y6f{bottom:283.539000px;}
.y1b0{bottom:284.928000px;}
.y9b{bottom:285.930000px;}
.yce{bottom:287.454000px;}
.yf{bottom:288.105000px;}
.y156{bottom:291.784500px;}
.y1b8{bottom:292.371000px;}
.y185{bottom:294.628500px;}
.y136{bottom:294.658500px;}
.y163{bottom:295.017000px;}
.y3a{bottom:296.467500px;}
.y200{bottom:296.898000px;}
.y233{bottom:297.466500px;}
.ye1{bottom:298.057500px;}
.y1d9{bottom:299.365500px;}
.y106{bottom:302.907000px;}
.y6e{bottom:304.431000px;}
.y118{bottom:305.806500px;}
.y1af{bottom:305.820000px;}
.ye{bottom:305.994000px;}
.y9a{bottom:306.822000px;}
.ycd{bottom:308.346000px;}
.y155{bottom:312.676500px;}
.y184{bottom:315.520500px;}
.y1ff{bottom:316.048500px;}
.y232{bottom:316.617000px;}
.y134{bottom:317.088750px;}
.ye0{bottom:318.948000px;}
.y1d8{bottom:320.257500px;}
.y162{bottom:320.392500px;}
.y39{bottom:321.843000px;}
.y105{bottom:323.797500px;}
.yd{bottom:323.881500px;}
.y6d{bottom:325.323000px;}
.y1ae{bottom:326.712000px;}
.y99{bottom:327.712500px;}
.ycc{bottom:329.238000px;}
.y154{bottom:333.567000px;}
.y1fe{bottom:335.199000px;}
.y231{bottom:335.767500px;}
.ydf{bottom:339.840000px;}
.y183{bottom:340.894500px;}
.y117{bottom:341.149500px;}
.yc{bottom:341.769000px;}
.y104{bottom:344.689500px;}
.y6c{bottom:346.213500px;}
.y1ad{bottom:347.602500px;}
.y98{bottom:348.604500px;}
.ycb{bottom:350.128500px;}
.y161{bottom:352.537500px;}
.y1fd{bottom:354.349500px;}
.y153{bottom:354.459000px;}
.y230{bottom:354.918000px;}
.yb{bottom:359.658000px;}
.yde{bottom:360.732000px;}
.y116{bottom:362.041500px;}
.y103{bottom:365.581500px;}
.y6b{bottom:367.105500px;}
.y1ac{bottom:368.494500px;}
.y97{bottom:369.496500px;}
.yca{bottom:371.020500px;}
.y1fc{bottom:373.500000px;}
.y22f{bottom:374.070000px;}
.y152{bottom:375.351000px;}
.ya{bottom:377.545500px;}
.y182{bottom:379.719000px;}
.ydd{bottom:381.622500px;}
.y115{bottom:382.932000px;}
.y102{bottom:386.472000px;}
.y6a{bottom:387.997500px;}
.y1ab{bottom:389.386500px;}
.y96{bottom:390.387000px;}
.yc9{bottom:391.912500px;}
.y1fb{bottom:392.650500px;}
.y22e{bottom:393.220500px;}
.y9{bottom:395.433000px;}
.y151{bottom:396.243000px;}
.y181{bottom:400.611000px;}
.y38{bottom:401.055000px;}
.y114{bottom:403.824000px;}
.y101{bottom:407.364000px;}
.y69{bottom:408.888000px;}
.y1aa{bottom:410.278500px;}
.y95{bottom:411.279000px;}
.y1fa{bottom:411.801000px;}
.y22d{bottom:412.371000px;}
.yc8{bottom:412.803000px;}
.y8{bottom:413.322000px;}
.y150{bottom:417.133500px;}
.ydc{bottom:417.250500px;}
.y180{bottom:421.503000px;}
.y113{bottom:424.716000px;}
.y100{bottom:428.256000px;}
.y68{bottom:429.780000px;}
.y1f9{bottom:430.951500px;}
.y1a9{bottom:431.169000px;}
.y22c{bottom:431.521500px;}
.y94{bottom:432.171000px;}
.yc7{bottom:433.695000px;}
.y7{bottom:437.187000px;}
.y14f{bottom:438.025500px;}
.y37{bottom:439.878000px;}
.y17f{bottom:442.393500px;}
.y112{bottom:445.606500px;}
.yff{bottom:449.146500px;}
.y1f8{bottom:450.102000px;}
.y67{bottom:450.672000px;}
.y1a8{bottom:452.061000px;}
.ya2{bottom:453.022500px;}
.y93{bottom:453.061500px;}
.yc6{bottom:454.587000px;}
.y6{bottom:455.074500px;}
.y14e{bottom:458.917500px;}
.y36{bottom:460.770000px;}
.y17e{bottom:463.285500px;}
.y1d7{bottom:466.498500px;}
.y1f7{bottom:469.252500px;}
.y22b{bottom:469.822500px;}
.yfe{bottom:470.038500px;}
.y111{bottom:470.982000px;}
.y66{bottom:471.562500px;}
.y1a7{bottom:472.953000px;}
.y5{bottom:472.963500px;}
.y92{bottom:473.953500px;}
.ya0{bottom:475.452000px;}
.yc5{bottom:475.477500px;}
.y14d{bottom:479.808000px;}
.y35{bottom:481.662000px;}
.y17d{bottom:484.177500px;}
.y1d6{bottom:487.390500px;}
.y1f6{bottom:488.403000px;}
.y22a{bottom:488.973000px;}
.y4{bottom:490.851000px;}
.yfd{bottom:490.930500px;}
.y65{bottom:492.454500px;}
.y91{bottom:494.845500px;}
.y110{bottom:495.414000px;}
.yc4{bottom:496.369500px;}
.y1a6{bottom:498.327000px;}
.y14c{bottom:500.700000px;}
.y133{bottom:501.172500px;}
.y34{bottom:502.554000px;}
.y17c{bottom:505.068000px;}
.y1f5{bottom:507.553500px;}
.y229{bottom:508.123500px;}
.y1d5{bottom:508.281000px;}
.yfc{bottom:511.822500px;}
.y64{bottom:513.346500px;}
.y3{bottom:514.716000px;}
.y90{bottom:515.737500px;}
.yc3{bottom:517.261500px;}
.y14b{bottom:521.592000px;}
.y132{bottom:522.064500px;}
.y33{bottom:523.444500px;}
.y17b{bottom:525.960000px;}
.y1f4{bottom:526.704000px;}
.y228{bottom:527.274000px;}
.y1d4{bottom:529.173000px;}
.y2{bottom:532.605000px;}
.yfb{bottom:532.713000px;}
.y1a5{bottom:533.670000px;}
.y63{bottom:534.237000px;}
.y8f{bottom:536.628000px;}
.yc2{bottom:538.152000px;}
.y14a{bottom:542.482500px;}
.y131{bottom:542.956500px;}
.y32{bottom:544.336500px;}
.y1f3{bottom:545.854500px;}
.y227{bottom:546.424500px;}
.y17a{bottom:546.852000px;}
.y1d3{bottom:550.065000px;}
.y1{bottom:550.492500px;}
.yfa{bottom:553.605000px;}
.y1a4{bottom:554.560500px;}
.y62{bottom:555.129000px;}
.y8e{bottom:557.520000px;}
.yc1{bottom:559.044000px;}
.y149{bottom:563.374500px;}
.y130{bottom:563.847000px;}
.y1f2{bottom:565.005000px;}
.y31{bottom:565.228500px;}
.y226{bottom:565.575000px;}
.y179{bottom:567.744000px;}
.y1d2{bottom:570.955500px;}
.yf9{bottom:574.497000px;}
.y1a3{bottom:575.452500px;}
.y61{bottom:576.021000px;}
.y8d{bottom:578.412000px;}
.yc0{bottom:579.936000px;}
.y1f1{bottom:584.155500px;}
.y148{bottom:584.266500px;}
.y225{bottom:584.725500px;}
.y12f{bottom:584.739000px;}
.y30{bottom:586.119000px;}
.y178{bottom:588.634500px;}
.y1d1{bottom:591.847500px;}
.yf8{bottom:595.387500px;}
.y1a2{bottom:596.344500px;}
.y60{bottom:596.913000px;}
.y8c{bottom:599.302500px;}
.ybf{bottom:600.828000px;}
.y1f0{bottom:603.306000px;}
.y1b7{bottom:603.786000px;}
.y224{bottom:603.876000px;}
.y147{bottom:605.157000px;}
.y12e{bottom:605.631000px;}
.y160{bottom:606.645000px;}
.y2f{bottom:607.011000px;}
.y177{bottom:609.526500px;}
.y1d0{bottom:612.739500px;}
.yf7{bottom:616.279500px;}
.y1a1{bottom:617.235000px;}
.y5f{bottom:617.803500px;}
.ybe{bottom:621.718500px;}
.y1ef{bottom:622.456500px;}
.y223{bottom:623.026500px;}
.y8b{bottom:624.678000px;}
.y146{bottom:626.049000px;}
.y12d{bottom:626.521500px;}
.y15f{bottom:627.535500px;}
.y2e{bottom:627.903000px;}
.y1cf{bottom:633.631500px;}
.y176{bottom:634.900500px;}
.yf6{bottom:637.171500px;}
.y1a0{bottom:638.127000px;}
.y5e{bottom:638.695500px;}
.y1b6{bottom:639.129000px;}
.y1ee{bottom:641.608500px;}
.y222{bottom:642.177000px;}
.ybd{bottom:642.610500px;}
.y12c{bottom:647.413500px;}
.y15e{bottom:648.427500px;}
.y2d{bottom:648.793500px;}
.y145{bottom:654.412500px;}
.y1ce{bottom:654.522000px;}
.yf5{bottom:658.062000px;}
.y19f{bottom:659.019000px;}
.y5d{bottom:659.587500px;}
.y8a{bottom:660.019500px;}
.y221{bottom:661.327500px;}
.ydb{bottom:661.545000px;}
.ybc{bottom:663.502500px;}
.y1ed{bottom:665.241000px;}
.y12b{bottom:668.305500px;}
.y15d{bottom:669.319500px;}
.y2c{bottom:669.685500px;}
.y175{bottom:670.243500px;}
.y144{bottom:675.304500px;}
.y1cd{bottom:675.414000px;}
.yf4{bottom:678.954000px;}
.y19e{bottom:679.911000px;}
.y5c{bottom:680.478000px;}
.y89{bottom:680.911500px;}
.yda{bottom:682.435500px;}
.ybb{bottom:684.393000px;}
.y2b{bottom:690.577500px;}
.y174{bottom:691.135500px;}
.y12a{bottom:693.679500px;}
.y15c{bottom:694.693500px;}
.y143{bottom:696.196500px;}
.y1cc{bottom:696.306000px;}
.y220{bottom:699.628500px;}
.yf3{bottom:699.846000px;}
.y5b{bottom:701.370000px;}
.y88{bottom:701.803500px;}
.yd9{bottom:703.327500px;}
.y1ec{bottom:704.065500px;}
.y19d{bottom:705.285000px;}
.yba{bottom:709.768500px;}
.y2a{bottom:711.468000px;}
.y173{bottom:712.026000px;}
.y1cb{bottom:717.196500px;}
.y21f{bottom:718.779000px;}
.yf2{bottom:720.736500px;}
.y142{bottom:721.570500px;}
.y5a{bottom:722.262000px;}
.y87{bottom:722.694000px;}
.yd8{bottom:724.219500px;}
.y15b{bottom:726.840000px;}
.y129{bottom:729.022500px;}
.y29{bottom:732.360000px;}
.y1eb{bottom:732.531000px;}
.y172{bottom:732.918000px;}
.y21e{bottom:737.929500px;}
.y1ca{bottom:738.088500px;}
.y19c{bottom:740.628000px;}
.yf1{bottom:741.628500px;}
.y59{bottom:743.152500px;}
.y86{bottom:743.586000px;}
.yb9{bottom:745.110000px;}
.y128{bottom:749.914500px;}
.y1ea{bottom:752.029500px;}
.y141{bottom:753.717000px;}
.y171{bottom:753.810000px;}
.y21d{bottom:757.081500px;}
.y1c9{bottom:758.980500px;}
.y19b{bottom:761.518500px;}
.y28{bottom:762.217500px;}
.yf0{bottom:762.520500px;}
.y58{bottom:764.044500px;}
.y85{bottom:764.478000px;}
.yb8{bottom:766.002000px;}
.y127{bottom:770.805000px;}
.y1e9{bottom:771.528000px;}
.y170{bottom:774.700500px;}
.y13f{bottom:776.146500px;}
.y21c{bottom:776.232000px;}
.y1c8{bottom:779.871000px;}
.y19a{bottom:782.410500px;}
.yef{bottom:783.411000px;}
.y57{bottom:784.936500px;}
.y84{bottom:785.368500px;}
.yb7{bottom:786.894000px;}
.y1e8{bottom:791.026500px;}
.y126{bottom:791.697000px;}
.y21b{bottom:795.382500px;}
.y16f{bottom:800.076000px;}
.y1c7{bottom:800.763000px;}
.y27{bottom:802.237500px;}
.y199{bottom:803.302500px;}
.yee{bottom:804.303000px;}
.y56{bottom:805.827000px;}
.y83{bottom:806.260500px;}
.yb6{bottom:807.784500px;}
.y1e7{bottom:810.526500px;}
.y125{bottom:812.589000px;}
.y21a{bottom:814.533000px;}
.y9f{bottom:816.138000px;}
.y26{bottom:818.377500px;}
.y1c6{bottom:821.655000px;}
.y198{bottom:824.193000px;}
.yed{bottom:825.195000px;}
.y55{bottom:826.719000px;}
.y82{bottom:827.152500px;}
.yb5{bottom:828.676500px;}
.y16e{bottom:832.221000px;}
.y219{bottom:833.683500px;}
.y124{bottom:837.963000px;}
.y25{bottom:838.857000px;}
.y1e6{bottom:838.990500px;}
.y1c5{bottom:842.545500px;}
.y197{bottom:845.085000px;}
.yec{bottom:846.087000px;}
.y54{bottom:847.611000px;}
.y81{bottom:848.044500px;}
.yb4{bottom:849.568500px;}
.y24{bottom:850.656000px;}
.y218{bottom:852.834000px;}
.yd7{bottom:854.052000px;}
.y16c{bottom:854.650500px;}
.y1c4{bottom:863.437500px;}
.y196{bottom:865.977000px;}
.yeb{bottom:866.977500px;}
.y1e5{bottom:867.456000px;}
.y53{bottom:868.503000px;}
.y123{bottom:870.109500px;}
.yb3{bottom:870.460500px;}
.y23{bottom:871.135500px;}
.y217{bottom:871.984500px;}
.y80{bottom:873.418500px;}
.y22{bottom:882.936000px;}
.y1c3{bottom:884.329500px;}
.y195{bottom:886.867500px;}
.y1e4{bottom:886.954500px;}
.yea{bottom:887.869500px;}
.y52{bottom:889.393500px;}
.y216{bottom:891.135000px;}
.yb2{bottom:891.351000px;}
.y121{bottom:892.539000px;}
.y21{bottom:903.415500px;}
.y7f{bottom:908.761500px;}
.y1c2{bottom:909.703500px;}
.y51{bottom:910.285500px;}
.yb1{bottom:912.243000px;}
.y20{bottom:915.214500px;}
.y1e3{bottom:915.420000px;}
.y215{bottom:929.436000px;}
.y7e{bottom:929.652000px;}
.y50{bottom:931.177500px;}
.yb0{bottom:933.135000px;}
.y1c1{bottom:934.135500px;}
.y1e2{bottom:934.918500px;}
.y1f{bottom:935.694000px;}
.y194{bottom:947.584500px;}
.y214{bottom:948.586500px;}
.y7d{bottom:950.544000px;}
.y4f{bottom:952.068000px;}
.yaf{bottom:954.025500px;}
.y1e1{bottom:954.417000px;}
.y213{bottom:967.737000px;}
.y193{bottom:968.476500px;}
.y7c{bottom:971.436000px;}
.y4e{bottom:972.960000px;}
.y1e0{bottom:973.917000px;}
.yae{bottom:974.917500px;}
.y1e{bottom:980.370000px;}
.y23b{bottom:982.158000px;}
.y212{bottom:986.887500px;}
.y192{bottom:989.368500px;}
.y7b{bottom:992.326500px;}
.y4d{bottom:993.852000px;}
.yad{bottom:995.809500px;}
.ye9{bottom:996.810000px;}
.y1d{bottom:1001.262000px;}
.y23a{bottom:1001.308500px;}
.y1df{bottom:1002.381000px;}
.y211{bottom:1006.038000px;}
.y191{bottom:1010.260500px;}
.y7a{bottom:1013.218500px;}
.y4c{bottom:1014.742500px;}
.yac{bottom:1016.700000px;}
.y239{bottom:1020.459000px;}
.y1de{bottom:1021.879500px;}
.y210{bottom:1025.188500px;}
.y190{bottom:1031.151000px;}
.y79{bottom:1034.110500px;}
.y4b{bottom:1035.634500px;}
.y1c{bottom:1040.086500px;}
.y1dd{bottom:1041.379500px;}
.yab{bottom:1042.075500px;}
.y20f{bottom:1044.339000px;}
.y18f{bottom:1052.043000px;}
.y4a{bottom:1056.526500px;}
.y78{bottom:1059.484500px;}
.y1dc{bottom:1060.878000px;}
.y20e{bottom:1063.489500px;}
.y1b{bottom:1071.424500px;}
.y18e{bottom:1072.935000px;}
.y49{bottom:1077.417000px;}
.y20d{bottom:1082.640000px;}
.y18d{bottom:1093.825500px;}
.y48{bottom:1098.309000px;}
.y20c{bottom:1101.790500px;}
.y1a{bottom:1102.761000px;}
.y18c{bottom:1114.717500px;}
.y47{bottom:1119.201000px;}
.y20b{bottom:1120.941000px;}
.y46{bottom:1140.091500px;}
.y45{bottom:1200.196500px;}
.h13{height:30.582721px;}
.h6{height:32.565965px;}
.h2{height:37.993262px;}
.h8{height:43.038432px;}
.h7{height:43.421105px;}
.h3{height:43.815515px;}
.hb{height:48.848947px;}
.ha{height:51.646464px;}
.h9{height:54.276245px;}
.h5{height:54.411312px;}
.hd{height:55.599258px;}
.h4{height:77.469696px;}
.h10{height:160.443750px;}
.he{height:177.616200px;}
.h12{height:240.909000px;}
.hf{height:262.498500px;}
.hc{height:315.489000px;}
.h11{height:319.414500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:173.200500px;}
.w2{width:199.695000px;}
.w7{width:208.036500px;}
.w4{width:391.048500px;}
.w3{width:437.170500px;}
.w6{width:524.016000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x13{left:85.848000px;}
.x9{left:171.791346px;}
.x6{left:197.050507px;}
.xd{left:205.652444px;}
.xe{left:247.348500px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x3{left:269.448000px;}
.x5{left:281.479500px;}
.xb{left:283.720500px;}
.x11{left:350.601000px;}
.x12{left:365.898000px;}
.x8{left:389.273939px;}
.x7{left:434.811223px;}
.xa{left:520.775425px;}
.xf{left:551.005500px;}
.x10{left:568.317000px;}
.xc{left:720.409500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.004267pt;}
.ls1d{letter-spacing:0.097497pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:9.298933pt;}
.ls8{letter-spacing:10.626533pt;}
.ls20{letter-spacing:11.315548pt;}
.ls1c{letter-spacing:11.772043pt;}
.ls1a{letter-spacing:11.954133pt;}
.ls1f{letter-spacing:11.959467pt;}
.lsf{letter-spacing:12.433325pt;}
.ls16{letter-spacing:13.017797pt;}
.ls11{letter-spacing:13.070931pt;}
.lse{letter-spacing:13.124065pt;}
.ls6{letter-spacing:13.177199pt;}
.lsa{letter-spacing:13.283467pt;}
.ls18{letter-spacing:13.336601pt;}
.ls17{letter-spacing:13.389734pt;}
.ls10{letter-spacing:13.442868pt;}
.ls7{letter-spacing:13.549136pt;}
.lsd{letter-spacing:13.602270pt;}
.ls15{letter-spacing:13.867939pt;}
.lsc{letter-spacing:13.921073pt;}
.ls12{letter-spacing:14.399278pt;}
.ls14{letter-spacing:14.877483pt;}
.ls13{letter-spacing:15.036884pt;}
.ls19{letter-spacing:15.075467pt;}
.ls1e{letter-spacing:15.997741pt;}
.lsb{letter-spacing:16.896570pt;}
.ls2{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls3{letter-spacing:64.315733pt;}
.ws2a{word-spacing:-13.283467pt;}
.wsa1{word-spacing:-11.955200pt;}
.wsa{word-spacing:-10.626800pt;}
.ws8{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.ws15{word-spacing:-2.922363pt;}
.wsc{word-spacing:-2.762961pt;}
.ws46{word-spacing:-2.391024pt;}
.ws2b{word-spacing:-2.337890pt;}
.ws81{word-spacing:-1.965953pt;}
.ws67{word-spacing:-1.859685pt;}
.ws8d{word-spacing:-1.753418pt;}
.ws47{word-spacing:-1.700284pt;}
.wsa6{word-spacing:-1.673728pt;}
.ws5a{word-spacing:-1.647150pt;}
.ws96{word-spacing:-1.625907pt;}
.ws83{word-spacing:-1.594016pt;}
.ws60{word-spacing:-1.487748pt;}
.ws9a{word-spacing:-1.434624pt;}
.ws1c{word-spacing:-1.434614pt;}
.ws77{word-spacing:-1.381481pt;}
.ws61{word-spacing:-1.222079pt;}
.ws4f{word-spacing:-1.168945pt;}
.ws5e{word-spacing:-1.115811pt;}
.ws35{word-spacing:-1.009543pt;}
.ws80{word-spacing:-0.903276pt;}
.wsb6{word-spacing:-0.860774pt;}
.ws65{word-spacing:-0.850142pt;}
.wsb3{word-spacing:-0.812954pt;}
.ws2e{word-spacing:-0.797008pt;}
.wsb4{word-spacing:-0.765133pt;}
.ws32{word-spacing:-0.743874pt;}
.ws8e{word-spacing:-0.690740pt;}
.ws1d{word-spacing:-0.637606pt;}
.wsb7{word-spacing:-0.621670pt;}
.ws28{word-spacing:-0.584473pt;}
.ws3f{word-spacing:-0.531339pt;}
.wsa7{word-spacing:-0.526029pt;}
.ws4e{word-spacing:-0.478205pt;}
.ws9d{word-spacing:-0.430387pt;}
.ws7e{word-spacing:-0.425071pt;}
.ws14{word-spacing:-0.371937pt;}
.wsaa{word-spacing:-0.334746pt;}
.ws3b{word-spacing:-0.318803pt;}
.ws92{word-spacing:-0.286925pt;}
.wsf{word-spacing:-0.265669pt;}
.ws18{word-spacing:-0.212535pt;}
.ws9e{word-spacing:-0.191283pt;}
.ws16{word-spacing:-0.159402pt;}
.wsb1{word-spacing:-0.143462pt;}
.ws27{word-spacing:-0.106268pt;}
.ws99{word-spacing:-0.095642pt;}
.ws1b{word-spacing:-0.053134pt;}
.ws9c{word-spacing:-0.047821pt;}
.ws1{word-spacing:-0.037194pt;}
.ws9{word-spacing:-0.005649pt;}
.ws21{word-spacing:-0.001000pt;}
.ws0{word-spacing:0.000000pt;}
.ws97{word-spacing:0.047821pt;}
.ws2c{word-spacing:0.053134pt;}
.ws93{word-spacing:0.095642pt;}
.wse{word-spacing:0.106268pt;}
.ws98{word-spacing:0.143462pt;}
.ws2{word-spacing:0.148774pt;}
.ws24{word-spacing:0.159402pt;}
.ws4{word-spacing:0.185968pt;}
.ws7{word-spacing:0.191283pt;}
.ws1e{word-spacing:0.212535pt;}
.wsac{word-spacing:0.239104pt;}
.ws11{word-spacing:0.265669pt;}
.ws94{word-spacing:0.286925pt;}
.ws29{word-spacing:0.318803pt;}
.ws6b{word-spacing:0.371937pt;}
.ws4d{word-spacing:0.425071pt;}
.ws66{word-spacing:0.478205pt;}
.wsa5{word-spacing:0.526029pt;}
.ws5b{word-spacing:0.531339pt;}
.ws69{word-spacing:0.690740pt;}
.ws33{word-spacing:0.743874pt;}
.wsb0{word-spacing:0.765133pt;}
.ws3a{word-spacing:0.797008pt;}
.wsa2{word-spacing:0.812954pt;}
.ws79{word-spacing:0.850142pt;}
.ws72{word-spacing:0.956410pt;}
.ws22{word-spacing:1.062677pt;}
.ws45{word-spacing:1.115811pt;}
.ws13{word-spacing:1.168945pt;}
.wsb5{word-spacing:1.195520pt;}
.ws59{word-spacing:1.222079pt;}
.wsad{word-spacing:1.243341pt;}
.ws17{word-spacing:1.275213pt;}
.ws49{word-spacing:1.328347pt;}
.wsd{word-spacing:1.381481pt;}
.ws2d{word-spacing:1.434614pt;}
.wsb2{word-spacing:1.434624pt;}
.ws1f{word-spacing:1.540882pt;}
.ws50{word-spacing:1.594016pt;}
.ws68{word-spacing:1.647150pt;}
.ws52{word-spacing:1.700284pt;}
.ws2f{word-spacing:1.912819pt;}
.ws9f{word-spacing:1.960653pt;}
.ws76{word-spacing:1.965953pt;}
.ws44{word-spacing:2.019087pt;}
.ws4a{word-spacing:2.072221pt;}
.ws86{word-spacing:2.125355pt;}
.ws95{word-spacing:2.228795pt;}
.ws6{word-spacing:2.231335pt;}
.ws7f{word-spacing:2.231622pt;}
.ws3{word-spacing:2.232481pt;}
.ws36{word-spacing:2.284756pt;}
.ws38{word-spacing:2.444158pt;}
.ws64{word-spacing:2.497292pt;}
.ws8c{word-spacing:2.550426pt;}
.wsb{word-spacing:2.550432pt;}
.ws3e{word-spacing:2.603559pt;}
.ws40{word-spacing:2.656693pt;}
.wsab{word-spacing:2.677965pt;}
.ws26{word-spacing:2.709827pt;}
.ws43{word-spacing:2.869229pt;}
.wsa3{word-spacing:2.869248pt;}
.wsb8{word-spacing:2.917069pt;}
.wsa9{word-spacing:2.964890pt;}
.ws34{word-spacing:2.975497pt;}
.ws4c{word-spacing:3.028630pt;}
.ws4b{word-spacing:3.081764pt;}
.wsba{word-spacing:3.108352pt;}
.ws7a{word-spacing:3.134898pt;}
.ws19{word-spacing:3.185311pt;}
.ws6f{word-spacing:3.188032pt;}
.wsaf{word-spacing:3.203994pt;}
.ws10{word-spacing:3.241166pt;}
.ws9b{word-spacing:3.259702pt;}
.ws8b{word-spacing:3.347434pt;}
.ws71{word-spacing:3.400567pt;}
.ws42{word-spacing:3.453701pt;}
.wsa4{word-spacing:3.538739pt;}
.ws25{word-spacing:3.559969pt;}
.ws5c{word-spacing:3.613103pt;}
.ws7c{word-spacing:3.719371pt;}
.ws1a{word-spacing:3.825664pt;}
.ws37{word-spacing:3.878772pt;}
.ws85{word-spacing:3.931906pt;}
.wsa8{word-spacing:3.969126pt;}
.ws41{word-spacing:3.985040pt;}
.ws58{word-spacing:4.038174pt;}
.ws87{word-spacing:4.197575pt;}
.ws56{word-spacing:4.250709pt;}
.ws7d{word-spacing:4.356977pt;}
.ws84{word-spacing:4.463245pt;}
.ws51{word-spacing:4.516379pt;}
.ws5f{word-spacing:4.569513pt;}
.ws6d{word-spacing:4.622646pt;}
.ws31{word-spacing:4.675780pt;}
.ws54{word-spacing:4.728914pt;}
.ws23{word-spacing:4.782048pt;}
.ws8f{word-spacing:4.835182pt;}
.ws3d{word-spacing:4.994583pt;}
.ws6c{word-spacing:5.047717pt;}
.ws5d{word-spacing:5.153985pt;}
.ws20{word-spacing:5.207119pt;}
.ws75{word-spacing:5.366521pt;}
.ws3c{word-spacing:5.419654pt;}
.ws55{word-spacing:5.472788pt;}
.ws89{word-spacing:5.579056pt;}
.ws30{word-spacing:5.632190pt;}
.ws8a{word-spacing:5.685324pt;}
.wsae{word-spacing:5.690675pt;}
.ws74{word-spacing:5.738458pt;}
.ws73{word-spacing:5.791591pt;}
.ws78{word-spacing:6.004127pt;}
.ws6a{word-spacing:6.057261pt;}
.ws90{word-spacing:6.110395pt;}
.ws7b{word-spacing:6.163529pt;}
.ws6e{word-spacing:6.269796pt;}
.wsb9{word-spacing:6.312346pt;}
.ws53{word-spacing:6.322930pt;}
.ws91{word-spacing:6.376064pt;}
.ws88{word-spacing:6.482332pt;}
.ws12{word-spacing:6.801135pt;}
.ws82{word-spacing:7.066804pt;}
.ws70{word-spacing:7.119938pt;}
.ws39{word-spacing:7.173072pt;}
.ws57{word-spacing:7.332474pt;}
.ws63{word-spacing:7.438741pt;}
.ws48{word-spacing:7.491875pt;}
.wsa0{word-spacing:9.229414pt;}
.ws62{word-spacing:9.351561pt;}
._3{margin-left:-10.807501pt;}
._19{margin-left:-6.811759pt;}
._d{margin-left:-5.908483pt;}
._7{margin-left:-4.718299pt;}
._2{margin-left:-3.496198pt;}
._1{margin-left:-2.045648pt;}
._6{margin-left:-1.105187pt;}
._4{width:2.666848pt;}
._1e{width:3.878772pt;}
._22{width:9.611846pt;}
._0{width:11.530016pt;}
._f{width:13.177232pt;}
._1d{width:14.091108pt;}
._8{width:15.663867pt;}
._a{width:16.567142pt;}
._14{width:17.852979pt;}
._15{width:19.595773pt;}
._9{width:21.147279pt;}
._18{width:22.794429pt;}
._1a{width:23.803972pt;}
._b{width:25.865569pt;}
._23{width:26.838506pt;}
._13{width:27.735878pt;}
._1c{width:28.628530pt;}
._16{width:30.169412pt;}
._12{width:31.232090pt;}
._e{width:32.889863pt;}
._1b{width:35.015218pt;}
._21{width:36.279807pt;}
._c{width:37.193707pt;}
._17{width:38.777099pt;}
._5{width:48.358112pt;}
._20{width:50.795977pt;}
._10{width:1559.613067pt;}
._1f{width:2208.994400pt;}
._11{width:2230.247733pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fsa{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs8{font-size:53.440000pt;}
.fs9{font-size:55.365867pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.ya1{bottom:1.005330pt;}
.y135{bottom:1.215687pt;}
.y140{bottom:1.708543pt;}
.ya4{bottom:1.937858pt;}
.y16d{bottom:2.051913pt;}
.y122{bottom:2.391495pt;}
.y44{bottom:40.818667pt;}
.y1c0{bottom:88.768000pt;}
.y19{bottom:89.120000pt;}
.yd6{bottom:90.122667pt;}
.y20a{bottom:93.681333pt;}
.yaa{bottom:95.632000pt;}
.y43{bottom:96.394667pt;}
.y13e{bottom:99.368000pt;}
.y1db{bottom:100.710667pt;}
.y10f{bottom:102.117333pt;}
.y77{bottom:103.473333pt;}
.y18{bottom:105.020000pt;}
.y1bf{bottom:107.337333pt;}
.yd5{bottom:108.693333pt;}
.y209{bottom:110.704000pt;}
.y16b{bottom:113.676000pt;}
.ya9{bottom:114.202667pt;}
.y42{bottom:114.965333pt;}
.y13d{bottom:117.938667pt;}
.ye8{bottom:118.117333pt;}
.y120{bottom:119.281333pt;}
.y10e{bottom:120.688000pt;}
.y17{bottom:120.920000pt;}
.y76{bottom:122.042667pt;}
.y1be{bottom:125.908000pt;}
.yd4{bottom:127.262667pt;}
.y208{bottom:127.726667pt;}
.y16a{bottom:132.246667pt;}
.ya8{bottom:132.772000pt;}
.y41{bottom:133.536000pt;}
.y13c{bottom:136.509333pt;}
.ye7{bottom:136.688000pt;}
.y16{bottom:136.821333pt;}
.y11f{bottom:137.852000pt;}
.y10d{bottom:139.258667pt;}
.y1b5{bottom:140.493333pt;}
.y75{bottom:140.613333pt;}
.y1bd{bottom:144.478667pt;}
.y207{bottom:144.749333pt;}
.yd3{bottom:149.818667pt;}
.y18b{bottom:150.470667pt;}
.y169{bottom:150.816000pt;}
.ya7{bottom:151.342667pt;}
.y40{bottom:152.105333pt;}
.y15{bottom:152.721333pt;}
.y13b{bottom:155.078667pt;}
.ye6{bottom:155.257333pt;}
.y11e{bottom:156.421333pt;}
.y10c{bottom:157.828000pt;}
.y1b4{bottom:159.064000pt;}
.y74{bottom:159.184000pt;}
.y206{bottom:161.772000pt;}
.y238{bottom:162.278667pt;}
.y1bc{bottom:163.048000pt;}
.y14{bottom:168.621333pt;}
.y18a{bottom:169.041333pt;}
.y168{bottom:169.386667pt;}
.y3f{bottom:170.676000pt;}
.y13a{bottom:173.649333pt;}
.ye5{bottom:173.828000pt;}
.ya6{bottom:173.897333pt;}
.y11d{bottom:174.992000pt;}
.y10b{bottom:176.398667pt;}
.y1b3{bottom:177.633333pt;}
.y73{bottom:177.753333pt;}
.y205{bottom:178.794667pt;}
.y237{bottom:179.301333pt;}
.yd2{bottom:181.233333pt;}
.y1bb{bottom:181.618667pt;}
.y13{bottom:184.521333pt;}
.y15a{bottom:185.082667pt;}
.y189{bottom:187.612000pt;}
.y167{bottom:187.957333pt;}
.y3e{bottom:189.246667pt;}
.y139{bottom:192.220000pt;}
.ye4{bottom:192.398667pt;}
.y11c{bottom:193.562667pt;}
.y10a{bottom:194.969333pt;}
.y204{bottom:195.817333pt;}
.y1b2{bottom:196.204000pt;}
.y72{bottom:196.324000pt;}
.y9e{bottom:198.449333pt;}
.yd1{bottom:199.804000pt;}
.y1ba{bottom:200.189333pt;}
.y12{bottom:200.422667pt;}
.ya5{bottom:202.472000pt;}
.y159{bottom:203.653333pt;}
.y188{bottom:206.181333pt;}
.y166{bottom:206.526667pt;}
.y3d{bottom:207.816000pt;}
.y138{bottom:210.789333pt;}
.y11b{bottom:212.132000pt;}
.y203{bottom:212.840000pt;}
.y236{bottom:213.346667pt;}
.y109{bottom:213.540000pt;}
.y71{bottom:214.894667pt;}
.ye3{bottom:214.953333pt;}
.y9d{bottom:217.020000pt;}
.yd0{bottom:218.374667pt;}
.y1b1{bottom:218.760000pt;}
.y158{bottom:222.224000pt;}
.ya3{bottom:222.409600pt;}
.y11{bottom:224.293333pt;}
.y187{bottom:224.752000pt;}
.y165{bottom:225.097333pt;}
.y3c{bottom:226.386667pt;}
.y202{bottom:229.864000pt;}
.y235{bottom:230.369333pt;}
.y11a{bottom:230.702667pt;}
.y108{bottom:232.109333pt;}
.y137{bottom:233.345333pt;}
.y70{bottom:233.464000pt;}
.y1da{bottom:234.688000pt;}
.y9c{bottom:235.589333pt;}
.ycf{bottom:236.945333pt;}
.y1b9{bottom:237.329333pt;}
.y10{bottom:240.193333pt;}
.y157{bottom:240.793333pt;}
.y186{bottom:243.322667pt;}
.y164{bottom:243.668000pt;}
.y3b{bottom:244.957333pt;}
.ye2{bottom:246.369333pt;}
.y201{bottom:246.886667pt;}
.y234{bottom:247.392000pt;}
.y119{bottom:249.273333pt;}
.y107{bottom:250.680000pt;}
.y6f{bottom:252.034667pt;}
.y1b0{bottom:253.269333pt;}
.y9b{bottom:254.160000pt;}
.yce{bottom:255.514667pt;}
.yf{bottom:256.093333pt;}
.y156{bottom:259.364000pt;}
.y1b8{bottom:259.885333pt;}
.y185{bottom:261.892000pt;}
.y136{bottom:261.918667pt;}
.y163{bottom:262.237333pt;}
.y3a{bottom:263.526667pt;}
.y200{bottom:263.909333pt;}
.y233{bottom:264.414667pt;}
.ye1{bottom:264.940000pt;}
.y1d9{bottom:266.102667pt;}
.y106{bottom:269.250667pt;}
.y6e{bottom:270.605333pt;}
.y118{bottom:271.828000pt;}
.y1af{bottom:271.840000pt;}
.ye{bottom:271.994667pt;}
.y9a{bottom:272.730667pt;}
.ycd{bottom:274.085333pt;}
.y155{bottom:277.934667pt;}
.y184{bottom:280.462667pt;}
.y1ff{bottom:280.932000pt;}
.y232{bottom:281.437333pt;}
.y134{bottom:281.856667pt;}
.ye0{bottom:283.509333pt;}
.y1d8{bottom:284.673333pt;}
.y162{bottom:284.793333pt;}
.y39{bottom:286.082667pt;}
.y105{bottom:287.820000pt;}
.yd{bottom:287.894667pt;}
.y6d{bottom:289.176000pt;}
.y1ae{bottom:290.410667pt;}
.y99{bottom:291.300000pt;}
.ycc{bottom:292.656000pt;}
.y154{bottom:296.504000pt;}
.y1fe{bottom:297.954667pt;}
.y231{bottom:298.460000pt;}
.ydf{bottom:302.080000pt;}
.y183{bottom:303.017333pt;}
.y117{bottom:303.244000pt;}
.yc{bottom:303.794667pt;}
.y104{bottom:306.390667pt;}
.y6c{bottom:307.745333pt;}
.y1ad{bottom:308.980000pt;}
.y98{bottom:309.870667pt;}
.ycb{bottom:311.225333pt;}
.y161{bottom:313.366667pt;}
.y1fd{bottom:314.977333pt;}
.y153{bottom:315.074667pt;}
.y230{bottom:315.482667pt;}
.yb{bottom:319.696000pt;}
.yde{bottom:320.650667pt;}
.y116{bottom:321.814667pt;}
.y103{bottom:324.961333pt;}
.y6b{bottom:326.316000pt;}
.y1ac{bottom:327.550667pt;}
.y97{bottom:328.441333pt;}
.yca{bottom:329.796000pt;}
.y1fc{bottom:332.000000pt;}
.y22f{bottom:332.506667pt;}
.y152{bottom:333.645333pt;}
.ya{bottom:335.596000pt;}
.y182{bottom:337.528000pt;}
.ydd{bottom:339.220000pt;}
.y115{bottom:340.384000pt;}
.y102{bottom:343.530667pt;}
.y6a{bottom:344.886667pt;}
.y1ab{bottom:346.121333pt;}
.y96{bottom:347.010667pt;}
.yc9{bottom:348.366667pt;}
.y1fb{bottom:349.022667pt;}
.y22e{bottom:349.529333pt;}
.y9{bottom:351.496000pt;}
.y151{bottom:352.216000pt;}
.y181{bottom:356.098667pt;}
.y38{bottom:356.493333pt;}
.y114{bottom:358.954667pt;}
.y101{bottom:362.101333pt;}
.y69{bottom:363.456000pt;}
.y1aa{bottom:364.692000pt;}
.y95{bottom:365.581333pt;}
.y1fa{bottom:366.045333pt;}
.y22d{bottom:366.552000pt;}
.yc8{bottom:366.936000pt;}
.y8{bottom:367.397333pt;}
.y150{bottom:370.785333pt;}
.ydc{bottom:370.889333pt;}
.y180{bottom:374.669333pt;}
.y113{bottom:377.525333pt;}
.y100{bottom:380.672000pt;}
.y68{bottom:382.026667pt;}
.y1f9{bottom:383.068000pt;}
.y1a9{bottom:383.261333pt;}
.y22c{bottom:383.574667pt;}
.y94{bottom:384.152000pt;}
.yc7{bottom:385.506667pt;}
.y7{bottom:388.610667pt;}
.y14f{bottom:389.356000pt;}
.y37{bottom:391.002667pt;}
.y17f{bottom:393.238667pt;}
.y112{bottom:396.094667pt;}
.yff{bottom:399.241333pt;}
.y1f8{bottom:400.090667pt;}
.y67{bottom:400.597333pt;}
.y1a8{bottom:401.832000pt;}
.ya2{bottom:402.686667pt;}
.y93{bottom:402.721333pt;}
.yc6{bottom:404.077333pt;}
.y6{bottom:404.510667pt;}
.y14e{bottom:407.926667pt;}
.y36{bottom:409.573333pt;}
.y17e{bottom:411.809333pt;}
.y1d7{bottom:414.665333pt;}
.y1f7{bottom:417.113333pt;}
.y22b{bottom:417.620000pt;}
.yfe{bottom:417.812000pt;}
.y111{bottom:418.650667pt;}
.y66{bottom:419.166667pt;}
.y1a7{bottom:420.402667pt;}
.y5{bottom:420.412000pt;}
.y92{bottom:421.292000pt;}
.ya0{bottom:422.624000pt;}
.yc5{bottom:422.646667pt;}
.y14d{bottom:426.496000pt;}
.y35{bottom:428.144000pt;}
.y17d{bottom:430.380000pt;}
.y1d6{bottom:433.236000pt;}
.y1f6{bottom:434.136000pt;}
.y22a{bottom:434.642667pt;}
.y4{bottom:436.312000pt;}
.yfd{bottom:436.382667pt;}
.y65{bottom:437.737333pt;}
.y91{bottom:439.862667pt;}
.y110{bottom:440.368000pt;}
.yc4{bottom:441.217333pt;}
.y1a6{bottom:442.957333pt;}
.y14c{bottom:445.066667pt;}
.y133{bottom:445.486667pt;}
.y34{bottom:446.714667pt;}
.y17c{bottom:448.949333pt;}
.y1f5{bottom:451.158667pt;}
.y229{bottom:451.665333pt;}
.y1d5{bottom:451.805333pt;}
.yfc{bottom:454.953333pt;}
.y64{bottom:456.308000pt;}
.y3{bottom:457.525333pt;}
.y90{bottom:458.433333pt;}
.yc3{bottom:459.788000pt;}
.y14b{bottom:463.637333pt;}
.y132{bottom:464.057333pt;}
.y33{bottom:465.284000pt;}
.y17b{bottom:467.520000pt;}
.y1f4{bottom:468.181333pt;}
.y228{bottom:468.688000pt;}
.y1d4{bottom:470.376000pt;}
.y2{bottom:473.426667pt;}
.yfb{bottom:473.522667pt;}
.y1a5{bottom:474.373333pt;}
.y63{bottom:474.877333pt;}
.y8f{bottom:477.002667pt;}
.yc2{bottom:478.357333pt;}
.y14a{bottom:482.206667pt;}
.y131{bottom:482.628000pt;}
.y32{bottom:483.854667pt;}
.y1f3{bottom:485.204000pt;}
.y227{bottom:485.710667pt;}
.y17a{bottom:486.090667pt;}
.y1d3{bottom:488.946667pt;}
.y1{bottom:489.326667pt;}
.yfa{bottom:492.093333pt;}
.y1a4{bottom:492.942667pt;}
.y62{bottom:493.448000pt;}
.y8e{bottom:495.573333pt;}
.yc1{bottom:496.928000pt;}
.y149{bottom:500.777333pt;}
.y130{bottom:501.197333pt;}
.y1f2{bottom:502.226667pt;}
.y31{bottom:502.425333pt;}
.y226{bottom:502.733333pt;}
.y179{bottom:504.661333pt;}
.y1d2{bottom:507.516000pt;}
.yf9{bottom:510.664000pt;}
.y1a3{bottom:511.513333pt;}
.y61{bottom:512.018667pt;}
.y8d{bottom:514.144000pt;}
.yc0{bottom:515.498667pt;}
.y1f1{bottom:519.249333pt;}
.y148{bottom:519.348000pt;}
.y225{bottom:519.756000pt;}
.y12f{bottom:519.768000pt;}
.y30{bottom:520.994667pt;}
.y178{bottom:523.230667pt;}
.y1d1{bottom:526.086667pt;}
.yf8{bottom:529.233333pt;}
.y1a2{bottom:530.084000pt;}
.y60{bottom:530.589333pt;}
.y8c{bottom:532.713333pt;}
.ybf{bottom:534.069333pt;}
.y1f0{bottom:536.272000pt;}
.y1b7{bottom:536.698667pt;}
.y224{bottom:536.778667pt;}
.y147{bottom:537.917333pt;}
.y12e{bottom:538.338667pt;}
.y160{bottom:539.240000pt;}
.y2f{bottom:539.565333pt;}
.y177{bottom:541.801333pt;}
.y1d0{bottom:544.657333pt;}
.yf7{bottom:547.804000pt;}
.y1a1{bottom:548.653333pt;}
.y5f{bottom:549.158667pt;}
.ybe{bottom:552.638667pt;}
.y1ef{bottom:553.294667pt;}
.y223{bottom:553.801333pt;}
.y8b{bottom:555.269333pt;}
.y146{bottom:556.488000pt;}
.y12d{bottom:556.908000pt;}
.y15f{bottom:557.809333pt;}
.y2e{bottom:558.136000pt;}
.y1cf{bottom:563.228000pt;}
.y176{bottom:564.356000pt;}
.yf6{bottom:566.374667pt;}
.y1a0{bottom:567.224000pt;}
.y5e{bottom:567.729333pt;}
.y1b6{bottom:568.114667pt;}
.y1ee{bottom:570.318667pt;}
.y222{bottom:570.824000pt;}
.ybd{bottom:571.209333pt;}
.y12c{bottom:575.478667pt;}
.y15e{bottom:576.380000pt;}
.y2d{bottom:576.705333pt;}
.y145{bottom:581.700000pt;}
.y1ce{bottom:581.797333pt;}
.yf5{bottom:584.944000pt;}
.y19f{bottom:585.794667pt;}
.y5d{bottom:586.300000pt;}
.y8a{bottom:586.684000pt;}
.y221{bottom:587.846667pt;}
.ydb{bottom:588.040000pt;}
.ybc{bottom:589.780000pt;}
.y1ed{bottom:591.325333pt;}
.y12b{bottom:594.049333pt;}
.y15d{bottom:594.950667pt;}
.y2c{bottom:595.276000pt;}
.y175{bottom:595.772000pt;}
.y144{bottom:600.270667pt;}
.y1cd{bottom:600.368000pt;}
.yf4{bottom:603.514667pt;}
.y19e{bottom:604.365333pt;}
.y5c{bottom:604.869333pt;}
.y89{bottom:605.254667pt;}
.yda{bottom:606.609333pt;}
.ybb{bottom:608.349333pt;}
.y2b{bottom:613.846667pt;}
.y174{bottom:614.342667pt;}
.y12a{bottom:616.604000pt;}
.y15c{bottom:617.505333pt;}
.y143{bottom:618.841333pt;}
.y1cc{bottom:618.938667pt;}
.y220{bottom:621.892000pt;}
.yf3{bottom:622.085333pt;}
.y5b{bottom:623.440000pt;}
.y88{bottom:623.825333pt;}
.yd9{bottom:625.180000pt;}
.y1ec{bottom:625.836000pt;}
.y19d{bottom:626.920000pt;}
.yba{bottom:630.905333pt;}
.y2a{bottom:632.416000pt;}
.y173{bottom:632.912000pt;}
.y1cb{bottom:637.508000pt;}
.y21f{bottom:638.914667pt;}
.yf2{bottom:640.654667pt;}
.y142{bottom:641.396000pt;}
.y5a{bottom:642.010667pt;}
.y87{bottom:642.394667pt;}
.yd8{bottom:643.750667pt;}
.y15b{bottom:646.080000pt;}
.y129{bottom:648.020000pt;}
.y29{bottom:650.986667pt;}
.y1eb{bottom:651.138667pt;}
.y172{bottom:651.482667pt;}
.y21e{bottom:655.937333pt;}
.y1ca{bottom:656.078667pt;}
.y19c{bottom:658.336000pt;}
.yf1{bottom:659.225333pt;}
.y59{bottom:660.580000pt;}
.y86{bottom:660.965333pt;}
.yb9{bottom:662.320000pt;}
.y128{bottom:666.590667pt;}
.y1ea{bottom:668.470667pt;}
.y141{bottom:669.970667pt;}
.y171{bottom:670.053333pt;}
.y21d{bottom:672.961333pt;}
.y1c9{bottom:674.649333pt;}
.y19b{bottom:676.905333pt;}
.y28{bottom:677.526667pt;}
.yf0{bottom:677.796000pt;}
.y58{bottom:679.150667pt;}
.y85{bottom:679.536000pt;}
.yb8{bottom:680.890667pt;}
.y127{bottom:685.160000pt;}
.y1e9{bottom:685.802667pt;}
.y170{bottom:688.622667pt;}
.y13f{bottom:689.908000pt;}
.y21c{bottom:689.984000pt;}
.y1c8{bottom:693.218667pt;}
.y19a{bottom:695.476000pt;}
.yef{bottom:696.365333pt;}
.y57{bottom:697.721333pt;}
.y84{bottom:698.105333pt;}
.yb7{bottom:699.461333pt;}
.y1e8{bottom:703.134667pt;}
.y126{bottom:703.730667pt;}
.y21b{bottom:707.006667pt;}
.y16f{bottom:711.178667pt;}
.y1c7{bottom:711.789333pt;}
.y27{bottom:713.100000pt;}
.y199{bottom:714.046667pt;}
.yee{bottom:714.936000pt;}
.y56{bottom:716.290667pt;}
.y83{bottom:716.676000pt;}
.yb6{bottom:718.030667pt;}
.y1e7{bottom:720.468000pt;}
.y125{bottom:722.301333pt;}
.y21a{bottom:724.029333pt;}
.y9f{bottom:725.456000pt;}
.y26{bottom:727.446667pt;}
.y1c6{bottom:730.360000pt;}
.y198{bottom:732.616000pt;}
.yed{bottom:733.506667pt;}
.y55{bottom:734.861333pt;}
.y82{bottom:735.246667pt;}
.yb5{bottom:736.601333pt;}
.y16e{bottom:739.752000pt;}
.y219{bottom:741.052000pt;}
.y124{bottom:744.856000pt;}
.y25{bottom:745.650667pt;}
.y1e6{bottom:745.769333pt;}
.y1c5{bottom:748.929333pt;}
.y197{bottom:751.186667pt;}
.yec{bottom:752.077333pt;}
.y54{bottom:753.432000pt;}
.y81{bottom:753.817333pt;}
.yb4{bottom:755.172000pt;}
.y24{bottom:756.138667pt;}
.y218{bottom:758.074667pt;}
.yd7{bottom:759.157333pt;}
.y16c{bottom:759.689333pt;}
.y1c4{bottom:767.500000pt;}
.y196{bottom:769.757333pt;}
.yeb{bottom:770.646667pt;}
.y1e5{bottom:771.072000pt;}
.y53{bottom:772.002667pt;}
.y123{bottom:773.430667pt;}
.yb3{bottom:773.742667pt;}
.y23{bottom:774.342667pt;}
.y217{bottom:775.097333pt;}
.y80{bottom:776.372000pt;}
.y22{bottom:784.832000pt;}
.y1c3{bottom:786.070667pt;}
.y195{bottom:788.326667pt;}
.y1e4{bottom:788.404000pt;}
.yea{bottom:789.217333pt;}
.y52{bottom:790.572000pt;}
.y216{bottom:792.120000pt;}
.yb2{bottom:792.312000pt;}
.y121{bottom:793.368000pt;}
.y21{bottom:803.036000pt;}
.y7f{bottom:807.788000pt;}
.y1c2{bottom:808.625333pt;}
.y51{bottom:809.142667pt;}
.yb1{bottom:810.882667pt;}
.y20{bottom:813.524000pt;}
.y1e3{bottom:813.706667pt;}
.y215{bottom:826.165333pt;}
.y7e{bottom:826.357333pt;}
.y50{bottom:827.713333pt;}
.yb0{bottom:829.453333pt;}
.y1c1{bottom:830.342667pt;}
.y1e2{bottom:831.038667pt;}
.y1f{bottom:831.728000pt;}
.y194{bottom:842.297333pt;}
.y214{bottom:843.188000pt;}
.y7d{bottom:844.928000pt;}
.y4f{bottom:846.282667pt;}
.yaf{bottom:848.022667pt;}
.y1e1{bottom:848.370667pt;}
.y213{bottom:860.210667pt;}
.y193{bottom:860.868000pt;}
.y7c{bottom:863.498667pt;}
.y4e{bottom:864.853333pt;}
.y1e0{bottom:865.704000pt;}
.yae{bottom:866.593333pt;}
.y1e{bottom:871.440000pt;}
.y23b{bottom:873.029333pt;}
.y212{bottom:877.233333pt;}
.y192{bottom:879.438667pt;}
.y7b{bottom:882.068000pt;}
.y4d{bottom:883.424000pt;}
.yad{bottom:885.164000pt;}
.ye9{bottom:886.053333pt;}
.y1d{bottom:890.010667pt;}
.y23a{bottom:890.052000pt;}
.y1df{bottom:891.005333pt;}
.y211{bottom:894.256000pt;}
.y191{bottom:898.009333pt;}
.y7a{bottom:900.638667pt;}
.y4c{bottom:901.993333pt;}
.yac{bottom:903.733333pt;}
.y239{bottom:907.074667pt;}
.y1de{bottom:908.337333pt;}
.y210{bottom:911.278667pt;}
.y190{bottom:916.578667pt;}
.y79{bottom:919.209333pt;}
.y4b{bottom:920.564000pt;}
.y1c{bottom:924.521333pt;}
.y1dd{bottom:925.670667pt;}
.yab{bottom:926.289333pt;}
.y20f{bottom:928.301333pt;}
.y18f{bottom:935.149333pt;}
.y4a{bottom:939.134667pt;}
.y78{bottom:941.764000pt;}
.y1dc{bottom:943.002667pt;}
.y20e{bottom:945.324000pt;}
.y1b{bottom:952.377333pt;}
.y18e{bottom:953.720000pt;}
.y49{bottom:957.704000pt;}
.y20d{bottom:962.346667pt;}
.y18d{bottom:972.289333pt;}
.y48{bottom:976.274667pt;}
.y20c{bottom:979.369333pt;}
.y1a{bottom:980.232000pt;}
.y18c{bottom:990.860000pt;}
.y47{bottom:994.845333pt;}
.y20b{bottom:996.392000pt;}
.y46{bottom:1013.414667pt;}
.y45{bottom:1066.841333pt;}
.h13{height:27.184641pt;}
.h6{height:28.947524pt;}
.h2{height:33.771789pt;}
.h8{height:38.256384pt;}
.h7{height:38.596538pt;}
.h3{height:38.947124pt;}
.hb{height:43.421286pt;}
.ha{height:45.907968pt;}
.h9{height:48.245551pt;}
.h5{height:48.365611pt;}
.hd{height:49.421563pt;}
.h4{height:68.861952pt;}
.h10{height:142.616667pt;}
.he{height:157.881067pt;}
.h12{height:214.141333pt;}
.hf{height:233.332000pt;}
.hc{height:280.434667pt;}
.h11{height:283.924000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:153.956000pt;}
.w2{width:177.506667pt;}
.w7{width:184.921333pt;}
.w4{width:347.598667pt;}
.w3{width:388.596000pt;}
.w6{width:465.792000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x13{left:76.309333pt;}
.x9{left:152.703419pt;}
.x6{left:175.156007pt;}
.xd{left:182.802173pt;}
.xe{left:219.865333pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x3{left:239.509333pt;}
.x5{left:250.204000pt;}
.xb{left:252.196000pt;}
.x11{left:311.645333pt;}
.x12{left:325.242667pt;}
.x8{left:346.021279pt;}
.x7{left:386.498865pt;}
.xa{left:462.911489pt;}
.xf{left:489.782667pt;}
.x10{left:505.170667pt;}
.xc{left:640.364000pt;}
}




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