
    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_8a104f5c3dac18ff61a2f6dd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_a8013eff387cbdfb776a441b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_5ec2adca75d711b7d4cc8322.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.715000;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_0130cd201babb48e46b253e1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.846000;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_a5b732aad666c0e5a56719b4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_92818686264d063fbf7176eb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f6f918ac4870d0db51789a74.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921000;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_6f4129ea41eeaac0722420e4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a1e0f669582ac9f5fa301f9f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c76eb39e64ad5364091912cf.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c6d27f9ab64440df58e87088.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_eea7b1db8101ef1b71439f72.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.715000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_999c69695df5549c3e066558.woff2')format("woff");}.ffd{font-family:ffd;line-height:2.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_53a22f9d6e03d723a1dc079c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_fb1ef40a594ffd67b9ceb50a.woff2')format("woff");}.fff{font-family:fff;line-height:0.733000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ecbea86b0ea3a623a40ef2ac.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.697000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_90e81b768f482662cf69446e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_086e95636670e7c4215d382b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.839000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_8b08861a63f2e7e8b1399162.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.623000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_7cec9d1a41b6b257fcd3d78e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_7028782e8a1eabbc92817682.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.687000;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);}
.m7{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);}
.m1a{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);}
.m1c{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);}
.m1d{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);}
.m14{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);}
.m10{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);}
.m4{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);}
.ma{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);}
.m16{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);}
.m21{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);}
.m1e{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);}
.m15{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.mc{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);}
.m8{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);}
.m1f{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);}
.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);}
.m9{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);}
.m19{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);}
.m13{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);}
.m1b{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);}
.mb{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);}
.m12{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);}
.m11{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);}
.m2{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);}
.m22{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);}
.m20{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);}
.m17{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);}
.m6{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);}
.m18{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);}
.m1{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);}
.me{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);}
.vd{vertical-align:-56.070000px;}
.vc{vertical-align:-46.248000px;}
.v2{vertical-align:-26.028000px;}
.v3{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:18.630000px;}
.v12{vertical-align:20.226000px;}
.v8{vertical-align:22.548000px;}
.ve{vertical-align:23.754000px;}
.v1{vertical-align:26.028000px;}
.v13{vertical-align:36.708000px;}
.v14{vertical-align:44.280000px;}
.v18{vertical-align:45.630000px;}
.v7{vertical-align:49.836000px;}
.v19{vertical-align:51.924000px;}
.va{vertical-align:55.338000px;}
.v11{vertical-align:56.934000px;}
.v5{vertical-align:63.852000px;}
.v9{vertical-align:68.466000px;}
.v10{vertical-align:70.068000px;}
.v4{vertical-align:82.782000px;}
.v15{vertical-align:85.704000px;}
.v17{vertical-align:103.638000px;}
.v6{vertical-align:122.970000px;}
.vf{vertical-align:124.164000px;}
.v16{vertical-align:130.602000px;}
.ls1{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.000462px;}
.ls3b{letter-spacing:0.000777px;}
.ls18{letter-spacing:0.000843px;}
.ls16{letter-spacing:0.001052px;}
.ls28{letter-spacing:0.001597px;}
.ls41{letter-spacing:0.001611px;}
.ls14{letter-spacing:0.002137px;}
.ls23{letter-spacing:0.002147px;}
.lse{letter-spacing:0.004249px;}
.ls29{letter-spacing:0.006843px;}
.lsb{letter-spacing:0.023845px;}
.ls33{letter-spacing:0.030364px;}
.ls2b{letter-spacing:0.255183px;}
.ls5{letter-spacing:0.916364px;}
.ls12{letter-spacing:0.981819px;}
.ls21{letter-spacing:1.291156px;}
.ls4e{letter-spacing:2.487275px;}
.ls2d{letter-spacing:2.773595px;}
.ls0{letter-spacing:2.984915px;}
.ls34{letter-spacing:2.987236px;}
.ls17{letter-spacing:2.995289px;}
.ls31{letter-spacing:3.272730px;}
.ls1f{letter-spacing:3.773414px;}
.ls1a{letter-spacing:3.785905px;}
.ls15{letter-spacing:3.796367px;}
.ls22{letter-spacing:4.265644px;}
.ls48{letter-spacing:5.432732px;}
.ls3e{letter-spacing:5.743488px;}
.ls2e{letter-spacing:5.749488px;}
.lsf{letter-spacing:6.958948px;}
.lsc{letter-spacing:6.964948px;}
.ls30{letter-spacing:7.134551px;}
.lsd{letter-spacing:7.396370px;}
.ls27{letter-spacing:9.092147px;}
.ls35{letter-spacing:9.098189px;}
.ls24{letter-spacing:9.118179px;}
.ls10{letter-spacing:10.865464px;}
.ls1e{letter-spacing:10.904877px;}
.ls8{letter-spacing:14.530921px;}
.ls9{letter-spacing:14.558644px;}
.ls32{letter-spacing:14.596376px;}
.ls37{letter-spacing:17.018196px;}
.ls2a{letter-spacing:17.528915px;}
.ls19{letter-spacing:17.533289px;}
.ls7{letter-spacing:17.534915px;}
.ls53{letter-spacing:18.130924px;}
.ls6{letter-spacing:18.196379px;}
.ls51{letter-spacing:18.392743px;}
.ls46{letter-spacing:19.112743px;}
.ls3a{letter-spacing:19.440016px;}
.ls50{letter-spacing:20.618199px;}
.ls45{letter-spacing:20.749108px;}
.ls3{letter-spacing:21.534563px;}
.ls4{letter-spacing:21.796382px;}
.ls13{letter-spacing:21.861836px;}
.ls3d{letter-spacing:21.927291px;}
.ls1d{letter-spacing:22.651289px;}
.ls43{letter-spacing:25.144948px;}
.ls25{letter-spacing:25.145644px;}
.ls4c{letter-spacing:25.300948px;}
.lsa{letter-spacing:26.566677px;}
.ls47{letter-spacing:27.163659px;}
.ls40{letter-spacing:27.949114px;}
.ls42{letter-spacing:28.582948px;}
.ls20{letter-spacing:28.780948px;}
.ls52{letter-spacing:29.061842px;}
.ls44{letter-spacing:29.520025px;}
.ls49{letter-spacing:29.847298px;}
.ls4a{letter-spacing:30.305480px;}
.ls11{letter-spacing:31.025480px;}
.ls2{letter-spacing:32.727300px;}
.ls38{letter-spacing:40.797181px;}
.ls4b{letter-spacing:59.775750px;}
.ls3c{letter-spacing:65.454600px;}
.ls1b{letter-spacing:93.913289px;}
.ls4d{letter-spacing:161.394525px;}
.ls4f{letter-spacing:263.013300px;}
.ls2f{letter-spacing:417.804843px;}
.ls1c{letter-spacing:781.106915px;}
.ls26{letter-spacing:816.320915px;}
.ls36{letter-spacing:885.122604px;}
.ls39{letter-spacing:889.377181px;}
.ls3f{letter-spacing:1025.448209px;}
.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;}
}
.ws2e{word-spacing:-65.454600px;}
.ws9a{word-spacing:-48.418425px;}
.wsb4{word-spacing:-47.258221px;}
.ws3d{word-spacing:-42.637126px;}
.ws4f{word-spacing:-41.825489px;}
.ws3b{word-spacing:-37.636395px;}
.ws64{word-spacing:-36.379667px;}
.ws25{word-spacing:-32.727300px;}
.wsad{word-spacing:-32.714209px;}
.ws48{word-spacing:-31.706208px;}
.ws34{word-spacing:-24.440748px;}
.ws0{word-spacing:-19.367325px;}
.ws93{word-spacing:-18.916379px;}
.ws32{word-spacing:-18.183288px;}
.ws69{word-spacing:-17.410924px;}
.ws97{word-spacing:-16.690923px;}
.ws94{word-spacing:-16.494559px;}
.ws2a{word-spacing:-16.232741px;}
.ws2b{word-spacing:-16.167286px;}
.ws28{word-spacing:-16.139475px;}
.ws39{word-spacing:-16.101832px;}
.ws67{word-spacing:-15.840013px;}
.ws66{word-spacing:-15.774559px;}
.ws7f{word-spacing:-15.709104px;}
.ws3c{word-spacing:-15.623012px;}
.wsb1{word-spacing:-15.512740px;}
.ws7d{word-spacing:-15.381831px;}
.wsa9{word-spacing:-14.400012px;}
.ws6e{word-spacing:-13.810921px;}
.ws91{word-spacing:-13.680011px;}
.ws29{word-spacing:-13.449600px;}
.ws4b{word-spacing:-13.287284px;}
.ws68{word-spacing:-13.156375px;}
.wsa4{word-spacing:-13.090920px;}
.ws1e{word-spacing:-13.025465px;}
.ws92{word-spacing:-12.960011px;}
.ws8a{word-spacing:-12.829102px;}
.ws24{word-spacing:-12.763647px;}
.ws20{word-spacing:-12.698192px;}
.ws18{word-spacing:-12.567283px;}
.ws26{word-spacing:-12.501829px;}
.ws55{word-spacing:-12.436374px;}
.ws8f{word-spacing:-12.109101px;}
.ws5f{word-spacing:-12.043646px;}
.ws60{word-spacing:-11.978192px;}
.wsb2{word-spacing:-11.847283px;}
.ws98{word-spacing:-11.781828px;}
.ws14{word-spacing:-11.520010px;}
.ws17{word-spacing:-11.454555px;}
.ws8e{word-spacing:-11.389100px;}
.ws3a{word-spacing:-11.323646px;}
.ws38{word-spacing:-11.258191px;}
.ws2d{word-spacing:-11.192737px;}
.ws1b{word-spacing:-11.127282px;}
.ws21{word-spacing:-11.061827px;}
.ws19{word-spacing:-10.996373px;}
.ws6{word-spacing:-10.938935px;}
.ws12{word-spacing:-10.930918px;}
.ws27{word-spacing:-10.865464px;}
.ws37{word-spacing:-10.800009px;}
.ws1a{word-spacing:-10.734554px;}
.ws35{word-spacing:-10.669100px;}
.ws11{word-spacing:-10.603645px;}
.wsd{word-spacing:-10.538191px;}
.ws42{word-spacing:-10.472736px;}
.ws1f{word-spacing:-10.407281px;}
.ws3{word-spacing:-10.221628px;}
.ws44{word-spacing:-10.210918px;}
.ws74{word-spacing:-10.145463px;}
.ws13{word-spacing:-10.014554px;}
.ws7{word-spacing:-9.982525px;}
.ws4{word-spacing:-9.803198px;}
.ws9{word-spacing:-9.743423px;}
.ws9d{word-spacing:-9.687281px;}
.wsa{word-spacing:-9.504320px;}
.ws50{word-spacing:-9.294553px;}
.ws10{word-spacing:-9.098189px;}
.ws2c{word-spacing:-8.967280px;}
.ws22{word-spacing:-8.770916px;}
.ws53{word-spacing:-8.705462px;}
.ws51{word-spacing:-8.640007px;}
.ws9c{word-spacing:-8.509098px;}
.ws4e{word-spacing:-8.116370px;}
.ws5d{word-spacing:-8.050916px;}
.ws89{word-spacing:-7.920007px;}
.ws1c{word-spacing:-7.854552px;}
.ws23{word-spacing:-7.658188px;}
.wse{word-spacing:-7.396370px;}
.wsf{word-spacing:-7.330915px;}
.wsa8{word-spacing:-7.265461px;}
.ws30{word-spacing:-7.252370px;}
.ws46{word-spacing:-7.134551px;}
.ws2{word-spacing:-6.993745px;}
.ws49{word-spacing:-6.817572px;}
.ws9b{word-spacing:-6.676369px;}
.wsb3{word-spacing:-6.480005px;}
.ws36{word-spacing:-6.349096px;}
.ws84{word-spacing:-6.205096px;}
.ws95{word-spacing:-6.087278px;}
.ws99{word-spacing:-5.890914px;}
.ws96{word-spacing:-5.301823px;}
.ws8c{word-spacing:-4.974550px;}
.ws4d{word-spacing:-4.778186px;}
.ws8b{word-spacing:-4.320004px;}
.ws8d{word-spacing:-4.254549px;}
.ws8{word-spacing:-4.244068px;}
.ws1d{word-spacing:-4.189094px;}
.ws90{word-spacing:-3.861821px;}
.ws54{word-spacing:-3.796367px;}
.ws63{word-spacing:-3.665458px;}
.ws2f{word-spacing:-3.652367px;}
.ws62{word-spacing:-3.600003px;}
.ws57{word-spacing:-3.207275px;}
.ws59{word-spacing:-3.141821px;}
.ws88{word-spacing:-2.421820px;}
.ws78{word-spacing:-1.898183px;}
.ws5c{word-spacing:-1.767274px;}
.wsa2{word-spacing:-1.505456px;}
.ws5a{word-spacing:-1.178183px;}
.ws82{word-spacing:-0.916364px;}
.ws15{word-spacing:-0.065455px;}
.ws40{word-spacing:-0.052364px;}
.ws3f{word-spacing:-0.047821px;}
.ws4c{word-spacing:-0.029164px;}
.ws45{word-spacing:-0.019792px;}
.ws47{word-spacing:-0.013792px;}
.wsb{word-spacing:0.000000px;}
.ws61{word-spacing:0.013091px;}
.wsb0{word-spacing:0.078546px;}
.ws56{word-spacing:0.209455px;}
.ws5b{word-spacing:0.274909px;}
.ws43{word-spacing:1.060365px;}
.ws72{word-spacing:1.309092px;}
.ws77{word-spacing:2.618184px;}
.ws71{word-spacing:3.076366px;}
.ws33{word-spacing:3.613094px;}
.ws65{word-spacing:3.678549px;}
.ws41{word-spacing:4.071276px;}
.wsa0{word-spacing:5.629096px;}
.ws6d{word-spacing:7.723643px;}
.ws70{word-spacing:8.901826px;}
.ws4a{word-spacing:10.110009px;}
.ws5e{word-spacing:11.402191px;}
.ws75{word-spacing:12.894556px;}
.ws58{word-spacing:13.234920px;}
.ws76{word-spacing:14.203648px;}
.ws7c{word-spacing:15.185467px;}
.ws7e{word-spacing:19.047289px;}
.wsac{word-spacing:21.122932px;}
.ws5{word-spacing:21.519216px;}
.ws7b{word-spacing:22.778201px;}
.ws1{word-spacing:23.312640px;}
.ws9f{word-spacing:23.367292px;}
.ws9e{word-spacing:23.629111px;}
.ws3e{word-spacing:24.765630px;}
.wsaa{word-spacing:25.057994px;}
.ws52{word-spacing:25.330930px;}
.wsa5{word-spacing:25.344918px;}
.wsa7{word-spacing:25.392739px;}
.ws16{word-spacing:25.854567px;}
.ws6f{word-spacing:26.509113px;}
.ws7a{word-spacing:30.829117px;}
.wsa3{word-spacing:31.941845px;}
.wsa1{word-spacing:38.487305px;}
.ws6b{word-spacing:39.338215px;}
.wsc{word-spacing:48.418425px;}
.ws86{word-spacing:59.432777px;}
.wsa6{word-spacing:59.739884px;}
.ws6a{word-spacing:62.116415px;}
.ws79{word-spacing:79.723703px;}
.ws6c{word-spacing:88.101892px;}
.ws73{word-spacing:100.080083px;}
.ws87{word-spacing:103.876450px;}
.wsab{word-spacing:161.358659px;}
.ws83{word-spacing:197.672892px;}
.ws80{word-spacing:210.763812px;}
.wsae{word-spacing:262.977434px;}
.ws81{word-spacing:267.251132px;}
.ws85{word-spacing:282.632963px;}
.wsaf{word-spacing:517.000462px;}
.ws31{word-spacing:666.694374px;}
._1d{margin-left:-17.994628px;}
._2{margin-left:-9.709486px;}
._13{margin-left:-8.091257px;}
._24{margin-left:-6.742733px;}
._5{margin-left:-5.738496px;}
._a{margin-left:-4.291849px;}
._3{margin-left:-3.202064px;}
._4{margin-left:-1.936742px;}
._6{width:1.936742px;}
._0{width:3.202064px;}
._16{width:17.699638px;}
._17{width:21.796382px;}
._18{width:22.843480px;}
._8{width:24.516136px;}
._7{width:26.528437px;}
._10{width:28.145654px;}
._e{width:29.427674px;}
._c{width:30.763662px;}
._d{width:32.634950px;}
._19{width:33.840028px;}
._11{width:35.716703px;}
._22{width:36.843997px;}
._27{width:37.986995px;}
._f{width:39.376774px;}
._b{width:40.385488px;}
._1a{width:41.535517px;}
._14{width:43.572271px;}
._9{width:44.616521px;}
._21{width:47.379285px;}
._1b{width:48.409508px;}
._26{width:49.953523px;}
._1{width:51.646200px;}
._1c{width:53.018226px;}
._23{width:75.272790px;}
._15{width:80.697600px;}
._12{width:96.836850px;}
._1e{width:168.578943px;}
._20{width:191.585614px;}
._25{width:207.022478px;}
._1f{width:303.360562px;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs3{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y14{bottom:61.467000px;}
.y123{bottom:106.299000px;}
.y1e0{bottom:114.715500px;}
.y50{bottom:115.060500px;}
.y1b9{bottom:121.243500px;}
.y1f3{bottom:121.261500px;}
.ya2{bottom:121.939500px;}
.y185{bottom:123.528000px;}
.ye0{bottom:123.799500px;}
.y122{bottom:126.622500px;}
.y73{bottom:134.499000px;}
.y4f{bottom:135.384000px;}
.y1b8{bottom:136.186500px;}
.y147{bottom:141.529500px;}
.y1f2{bottom:141.585000px;}
.ya1{bottom:142.263000px;}
.y184{bottom:143.851500px;}
.y74{bottom:148.099500px;}
.y1df{bottom:148.489500px;}
.y101{bottom:150.825000px;}
.y1b7{bottom:151.131000px;}
.y6d{bottom:152.757000px;}
.y121{bottom:154.488000px;}
.ydf{bottom:154.687500px;}
.y70{bottom:157.197000px;}
.y146{bottom:161.853000px;}
.ya0{bottom:162.586500px;}
.y1b6{bottom:166.075500px;}
.y6f{bottom:166.164000px;}
.y72{bottom:167.308500px;}
.y4e{bottom:169.158000px;}
.y71{bottom:171.792000px;}
.y183{bottom:174.741000px;}
.y6e{bottom:175.131000px;}
.y1f1{bottom:179.841000px;}
.y1b5{bottom:181.018500px;}
.y145{bottom:182.176500px;}
.y1de{bottom:182.263500px;}
.y9f{bottom:182.911500px;}
.y100{bottom:184.597500px;}
.yb7{bottom:184.846500px;}
.y120{bottom:185.898000px;}
.y1b4{bottom:195.963000px;}
.yde{bottom:197.904000px;}
.y38{bottom:200.040000px;}
.y144{bottom:202.501500px;}
.y4d{bottom:202.932000px;}
.yb6{bottom:205.170000px;}
.y6c{bottom:205.227000px;}
.y1b3{bottom:210.907500px;}
.y1f0{bottom:213.615000px;}
.y182{bottom:215.151000px;}
.y1dd{bottom:216.036000px;}
.y11f{bottom:217.308000px;}
.yff{bottom:218.371500px;}
.y9e{bottom:219.435000px;}
.yb5{bottom:225.493500px;}
.y1b2{bottom:225.850500px;}
.ydd{bottom:231.678000px;}
.y37{bottom:233.814000px;}
.y6b{bottom:236.116500px;}
.y143{bottom:236.274000px;}
.y4c{bottom:236.704500px;}
.y1b1{bottom:240.795000px;}
.y1ef{bottom:247.387500px;}
.y11e{bottom:248.718000px;}
.y1dc{bottom:249.810000px;}
.yfe{bottom:252.144000px;}
.y1b0{bottom:255.739500px;}
.yb4{bottom:259.267500px;}
.ydc{bottom:265.450500px;}
.y36{bottom:267.586500px;}
.y142{bottom:270.048000px;}
.y4b{bottom:270.478500px;}
.y1af{bottom:270.682500px;}
.y9d{bottom:270.987000px;}
.y6a{bottom:276.525000px;}
.y11d{bottom:276.582000px;}
.y1ee{bottom:281.161500px;}
.y1db{bottom:283.582500px;}
.y1ae{bottom:285.627000px;}
.yfd{bottom:285.918000px;}
.y4a{bottom:290.802000px;}
.y9c{bottom:291.310500px;}
.yb3{bottom:293.041500px;}
.y181{bottom:294.018000px;}
.ydb{bottom:299.224500px;}
.y1ad{bottom:300.570000px;}
.y35{bottom:301.360500px;}
.y141{bottom:303.820500px;}
.y11c{bottom:304.447500px;}
.y180{bottom:308.962500px;}
.y49{bottom:311.125500px;}
.y9b{bottom:311.635500px;}
.y1ed{bottom:312.051000px;}
.y1ac{bottom:315.514500px;}
.y1da{bottom:317.356500px;}
.y17f{bottom:323.907000px;}
.yb2{bottom:326.814000px;}
.yfc{bottom:328.114500px;}
.yda{bottom:330.114000px;}
.y1ab{bottom:330.459000px;}
.y9a{bottom:331.959000px;}
.y11b{bottom:335.857500px;}
.y140{bottom:337.594500px;}
.y17e{bottom:338.850000px;}
.y69{bottom:340.044000px;}
.y48{bottom:342.015000px;}
.y34{bottom:343.812000px;}
.y1aa{bottom:345.402000px;}
.yfb{bottom:348.438000px;}
.y1d9{bottom:351.129000px;}
.y99{bottom:352.282500px;}
.y17d{bottom:353.794500px;}
.y1ec{bottom:355.864500px;}
.y1a9{bottom:360.346500px;}
.yb1{bottom:360.588000px;}
.y33{bottom:364.135500px;}
.y11a{bottom:367.267500px;}
.y17c{bottom:368.737500px;}
.yfa{bottom:368.761500px;}
.y13f{bottom:371.367000px;}
.y98{bottom:372.606000px;}
.yd9{bottom:373.329000px;}
.y68{bottom:373.818000px;}
.y1a8{bottom:375.291000px;}
.yb0{bottom:380.911500px;}
.y47{bottom:382.425000px;}
.y17b{bottom:383.682000px;}
.y32{bottom:384.459000px;}
.y1d8{bottom:384.903000px;}
.yf9{bottom:389.085000px;}
.y1eb{bottom:389.637000px;}
.y1a7{bottom:390.234000px;}
.y13e{bottom:391.692000px;}
.y97{bottom:392.929500px;}
.yd8{bottom:393.652500px;}
.y119{bottom:395.133000px;}
.y17a{bottom:398.626500px;}
.y31{bottom:404.784000px;}
.y1a6{bottom:405.178500px;}
.y67{bottom:407.590500px;}
.yf8{bottom:409.410000px;}
.yaf{bottom:411.801000px;}
.y13d{bottom:412.015500px;}
.y179{bottom:413.569500px;}
.y1d7{bottom:418.677000px;}
.y1a5{bottom:420.123000px;}
.y118{bottom:422.997000px;}
.y1ea{bottom:423.411000px;}
.yd7{bottom:424.542000px;}
.y178{bottom:428.514000px;}
.yf7{bottom:429.733500px;}
.y96{bottom:430.452000px;}
.y13c{bottom:432.339000px;}
.y1a4{bottom:435.066000px;}
.y30{bottom:438.372000px;}
.y66{bottom:441.364500px;}
.y95{bottom:443.433000px;}
.y177{bottom:443.458500px;}
.yf6{bottom:450.057000px;}
.y1d6{bottom:452.449500px;}
.y46{bottom:453.916500px;}
.y117{bottom:454.407000px;}
.yae{bottom:455.614500px;}
.y1e9{bottom:457.185000px;}
.y176{bottom:458.401500px;}
.y1a3{bottom:460.842000px;}
.yd6{bottom:464.952000px;}
.y13b{bottom:466.113000px;}
.yf5{bottom:470.380500px;}
.y175{bottom:473.346000px;}
.y45{bottom:474.240000px;}
.y2f{bottom:474.525000px;}
.y65{bottom:475.137000px;}
.yad{bottom:475.938000px;}
.y1a2{bottom:481.165500px;}
.y116{bottom:485.817000px;}
.y1d5{bottom:486.223500px;}
.y174{bottom:488.290500px;}
.yf4{bottom:490.704000px;}
.y1e8{bottom:490.957500px;}
.y94{bottom:493.027500px;}
.y44{bottom:494.563500px;}
.y13a{bottom:499.885500px;}
.y1a1{bottom:501.489000px;}
.y173{bottom:503.233500px;}
.y64{bottom:508.911000px;}
.yac{bottom:509.712000px;}
.y115{bottom:513.682500px;}
.y2e{bottom:514.935000px;}
.y172{bottom:518.178000px;}
.yf3{bottom:519.238500px;}
.y1d4{bottom:519.996000px;}
.y139{bottom:520.209000px;}
.y1e7{bottom:521.847000px;}
.yd5{bottom:523.885500px;}
.y93{bottom:523.915500px;}
.yab{bottom:530.035500px;}
.y1a0{bottom:532.378500px;}
.y171{bottom:533.122500px;}
.yf2{bottom:539.562000px;}
.y114{bottom:541.546500px;}
.y63{bottom:542.683500px;}
.yd4{bottom:544.209000px;}
.y170{bottom:548.065500px;}
.yaa{bottom:550.359000px;}
.y1d3{bottom:553.770000px;}
.y138{bottom:553.983000px;}
.y16f{bottom:563.010000px;}
.yd3{bottom:564.532500px;}
.y154{bottom:565.066500px;}
.y1e6{bottom:565.660500px;}
.y2d{bottom:566.487000px;}
.y92{bottom:567.729000px;}
.ya9{bottom:570.682500px;}
.y113{bottom:572.956500px;}
.y62{bottom:576.457500px;}
.y16e{bottom:577.953000px;}
.yf1{bottom:580.710000px;}
.yd2{bottom:584.857500px;}
.y153{bottom:585.390000px;}
.y1e5{bottom:585.984000px;}
.y13{bottom:586.516500px;}
.y1d2{bottom:587.542500px;}
.y137{bottom:587.757000px;}
.y91{bottom:588.054000px;}
.y19f{bottom:588.711000px;}
.y16d{bottom:592.897500px;}
.y2c{bottom:600.259500px;}
.y19e{bottom:603.655500px;}
.y112{bottom:604.366500px;}
.y12{bottom:604.449000px;}
.ya8{bottom:604.456500px;}
.yd1{bottom:605.181000px;}
.y1e4{bottom:606.307500px;}
.y16c{bottom:607.842000px;}
.y136{bottom:608.080500px;}
.y61{bottom:610.231500px;}
.y19d{bottom:618.598500px;}
.y152{bottom:619.164000px;}
.y90{bottom:620.877000px;}
.y1d1{bottom:621.316500px;}
.y11{bottom:622.381500px;}
.y16b{bottom:622.785000px;}
.ya7{bottom:624.780000px;}
.yd0{bottom:625.504500px;}
.y1e3{bottom:626.632500px;}
.yf0{bottom:629.710500px;}
.y8f{bottom:632.101500px;}
.y19c{bottom:633.543000px;}
.y2b{bottom:634.033500px;}
.y111{bottom:635.776500px;}
.y16a{bottom:637.729500px;}
.y151{bottom:639.487500px;}
.y10{bottom:640.314000px;}
.y135{bottom:641.853000px;}
.y60{bottom:644.004000px;}
.ya6{bottom:645.103500px;}
.ycf{bottom:645.828000px;}
.y1e2{bottom:646.956000px;}
.y19b{bottom:648.486000px;}
.y169{bottom:652.674000px;}
.y2a{bottom:654.357000px;}
.y1d0{bottom:655.090500px;}
.yf{bottom:658.246500px;}
.y19a{bottom:663.430500px;}
.ya5{bottom:665.427000px;}
.yce{bottom:666.151500px;}
.y110{bottom:667.186500px;}
.y8e{bottom:672.285000px;}
.y150{bottom:673.261500px;}
.yef{bottom:673.524000px;}
.y134{bottom:675.627000px;}
.ye{bottom:676.180500px;}
.y5f{bottom:677.778000px;}
.y1e1{bottom:684.753000px;}
.ycd{bottom:686.476500px;}
.y29{bottom:688.131000px;}
.y1cf{bottom:688.863000px;}
.y199{bottom:689.206500px;}
.y168{bottom:691.128000px;}
.y14f{bottom:693.585000px;}
.yee{bottom:693.847500px;}
.yd{bottom:694.113000px;}
.y10f{bottom:695.052000px;}
.y133{bottom:695.950500px;}
.ya4{bottom:696.316500px;}
.y8d{bottom:705.582000px;}
.ycc{bottom:706.800000px;}
.y28{bottom:708.454500px;}
.y198{bottom:709.530000px;}
.y5e{bottom:711.550500px;}
.yc{bottom:712.045500px;}
.yed{bottom:714.172500px;}
.y132{bottom:716.274000px;}
.y8c{bottom:716.806500px;}
.y1ce{bottom:722.637000px;}
.y10e{bottom:722.916000px;}
.ycb{bottom:727.123500px;}
.y14e{bottom:727.357500px;}
.y197{bottom:729.853500px;}
.yb{bottom:729.978000px;}
.y167{bottom:736.204500px;}
.y131{bottom:736.597500px;}
.y27{bottom:742.227000px;}
.y5d{bottom:745.324500px;}
.yca{bottom:747.447000px;}
.y14d{bottom:747.682500px;}
.ya{bottom:747.910500px;}
.ya3{bottom:748.740000px;}
.y10d{bottom:754.326000px;}
.y1cd{bottom:756.409500px;}
.yec{bottom:756.624000px;}
.y130{bottom:756.922500px;}
.y196{bottom:760.743000px;}
.y8b{bottom:761.263500px;}
.y26{bottom:762.552000px;}
.y9{bottom:765.843000px;}
.yc9{bottom:767.770500px;}
.y5c{bottom:779.097000px;}
.y14c{bottom:781.455000px;}
.y8{bottom:783.777000px;}
.y10c{bottom:785.736000px;}
.yc8{bottom:788.095500px;}
.y1cc{bottom:790.183500px;}
.yeb{bottom:790.398000px;}
.y8a{bottom:792.153000px;}
.y12f{bottom:793.446000px;}
.y25{bottom:796.324500px;}
.y14b{bottom:801.778500px;}
.yc7{bottom:808.419000px;}
.y7{bottom:811.048500px;}
.y5b{bottom:812.871000px;}
.y166{bottom:815.071500px;}
.y24{bottom:816.648000px;}
.y195{bottom:817.075500px;}
.y10b{bottom:817.146000px;}
.y1cb{bottom:823.956000px;}
.yea{bottom:824.170500px;}
.y43{bottom:824.383500px;}
.yc6{bottom:828.742500px;}
.y165{bottom:830.016000px;}
.y194{bottom:832.018500px;}
.y89{bottom:835.003500px;}
.y14a{bottom:835.552500px;}
.y23{bottom:836.973000px;}
.y164{bottom:844.959000px;}
.y12e{bottom:844.998000px;}
.y10a{bottom:845.011500px;}
.y5a{bottom:846.625500px;}
.y193{bottom:846.963000px;}
.yc5{bottom:849.066000px;}
.y86{bottom:853.261500px;}
.y22{bottom:857.296500px;}
.y1ca{bottom:857.730000px;}
.ye9{bottom:857.944500px;}
.y42{bottom:858.156000px;}
.y163{bottom:859.903500px;}
.y1c2{bottom:861.259500px;}
.y192{bottom:861.907500px;}
.y12d{bottom:865.321500px;}
.y109{bottom:865.335000px;}
.y88{bottom:867.813000px;}
.y149{bottom:869.325000px;}
.yc4{bottom:869.389500px;}
.y6{bottom:871.459500px;}
.y87{bottom:872.296500px;}
.y162{bottom:874.848000px;}
.y191{bottom:876.850500px;}
.y21{bottom:877.620000px;}
.ye8{bottom:878.268000px;}
.y59{bottom:882.778500px;}
.y12c{bottom:885.646500px;}
.yc3{bottom:889.714500px;}
.y161{bottom:889.791000px;}
.y1c9{bottom:891.502500px;}
.y190{bottom:891.795000px;}
.y41{bottom:891.930000px;}
.y1c1{bottom:895.033500px;}
.y108{bottom:896.224500px;}
.y85{bottom:896.871000px;}
.y20{bottom:897.943500px;}
.y160{bottom:904.735500px;}
.y12b{bottom:905.970000px;}
.y18f{bottom:906.739500px;}
.y148{bottom:907.363500px;}
.ye7{bottom:909.675000px;}
.yc2{bottom:910.038000px;}
.y84{bottom:912.441000px;}
.y83{bottom:917.194500px;}
.y1f{bottom:918.267000px;}
.y15f{bottom:919.680000px;}
.y18e{bottom:921.682500px;}
.y1c8{bottom:925.276500px;}
.y40{bottom:925.704000px;}
.y12a{bottom:926.293500px;}
.y58{bottom:926.592000px;}
.y1c0{bottom:928.806000px;}
.yc1{bottom:930.361500px;}
.y5{bottom:932.587500px;}
.y15e{bottom:934.623000px;}
.y18d{bottom:936.627000px;}
.y1e{bottom:938.592000px;}
.y107{bottom:938.925000px;}
.ye6{bottom:943.750500px;}
.y129{bottom:946.617000px;}
.y57{bottom:946.917000px;}
.y3f{bottom:948.184500px;}
.y1bf{bottom:949.129500px;}
.y15d{bottom:949.567500px;}
.yc0{bottom:950.685000px;}
.y18c{bottom:951.570000px;}
.y81{bottom:952.738500px;}
.y1d{bottom:958.915500px;}
.y1c7{bottom:959.050500px;}
.y106{bottom:959.248500px;}
.y3e{bottom:961.444500px;}
.y4{bottom:963.273000px;}
.y15c{bottom:964.512000px;}
.y82{bottom:966.339000px;}
.y18b{bottom:966.514500px;}
.y128{bottom:966.940500px;}
.y56{bottom:967.240500px;}
.ybf{bottom:971.008500px;}
.y7b{bottom:971.395500px;}
.ye5{bottom:974.640000px;}
.y7e{bottom:976.135500px;}
.y1c{bottom:979.239000px;}
.y15b{bottom:979.455000px;}
.y1be{bottom:982.903500px;}
.y7d{bottom:985.101000px;}
.y80{bottom:985.947000px;}
.y105{bottom:987.112500px;}
.y127{bottom:987.265500px;}
.ybe{bottom:991.333500px;}
.y7f{bottom:991.426500px;}
.y18a{bottom:992.290500px;}
.y1c6{bottom:992.823000px;}
.y7c{bottom:994.068000px;}
.y15a{bottom:994.399500px;}
.y1b{bottom:999.562500px;}
.y55{bottom:1001.013000px;}
.y126{bottom:1007.589000px;}
.y3{bottom:1008.739500px;}
.y159{bottom:1009.342500px;}
.ybd{bottom:1011.657000px;}
.y189{bottom:1012.614000px;}
.y1bd{bottom:1016.677500px;}
.ye4{bottom:1018.453500px;}
.y104{bottom:1018.522500px;}
.y1a{bottom:1019.886000px;}
.y158{bottom:1024.287000px;}
.y7a{bottom:1024.746000px;}
.y1c5{bottom:1026.597000px;}
.y125{bottom:1027.912500px;}
.y3d{bottom:1028.707500px;}
.ybc{bottom:1031.980500px;}
.y188{bottom:1032.937500px;}
.y54{bottom:1034.787000px;}
.y1bc{bottom:1037.001000px;}
.ye3{bottom:1038.777000px;}
.y157{bottom:1039.231500px;}
.y19{bottom:1040.211000px;}
.y2{bottom:1041.616500px;}
.y124{bottom:1048.236000px;}
.y3c{bottom:1049.031000px;}
.y103{bottom:1049.932500px;}
.ybb{bottom:1052.304000px;}
.y156{bottom:1054.174500px;}
.y79{bottom:1055.635500px;}
.y1c4{bottom:1060.369500px;}
.y18{bottom:1060.534500px;}
.y187{bottom:1063.827000px;}
.y1bb{bottom:1067.890500px;}
.y53{bottom:1068.559500px;}
.y3b{bottom:1069.356000px;}
.ye2{bottom:1072.551000px;}
.yba{bottom:1072.627500px;}
.y1{bottom:1074.493500px;}
.y17{bottom:1080.858000px;}
.y102{bottom:1081.342500px;}
.y52{bottom:1088.884500px;}
.y155{bottom:1092.630000px;}
.y1c3{bottom:1094.124000px;}
.y186{bottom:1096.390500px;}
.y78{bottom:1099.449000px;}
.yb9{bottom:1101.160500px;}
.y16{bottom:1101.181500px;}
.y3a{bottom:1103.944500px;}
.ye1{bottom:1106.323500px;}
.y51{bottom:1109.208000px;}
.y77{bottom:1119.774000px;}
.y1ba{bottom:1125.153000px;}
.y76{bottom:1135.741500px;}
.y15{bottom:1137.706500px;}
.y39{bottom:1140.097500px;}
.yb8{bottom:1142.308500px;}
.y75{bottom:1151.659500px;}
.hd{height:2.391024px;}
.h1d{height:24.245146px;}
.h4{height:33.187496px;}
.h1c{height:39.992761px;}
.h6{height:44.831700px;}
.ha{height:46.865494px;}
.h7{height:49.090950px;}
.h9{height:50.211840px;}
.h16{height:52.233024px;}
.h5{height:53.798400px;}
.h12{height:55.209470px;}
.he{height:55.735496px;}
.h14{height:56.415470px;}
.h10{height:56.941496px;}
.h3{height:59.215496px;}
.h8{height:60.254040px;}
.h15{height:69.895496px;}
.h2{height:72.304680px;}
.hf{height:88.525496px;}
.h13{height:90.121496px;}
.h17{height:93.370950px;}
.h18{height:93.988950px;}
.hb{height:97.039496px;}
.h1b{height:101.014950px;}
.h1a{height:106.029024px;}
.hc{height:125.361024px;}
.h11{height:126.555024px;}
.h19{height:132.993024px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x92{left:80.397000px;}
.x91{left:85.876500px;}
.x5d{left:104.385000px;}
.xc{left:106.299000px;}
.x99{left:107.344500px;}
.x8a{left:109.261500px;}
.x5{left:110.451000px;}
.x84{left:114.190500px;}
.x77{left:115.266000px;}
.x76{left:122.161500px;}
.x85{left:124.099500px;}
.x17{left:126.300000px;}
.x18{left:129.685500px;}
.x2{left:132.423000px;}
.x68{left:135.184500px;}
.x89{left:138.681000px;}
.x88{left:139.935000px;}
.x1f{left:142.413000px;}
.xa{left:145.459500px;}
.x9{left:146.640000px;}
.x1{left:150.240000px;}
.x2b{left:154.087500px;}
.x48{left:155.541000px;}
.x5c{left:158.878500px;}
.x5e{left:160.345500px;}
.x86{left:163.524000px;}
.x3b{left:165.436500px;}
.x8{left:169.624500px;}
.x49{left:174.538500px;}
.x4a{left:181.029000px;}
.x3c{left:184.855500px;}
.x2c{left:191.979000px;}
.x4b{left:193.302000px;}
.x7e{left:194.665500px;}
.x2d{left:205.042500px;}
.x2e{left:212.316000px;}
.x5f{left:222.843000px;}
.x3d{left:229.744500px;}
.x69{left:240.487500px;}
.x8c{left:245.406000px;}
.x93{left:246.651000px;}
.x8b{left:252.292500px;}
.x6a{left:257.904000px;}
.x94{left:267.559500px;}
.x95{left:273.991500px;}
.x7b{left:280.095000px;}
.x1b{left:293.914500px;}
.x6b{left:296.925000px;}
.x24{left:300.780000px;}
.x78{left:303.277500px;}
.x1c{left:306.619500px;}
.x1d{left:313.027500px;}
.x1e{left:318.936000px;}
.x40{left:322.033500px;}
.x14{left:323.308500px;}
.x36{left:328.627500px;}
.x3{left:331.689000px;}
.x7c{left:340.158000px;}
.x96{left:342.241500px;}
.x15{left:343.407000px;}
.x11{left:346.018500px;}
.x42{left:347.638500px;}
.x16{left:351.588000px;}
.x12{left:354.199500px;}
.x70{left:360.175500px;}
.x50{left:362.566500px;}
.x13{left:364.483500px;}
.x6e{left:366.114000px;}
.x80{left:372.514500px;}
.x6{left:373.516500px;}
.x4c{left:375.472500px;}
.x6f{left:379.005000px;}
.x98{left:384.268500px;}
.x4{left:385.953000px;}
.x97{left:387.055500px;}
.x81{left:389.907000px;}
.x51{left:393.019500px;}
.x75{left:398.079000px;}
.x37{left:399.621000px;}
.x47{left:410.206500px;}
.x7{left:413.812500px;}
.x39{left:416.184000px;}
.x26{left:418.384500px;}
.x41{left:419.535000px;}
.x38{left:423.780000px;}
.x25{left:428.620500px;}
.x28{left:434.160000px;}
.x87{left:438.274500px;}
.x27{left:441.099000px;}
.xb{left:442.366500px;}
.x2f{left:446.394000px;}
.x29{left:458.472000px;}
.x60{left:463.288500px;}
.x9a{left:465.463500px;}
.xd{left:468.058500px;}
.xe{left:476.241000px;}
.xf{left:487.341000px;}
.x71{left:490.944000px;}
.x10{left:495.522000px;}
.x43{left:502.965000px;}
.x61{left:507.019500px;}
.x19{left:515.794500px;}
.x72{left:516.928500px;}
.x57{left:518.593500px;}
.x7f{left:526.254000px;}
.x7d{left:528.169500px;}
.x2a{left:531.339000px;}
.x1a{left:532.570500px;}
.x79{left:533.808000px;}
.x3a{left:537.438000px;}
.x62{left:539.073000px;}
.x3e{left:542.196000px;}
.x8f{left:548.527500px;}
.x3f{left:561.570000px;}
.x30{left:562.896000px;}
.x58{left:566.304000px;}
.x63{left:568.411500px;}
.x73{left:571.315500px;}
.x64{left:572.956500px;}
.x59{left:574.650000px;}
.x5a{left:579.195000px;}
.x74{left:588.171000px;}
.x9b{left:594.774000px;}
.x90{left:598.231500px;}
.x31{left:603.100500px;}
.x34{left:613.002000px;}
.x35{left:621.183000px;}
.x8d{left:643.078500px;}
.x65{left:651.634500px;}
.x20{left:652.987500px;}
.x7a{left:658.039500px;}
.x8e{left:663.987000px;}
.x21{left:665.692500px;}
.x22{left:672.183000px;}
.x23{left:678.093000px;}
.x32{left:690.849000px;}
.x6c{left:711.408000px;}
.x44{left:712.540500px;}
.x66{left:714.670500px;}
.x67{left:719.215500px;}
.x52{left:722.553000px;}
.x33{left:724.327500px;}
.x45{left:731.482500px;}
.x6d{left:732.723000px;}
.x46{left:737.391000px;}
.x53{left:746.515500px;}
.x5b{left:748.899000px;}
.x4d{left:750.091500px;}
.x54{left:753.789000px;}
.x4e{left:756.583500px;}
.x55{left:770.479500px;}
.x82{left:775.053000px;}
.x56{left:778.662000px;}
.x4f{left:782.037000px;}
.x83{left:784.434000px;}
@media print{
.vd{vertical-align:-49.840000pt;}
.vc{vertical-align:-41.109333pt;}
.v2{vertical-align:-23.136000pt;}
.v3{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:16.560000pt;}
.v12{vertical-align:17.978667pt;}
.v8{vertical-align:20.042667pt;}
.ve{vertical-align:21.114667pt;}
.v1{vertical-align:23.136000pt;}
.v13{vertical-align:32.629333pt;}
.v14{vertical-align:39.360000pt;}
.v18{vertical-align:40.560000pt;}
.v7{vertical-align:44.298667pt;}
.v19{vertical-align:46.154667pt;}
.va{vertical-align:49.189333pt;}
.v11{vertical-align:50.608000pt;}
.v5{vertical-align:56.757333pt;}
.v9{vertical-align:60.858667pt;}
.v10{vertical-align:62.282667pt;}
.v4{vertical-align:73.584000pt;}
.v15{vertical-align:76.181333pt;}
.v17{vertical-align:92.122667pt;}
.v6{vertical-align:109.306667pt;}
.vf{vertical-align:110.368000pt;}
.v16{vertical-align:116.090667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.000411pt;}
.ls3b{letter-spacing:0.000690pt;}
.ls18{letter-spacing:0.000749pt;}
.ls16{letter-spacing:0.000935pt;}
.ls28{letter-spacing:0.001420pt;}
.ls41{letter-spacing:0.001432pt;}
.ls14{letter-spacing:0.001899pt;}
.ls23{letter-spacing:0.001908pt;}
.lse{letter-spacing:0.003777pt;}
.ls29{letter-spacing:0.006082pt;}
.lsb{letter-spacing:0.021196pt;}
.ls33{letter-spacing:0.026990pt;}
.ls2b{letter-spacing:0.226830pt;}
.ls5{letter-spacing:0.814546pt;}
.ls12{letter-spacing:0.872728pt;}
.ls21{letter-spacing:1.147694pt;}
.ls4e{letter-spacing:2.210911pt;}
.ls2d{letter-spacing:2.465418pt;}
.ls0{letter-spacing:2.653258pt;}
.ls34{letter-spacing:2.655321pt;}
.ls17{letter-spacing:2.662479pt;}
.ls31{letter-spacing:2.909093pt;}
.ls1f{letter-spacing:3.354146pt;}
.ls1a{letter-spacing:3.365249pt;}
.ls15{letter-spacing:3.374548pt;}
.ls22{letter-spacing:3.791684pt;}
.ls48{letter-spacing:4.829095pt;}
.ls3e{letter-spacing:5.105323pt;}
.ls2e{letter-spacing:5.110656pt;}
.lsf{letter-spacing:6.185732pt;}
.lsc{letter-spacing:6.191065pt;}
.ls30{letter-spacing:6.341823pt;}
.lsd{letter-spacing:6.574551pt;}
.ls27{letter-spacing:8.081908pt;}
.ls35{letter-spacing:8.087279pt;}
.ls24{letter-spacing:8.105048pt;}
.ls10{letter-spacing:9.658190pt;}
.ls1e{letter-spacing:9.693224pt;}
.ls8{letter-spacing:12.916374pt;}
.ls9{letter-spacing:12.941017pt;}
.ls32{letter-spacing:12.974556pt;}
.ls37{letter-spacing:15.127285pt;}
.ls2a{letter-spacing:15.581258pt;}
.ls19{letter-spacing:15.585146pt;}
.ls7{letter-spacing:15.586591pt;}
.ls53{letter-spacing:16.116377pt;}
.ls6{letter-spacing:16.174559pt;}
.ls51{letter-spacing:16.349105pt;}
.ls46{letter-spacing:16.989105pt;}
.ls3a{letter-spacing:17.280014pt;}
.ls50{letter-spacing:18.327288pt;}
.ls45{letter-spacing:18.443652pt;}
.ls3{letter-spacing:19.141834pt;}
.ls4{letter-spacing:19.374562pt;}
.ls13{letter-spacing:19.432743pt;}
.ls3d{letter-spacing:19.490925pt;}
.ls1d{letter-spacing:20.134479pt;}
.ls43{letter-spacing:22.351065pt;}
.ls25{letter-spacing:22.351684pt;}
.ls4c{letter-spacing:22.489732pt;}
.lsa{letter-spacing:23.614824pt;}
.ls47{letter-spacing:24.145475pt;}
.ls40{letter-spacing:24.843657pt;}
.ls42{letter-spacing:25.407065pt;}
.ls20{letter-spacing:25.583065pt;}
.ls52{letter-spacing:25.832749pt;}
.ls44{letter-spacing:26.240022pt;}
.ls49{letter-spacing:26.530931pt;}
.ls4a{letter-spacing:26.938204pt;}
.ls11{letter-spacing:27.578205pt;}
.ls2{letter-spacing:29.090933pt;}
.ls38{letter-spacing:36.264161pt;}
.ls4b{letter-spacing:53.134000pt;}
.ls3c{letter-spacing:58.181867pt;}
.ls1b{letter-spacing:83.478479pt;}
.ls4d{letter-spacing:143.461800pt;}
.ls4f{letter-spacing:233.789600pt;}
.ls2f{letter-spacing:371.382082pt;}
.ls1c{letter-spacing:694.317258pt;}
.ls26{letter-spacing:725.618591pt;}
.ls36{letter-spacing:786.775648pt;}
.ls39{letter-spacing:790.557494pt;}
.ls3f{letter-spacing:911.509519pt;}
.ws2e{word-spacing:-58.181867pt;}
.ws9a{word-spacing:-43.038600pt;}
.wsb4{word-spacing:-42.007308pt;}
.ws3d{word-spacing:-37.899668pt;}
.ws4f{word-spacing:-37.178213pt;}
.ws3b{word-spacing:-33.454573pt;}
.ws64{word-spacing:-32.337481pt;}
.ws25{word-spacing:-29.090933pt;}
.wsad{word-spacing:-29.079297pt;}
.ws48{word-spacing:-28.183296pt;}
.ws34{word-spacing:-21.725109pt;}
.ws0{word-spacing:-17.215400pt;}
.ws93{word-spacing:-16.814559pt;}
.ws32{word-spacing:-16.162923pt;}
.ws69{word-spacing:-15.476377pt;}
.ws97{word-spacing:-14.836376pt;}
.ws94{word-spacing:-14.661830pt;}
.ws2a{word-spacing:-14.429103pt;}
.ws2b{word-spacing:-14.370921pt;}
.ws28{word-spacing:-14.346200pt;}
.ws39{word-spacing:-14.312739pt;}
.ws67{word-spacing:-14.080012pt;}
.ws66{word-spacing:-14.021830pt;}
.ws7f{word-spacing:-13.963648pt;}
.ws3c{word-spacing:-13.887122pt;}
.wsb1{word-spacing:-13.789102pt;}
.ws7d{word-spacing:-13.672739pt;}
.wsa9{word-spacing:-12.800011pt;}
.ws6e{word-spacing:-12.276374pt;}
.ws91{word-spacing:-12.160010pt;}
.ws29{word-spacing:-11.955200pt;}
.ws4b{word-spacing:-11.810919pt;}
.ws68{word-spacing:-11.694555pt;}
.wsa4{word-spacing:-11.636373pt;}
.ws1e{word-spacing:-11.578191pt;}
.ws92{word-spacing:-11.520010pt;}
.ws8a{word-spacing:-11.403646pt;}
.ws24{word-spacing:-11.345464pt;}
.ws20{word-spacing:-11.287282pt;}
.ws18{word-spacing:-11.170918pt;}
.ws26{word-spacing:-11.112737pt;}
.ws55{word-spacing:-11.054555pt;}
.ws8f{word-spacing:-10.763645pt;}
.ws5f{word-spacing:-10.705463pt;}
.ws60{word-spacing:-10.647282pt;}
.wsb2{word-spacing:-10.530918pt;}
.ws98{word-spacing:-10.472736pt;}
.ws14{word-spacing:-10.240009pt;}
.ws17{word-spacing:-10.181827pt;}
.ws8e{word-spacing:-10.123645pt;}
.ws3a{word-spacing:-10.065463pt;}
.ws38{word-spacing:-10.007281pt;}
.ws2d{word-spacing:-9.949099pt;}
.ws1b{word-spacing:-9.890917pt;}
.ws21{word-spacing:-9.832735pt;}
.ws19{word-spacing:-9.774554pt;}
.ws6{word-spacing:-9.723498pt;}
.ws12{word-spacing:-9.716372pt;}
.ws27{word-spacing:-9.658190pt;}
.ws37{word-spacing:-9.600008pt;}
.ws1a{word-spacing:-9.541826pt;}
.ws35{word-spacing:-9.483644pt;}
.ws11{word-spacing:-9.425462pt;}
.wsd{word-spacing:-9.367281pt;}
.ws42{word-spacing:-9.309099pt;}
.ws1f{word-spacing:-9.250917pt;}
.ws3{word-spacing:-9.085891pt;}
.ws44{word-spacing:-9.076371pt;}
.ws74{word-spacing:-9.018189pt;}
.ws13{word-spacing:-8.901826pt;}
.ws7{word-spacing:-8.873356pt;}
.ws4{word-spacing:-8.713954pt;}
.ws9{word-spacing:-8.660820pt;}
.ws9d{word-spacing:-8.610916pt;}
.wsa{word-spacing:-8.448285pt;}
.ws50{word-spacing:-8.261825pt;}
.ws10{word-spacing:-8.087279pt;}
.ws2c{word-spacing:-7.970916pt;}
.ws22{word-spacing:-7.796370pt;}
.ws53{word-spacing:-7.738188pt;}
.ws51{word-spacing:-7.680006pt;}
.ws9c{word-spacing:-7.563643pt;}
.ws4e{word-spacing:-7.214551pt;}
.ws5d{word-spacing:-7.156370pt;}
.ws89{word-spacing:-7.040006pt;}
.ws1c{word-spacing:-6.981824pt;}
.ws23{word-spacing:-6.807278pt;}
.wse{word-spacing:-6.574551pt;}
.wsf{word-spacing:-6.516369pt;}
.wsa8{word-spacing:-6.458187pt;}
.ws30{word-spacing:-6.446551pt;}
.ws46{word-spacing:-6.341823pt;}
.ws2{word-spacing:-6.216662pt;}
.ws49{word-spacing:-6.060064pt;}
.ws9b{word-spacing:-5.934550pt;}
.wsb3{word-spacing:-5.760005pt;}
.ws36{word-spacing:-5.643641pt;}
.ws84{word-spacing:-5.515641pt;}
.ws95{word-spacing:-5.410914pt;}
.ws99{word-spacing:-5.236368pt;}
.ws96{word-spacing:-4.712731pt;}
.ws8c{word-spacing:-4.421822pt;}
.ws4d{word-spacing:-4.247276pt;}
.ws8b{word-spacing:-3.840003pt;}
.ws8d{word-spacing:-3.781821pt;}
.ws8{word-spacing:-3.772505pt;}
.ws1d{word-spacing:-3.723639pt;}
.ws90{word-spacing:-3.432730pt;}
.ws54{word-spacing:-3.374548pt;}
.ws63{word-spacing:-3.258185pt;}
.ws2f{word-spacing:-3.246548pt;}
.ws62{word-spacing:-3.200003pt;}
.ws57{word-spacing:-2.850911pt;}
.ws59{word-spacing:-2.792730pt;}
.ws88{word-spacing:-2.152729pt;}
.ws78{word-spacing:-1.687274pt;}
.ws5c{word-spacing:-1.570910pt;}
.wsa2{word-spacing:-1.338183pt;}
.ws5a{word-spacing:-1.047274pt;}
.ws82{word-spacing:-0.814546pt;}
.ws15{word-spacing:-0.058182pt;}
.ws40{word-spacing:-0.046545pt;}
.ws3f{word-spacing:-0.042507pt;}
.ws4c{word-spacing:-0.025923pt;}
.ws45{word-spacing:-0.017593pt;}
.ws47{word-spacing:-0.012260pt;}
.wsb{word-spacing:0.000000pt;}
.ws61{word-spacing:0.011636pt;}
.wsb0{word-spacing:0.069818pt;}
.ws56{word-spacing:0.186182pt;}
.ws5b{word-spacing:0.244364pt;}
.ws43{word-spacing:0.942546pt;}
.ws72{word-spacing:1.163637pt;}
.ws77{word-spacing:2.327275pt;}
.ws71{word-spacing:2.734548pt;}
.ws33{word-spacing:3.211639pt;}
.ws65{word-spacing:3.269821pt;}
.ws41{word-spacing:3.618912pt;}
.wsa0{word-spacing:5.003641pt;}
.ws6d{word-spacing:6.865460pt;}
.ws70{word-spacing:7.912734pt;}
.ws4a{word-spacing:8.986675pt;}
.ws5e{word-spacing:10.135281pt;}
.ws75{word-spacing:11.461828pt;}
.ws58{word-spacing:11.764373pt;}
.ws76{word-spacing:12.625465pt;}
.ws7c{word-spacing:13.498193pt;}
.ws7e{word-spacing:16.930923pt;}
.wsac{word-spacing:18.775940pt;}
.ws5{word-spacing:19.128192pt;}
.ws7b{word-spacing:20.247290pt;}
.ws1{word-spacing:20.722347pt;}
.ws9f{word-spacing:20.770926pt;}
.ws9e{word-spacing:21.003654pt;}
.ws3e{word-spacing:22.013893pt;}
.wsaa{word-spacing:22.273773pt;}
.ws52{word-spacing:22.516382pt;}
.wsa5{word-spacing:22.528816pt;}
.wsa7{word-spacing:22.571323pt;}
.ws16{word-spacing:22.981837pt;}
.ws6f{word-spacing:23.563656pt;}
.ws7a{word-spacing:27.403659pt;}
.wsa3{word-spacing:28.392751pt;}
.wsa1{word-spacing:34.210938pt;}
.ws6b{word-spacing:34.967302pt;}
.wsc{word-spacing:43.038600pt;}
.ws86{word-spacing:52.829135pt;}
.wsa6{word-spacing:53.102119pt;}
.ws6a{word-spacing:55.214591pt;}
.ws79{word-spacing:70.865514pt;}
.ws6c{word-spacing:78.312793pt;}
.ws73{word-spacing:88.960074pt;}
.ws87{word-spacing:92.334622pt;}
.wsab{word-spacing:143.429919pt;}
.ws83{word-spacing:175.709237pt;}
.ws80{word-spacing:187.345611pt;}
.wsae{word-spacing:233.757719pt;}
.ws81{word-spacing:237.556562pt;}
.ws85{word-spacing:251.229300pt;}
.wsaf{word-spacing:459.555966pt;}
.ws31{word-spacing:592.617221pt;}
._1d{margin-left:-15.995225pt;}
._2{margin-left:-8.630654pt;}
._13{margin-left:-7.192228pt;}
._24{margin-left:-5.993540pt;}
._5{margin-left:-5.100885pt;}
._a{margin-left:-3.814977pt;}
._3{margin-left:-2.846279pt;}
._4{margin-left:-1.721549pt;}
._6{width:1.721549pt;}
._0{width:2.846279pt;}
._16{width:15.733011pt;}
._17{width:19.374562pt;}
._18{width:20.305315pt;}
._8{width:21.792121pt;}
._7{width:23.580833pt;}
._10{width:25.018359pt;}
._e{width:26.157933pt;}
._c{width:27.345477pt;}
._d{width:29.008844pt;}
._19{width:30.080025pt;}
._11{width:31.748180pt;}
._22{width:32.750220pt;}
._27{width:33.766218pt;}
._f{width:35.001577pt;}
._b{width:35.898212pt;}
._1a{width:36.920459pt;}
._14{width:38.730908pt;}
._9{width:39.659130pt;}
._21{width:42.114920pt;}
._1b{width:43.030674pt;}
._26{width:44.403132pt;}
._1{width:45.907733pt;}
._1c{width:47.127312pt;}
._23{width:66.909147pt;}
._15{width:71.731200pt;}
._12{width:86.077200pt;}
._1e{width:149.847949pt;}
._20{width:170.298324pt;}
._25{width:184.019980pt;}
._1f{width:269.653833pt;}
.fs6{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:54.637333pt;}
.y123{bottom:94.488000pt;}
.y1e0{bottom:101.969333pt;}
.y50{bottom:102.276000pt;}
.y1b9{bottom:107.772000pt;}
.y1f3{bottom:107.788000pt;}
.ya2{bottom:108.390667pt;}
.y185{bottom:109.802667pt;}
.ye0{bottom:110.044000pt;}
.y122{bottom:112.553333pt;}
.y73{bottom:119.554667pt;}
.y4f{bottom:120.341333pt;}
.y1b8{bottom:121.054667pt;}
.y147{bottom:125.804000pt;}
.y1f2{bottom:125.853333pt;}
.ya1{bottom:126.456000pt;}
.y184{bottom:127.868000pt;}
.y74{bottom:131.644000pt;}
.y1df{bottom:131.990667pt;}
.y101{bottom:134.066667pt;}
.y1b7{bottom:134.338667pt;}
.y6d{bottom:135.784000pt;}
.y121{bottom:137.322667pt;}
.ydf{bottom:137.500000pt;}
.y70{bottom:139.730667pt;}
.y146{bottom:143.869333pt;}
.ya0{bottom:144.521333pt;}
.y1b6{bottom:147.622667pt;}
.y6f{bottom:147.701333pt;}
.y72{bottom:148.718667pt;}
.y4e{bottom:150.362667pt;}
.y71{bottom:152.704000pt;}
.y183{bottom:155.325333pt;}
.y6e{bottom:155.672000pt;}
.y1f1{bottom:159.858667pt;}
.y1b5{bottom:160.905333pt;}
.y145{bottom:161.934667pt;}
.y1de{bottom:162.012000pt;}
.y9f{bottom:162.588000pt;}
.y100{bottom:164.086667pt;}
.yb7{bottom:164.308000pt;}
.y120{bottom:165.242667pt;}
.y1b4{bottom:174.189333pt;}
.yde{bottom:175.914667pt;}
.y38{bottom:177.813333pt;}
.y144{bottom:180.001333pt;}
.y4d{bottom:180.384000pt;}
.yb6{bottom:182.373333pt;}
.y6c{bottom:182.424000pt;}
.y1b3{bottom:187.473333pt;}
.y1f0{bottom:189.880000pt;}
.y182{bottom:191.245333pt;}
.y1dd{bottom:192.032000pt;}
.y11f{bottom:193.162667pt;}
.yff{bottom:194.108000pt;}
.y9e{bottom:195.053333pt;}
.yb5{bottom:200.438667pt;}
.y1b2{bottom:200.756000pt;}
.ydd{bottom:205.936000pt;}
.y37{bottom:207.834667pt;}
.y6b{bottom:209.881333pt;}
.y143{bottom:210.021333pt;}
.y4c{bottom:210.404000pt;}
.y1b1{bottom:214.040000pt;}
.y1ef{bottom:219.900000pt;}
.y11e{bottom:221.082667pt;}
.y1dc{bottom:222.053333pt;}
.yfe{bottom:224.128000pt;}
.y1b0{bottom:227.324000pt;}
.yb4{bottom:230.460000pt;}
.ydc{bottom:235.956000pt;}
.y36{bottom:237.854667pt;}
.y142{bottom:240.042667pt;}
.y4b{bottom:240.425333pt;}
.y1af{bottom:240.606667pt;}
.y9d{bottom:240.877333pt;}
.y6a{bottom:245.800000pt;}
.y11d{bottom:245.850667pt;}
.y1ee{bottom:249.921333pt;}
.y1db{bottom:252.073333pt;}
.y1ae{bottom:253.890667pt;}
.yfd{bottom:254.149333pt;}
.y4a{bottom:258.490667pt;}
.y9c{bottom:258.942667pt;}
.yb3{bottom:260.481333pt;}
.y181{bottom:261.349333pt;}
.ydb{bottom:265.977333pt;}
.y1ad{bottom:267.173333pt;}
.y35{bottom:267.876000pt;}
.y141{bottom:270.062667pt;}
.y11c{bottom:270.620000pt;}
.y180{bottom:274.633333pt;}
.y49{bottom:276.556000pt;}
.y9b{bottom:277.009333pt;}
.y1ed{bottom:277.378667pt;}
.y1ac{bottom:280.457333pt;}
.y1da{bottom:282.094667pt;}
.y17f{bottom:287.917333pt;}
.yb2{bottom:290.501333pt;}
.yfc{bottom:291.657333pt;}
.yda{bottom:293.434667pt;}
.y1ab{bottom:293.741333pt;}
.y9a{bottom:295.074667pt;}
.y11b{bottom:298.540000pt;}
.y140{bottom:300.084000pt;}
.y17e{bottom:301.200000pt;}
.y69{bottom:302.261333pt;}
.y48{bottom:304.013333pt;}
.y34{bottom:305.610667pt;}
.y1aa{bottom:307.024000pt;}
.yfb{bottom:309.722667pt;}
.y1d9{bottom:312.114667pt;}
.y99{bottom:313.140000pt;}
.y17d{bottom:314.484000pt;}
.y1ec{bottom:316.324000pt;}
.y1a9{bottom:320.308000pt;}
.yb1{bottom:320.522667pt;}
.y33{bottom:323.676000pt;}
.y11a{bottom:326.460000pt;}
.y17c{bottom:327.766667pt;}
.yfa{bottom:327.788000pt;}
.y13f{bottom:330.104000pt;}
.y98{bottom:331.205333pt;}
.yd9{bottom:331.848000pt;}
.y68{bottom:332.282667pt;}
.y1a8{bottom:333.592000pt;}
.yb0{bottom:338.588000pt;}
.y47{bottom:339.933333pt;}
.y17b{bottom:341.050667pt;}
.y32{bottom:341.741333pt;}
.y1d8{bottom:342.136000pt;}
.yf9{bottom:345.853333pt;}
.y1eb{bottom:346.344000pt;}
.y1a7{bottom:346.874667pt;}
.y13e{bottom:348.170667pt;}
.y97{bottom:349.270667pt;}
.yd8{bottom:349.913333pt;}
.y119{bottom:351.229333pt;}
.y17a{bottom:354.334667pt;}
.y31{bottom:359.808000pt;}
.y1a6{bottom:360.158667pt;}
.y67{bottom:362.302667pt;}
.yf8{bottom:363.920000pt;}
.yaf{bottom:366.045333pt;}
.y13d{bottom:366.236000pt;}
.y179{bottom:367.617333pt;}
.y1d7{bottom:372.157333pt;}
.y1a5{bottom:373.442667pt;}
.y118{bottom:375.997333pt;}
.y1ea{bottom:376.365333pt;}
.yd7{bottom:377.370667pt;}
.y178{bottom:380.901333pt;}
.yf7{bottom:381.985333pt;}
.y96{bottom:382.624000pt;}
.y13c{bottom:384.301333pt;}
.y1a4{bottom:386.725333pt;}
.y30{bottom:389.664000pt;}
.y66{bottom:392.324000pt;}
.y95{bottom:394.162667pt;}
.y177{bottom:394.185333pt;}
.yf6{bottom:400.050667pt;}
.y1d6{bottom:402.177333pt;}
.y46{bottom:403.481333pt;}
.y117{bottom:403.917333pt;}
.yae{bottom:404.990667pt;}
.y1e9{bottom:406.386667pt;}
.y176{bottom:407.468000pt;}
.y1a3{bottom:409.637333pt;}
.yd6{bottom:413.290667pt;}
.y13b{bottom:414.322667pt;}
.yf5{bottom:418.116000pt;}
.y175{bottom:420.752000pt;}
.y45{bottom:421.546667pt;}
.y2f{bottom:421.800000pt;}
.y65{bottom:422.344000pt;}
.yad{bottom:423.056000pt;}
.y1a2{bottom:427.702667pt;}
.y116{bottom:431.837333pt;}
.y1d5{bottom:432.198667pt;}
.y174{bottom:434.036000pt;}
.yf4{bottom:436.181333pt;}
.y1e8{bottom:436.406667pt;}
.y94{bottom:438.246667pt;}
.y44{bottom:439.612000pt;}
.y13a{bottom:444.342667pt;}
.y1a1{bottom:445.768000pt;}
.y173{bottom:447.318667pt;}
.y64{bottom:452.365333pt;}
.yac{bottom:453.077333pt;}
.y115{bottom:456.606667pt;}
.y2e{bottom:457.720000pt;}
.y172{bottom:460.602667pt;}
.yf3{bottom:461.545333pt;}
.y1d4{bottom:462.218667pt;}
.y139{bottom:462.408000pt;}
.y1e7{bottom:463.864000pt;}
.yd5{bottom:465.676000pt;}
.y93{bottom:465.702667pt;}
.yab{bottom:471.142667pt;}
.y1a0{bottom:473.225333pt;}
.y171{bottom:473.886667pt;}
.yf2{bottom:479.610667pt;}
.y114{bottom:481.374667pt;}
.y63{bottom:482.385333pt;}
.yd4{bottom:483.741333pt;}
.y170{bottom:487.169333pt;}
.yaa{bottom:489.208000pt;}
.y1d3{bottom:492.240000pt;}
.y138{bottom:492.429333pt;}
.y16f{bottom:500.453333pt;}
.yd3{bottom:501.806667pt;}
.y154{bottom:502.281333pt;}
.y1e6{bottom:502.809333pt;}
.y2d{bottom:503.544000pt;}
.y92{bottom:504.648000pt;}
.ya9{bottom:507.273333pt;}
.y113{bottom:509.294667pt;}
.y62{bottom:512.406667pt;}
.y16e{bottom:513.736000pt;}
.yf1{bottom:516.186667pt;}
.yd2{bottom:519.873333pt;}
.y153{bottom:520.346667pt;}
.y1e5{bottom:520.874667pt;}
.y13{bottom:521.348000pt;}
.y1d2{bottom:522.260000pt;}
.y137{bottom:522.450667pt;}
.y91{bottom:522.714667pt;}
.y19f{bottom:523.298667pt;}
.y16d{bottom:527.020000pt;}
.y2c{bottom:533.564000pt;}
.y19e{bottom:536.582667pt;}
.y112{bottom:537.214667pt;}
.y12{bottom:537.288000pt;}
.ya8{bottom:537.294667pt;}
.yd1{bottom:537.938667pt;}
.y1e4{bottom:538.940000pt;}
.y16c{bottom:540.304000pt;}
.y136{bottom:540.516000pt;}
.y61{bottom:542.428000pt;}
.y19d{bottom:549.865333pt;}
.y152{bottom:550.368000pt;}
.y90{bottom:551.890667pt;}
.y1d1{bottom:552.281333pt;}
.y11{bottom:553.228000pt;}
.y16b{bottom:553.586667pt;}
.ya7{bottom:555.360000pt;}
.yd0{bottom:556.004000pt;}
.y1e3{bottom:557.006667pt;}
.yf0{bottom:559.742667pt;}
.y8f{bottom:561.868000pt;}
.y19c{bottom:563.149333pt;}
.y2b{bottom:563.585333pt;}
.y111{bottom:565.134667pt;}
.y16a{bottom:566.870667pt;}
.y151{bottom:568.433333pt;}
.y10{bottom:569.168000pt;}
.y135{bottom:570.536000pt;}
.y60{bottom:572.448000pt;}
.ya6{bottom:573.425333pt;}
.ycf{bottom:574.069333pt;}
.y1e2{bottom:575.072000pt;}
.y19b{bottom:576.432000pt;}
.y169{bottom:580.154667pt;}
.y2a{bottom:581.650667pt;}
.y1d0{bottom:582.302667pt;}
.yf{bottom:585.108000pt;}
.y19a{bottom:589.716000pt;}
.ya5{bottom:591.490667pt;}
.yce{bottom:592.134667pt;}
.y110{bottom:593.054667pt;}
.y8e{bottom:597.586667pt;}
.y150{bottom:598.454667pt;}
.yef{bottom:598.688000pt;}
.y134{bottom:600.557333pt;}
.ye{bottom:601.049333pt;}
.y5f{bottom:602.469333pt;}
.y1e1{bottom:608.669333pt;}
.ycd{bottom:610.201333pt;}
.y29{bottom:611.672000pt;}
.y1cf{bottom:612.322667pt;}
.y199{bottom:612.628000pt;}
.y168{bottom:614.336000pt;}
.y14f{bottom:616.520000pt;}
.yee{bottom:616.753333pt;}
.yd{bottom:616.989333pt;}
.y10f{bottom:617.824000pt;}
.y133{bottom:618.622667pt;}
.ya4{bottom:618.948000pt;}
.y8d{bottom:627.184000pt;}
.ycc{bottom:628.266667pt;}
.y28{bottom:629.737333pt;}
.y198{bottom:630.693333pt;}
.y5e{bottom:632.489333pt;}
.yc{bottom:632.929333pt;}
.yed{bottom:634.820000pt;}
.y132{bottom:636.688000pt;}
.y8c{bottom:637.161333pt;}
.y1ce{bottom:642.344000pt;}
.y10e{bottom:642.592000pt;}
.ycb{bottom:646.332000pt;}
.y14e{bottom:646.540000pt;}
.y197{bottom:648.758667pt;}
.yb{bottom:648.869333pt;}
.y167{bottom:654.404000pt;}
.y131{bottom:654.753333pt;}
.y27{bottom:659.757333pt;}
.y5d{bottom:662.510667pt;}
.yca{bottom:664.397333pt;}
.y14d{bottom:664.606667pt;}
.ya{bottom:664.809333pt;}
.ya3{bottom:665.546667pt;}
.y10d{bottom:670.512000pt;}
.y1cd{bottom:672.364000pt;}
.yec{bottom:672.554667pt;}
.y130{bottom:672.820000pt;}
.y196{bottom:676.216000pt;}
.y8b{bottom:676.678667pt;}
.y26{bottom:677.824000pt;}
.y9{bottom:680.749333pt;}
.yc9{bottom:682.462667pt;}
.y5c{bottom:692.530667pt;}
.y14c{bottom:694.626667pt;}
.y8{bottom:696.690667pt;}
.y10c{bottom:698.432000pt;}
.yc8{bottom:700.529333pt;}
.y1cc{bottom:702.385333pt;}
.yeb{bottom:702.576000pt;}
.y8a{bottom:704.136000pt;}
.y12f{bottom:705.285333pt;}
.y25{bottom:707.844000pt;}
.y14b{bottom:712.692000pt;}
.yc7{bottom:718.594667pt;}
.y7{bottom:720.932000pt;}
.y5b{bottom:722.552000pt;}
.y166{bottom:724.508000pt;}
.y24{bottom:725.909333pt;}
.y195{bottom:726.289333pt;}
.y10b{bottom:726.352000pt;}
.y1cb{bottom:732.405333pt;}
.yea{bottom:732.596000pt;}
.y43{bottom:732.785333pt;}
.yc6{bottom:736.660000pt;}
.y165{bottom:737.792000pt;}
.y194{bottom:739.572000pt;}
.y89{bottom:742.225333pt;}
.y14a{bottom:742.713333pt;}
.y23{bottom:743.976000pt;}
.y164{bottom:751.074667pt;}
.y12e{bottom:751.109333pt;}
.y10a{bottom:751.121333pt;}
.y5a{bottom:752.556000pt;}
.y193{bottom:752.856000pt;}
.yc5{bottom:754.725333pt;}
.y86{bottom:758.454667pt;}
.y22{bottom:762.041333pt;}
.y1ca{bottom:762.426667pt;}
.ye9{bottom:762.617333pt;}
.y42{bottom:762.805333pt;}
.y163{bottom:764.358667pt;}
.y1c2{bottom:765.564000pt;}
.y192{bottom:766.140000pt;}
.y12d{bottom:769.174667pt;}
.y109{bottom:769.186667pt;}
.y88{bottom:771.389333pt;}
.y149{bottom:772.733333pt;}
.yc4{bottom:772.790667pt;}
.y6{bottom:774.630667pt;}
.y87{bottom:775.374667pt;}
.y162{bottom:777.642667pt;}
.y191{bottom:779.422667pt;}
.y21{bottom:780.106667pt;}
.ye8{bottom:780.682667pt;}
.y59{bottom:784.692000pt;}
.y12c{bottom:787.241333pt;}
.yc3{bottom:790.857333pt;}
.y161{bottom:790.925333pt;}
.y1c9{bottom:792.446667pt;}
.y190{bottom:792.706667pt;}
.y41{bottom:792.826667pt;}
.y1c1{bottom:795.585333pt;}
.y108{bottom:796.644000pt;}
.y85{bottom:797.218667pt;}
.y20{bottom:798.172000pt;}
.y160{bottom:804.209333pt;}
.y12b{bottom:805.306667pt;}
.y18f{bottom:805.990667pt;}
.y148{bottom:806.545333pt;}
.ye7{bottom:808.600000pt;}
.yc2{bottom:808.922667pt;}
.y84{bottom:811.058667pt;}
.y83{bottom:815.284000pt;}
.y1f{bottom:816.237333pt;}
.y15f{bottom:817.493333pt;}
.y18e{bottom:819.273333pt;}
.y1c8{bottom:822.468000pt;}
.y40{bottom:822.848000pt;}
.y12a{bottom:823.372000pt;}
.y58{bottom:823.637333pt;}
.y1c0{bottom:825.605333pt;}
.yc1{bottom:826.988000pt;}
.y5{bottom:828.966667pt;}
.y15e{bottom:830.776000pt;}
.y18d{bottom:832.557333pt;}
.y1e{bottom:834.304000pt;}
.y107{bottom:834.600000pt;}
.ye6{bottom:838.889333pt;}
.y129{bottom:841.437333pt;}
.y57{bottom:841.704000pt;}
.y3f{bottom:842.830667pt;}
.y1bf{bottom:843.670667pt;}
.y15d{bottom:844.060000pt;}
.yc0{bottom:845.053333pt;}
.y18c{bottom:845.840000pt;}
.y81{bottom:846.878667pt;}
.y1d{bottom:852.369333pt;}
.y1c7{bottom:852.489333pt;}
.y106{bottom:852.665333pt;}
.y3e{bottom:854.617333pt;}
.y4{bottom:856.242667pt;}
.y15c{bottom:857.344000pt;}
.y82{bottom:858.968000pt;}
.y18b{bottom:859.124000pt;}
.y128{bottom:859.502667pt;}
.y56{bottom:859.769333pt;}
.ybf{bottom:863.118667pt;}
.y7b{bottom:863.462667pt;}
.ye5{bottom:866.346667pt;}
.y7e{bottom:867.676000pt;}
.y1c{bottom:870.434667pt;}
.y15b{bottom:870.626667pt;}
.y1be{bottom:873.692000pt;}
.y7d{bottom:875.645333pt;}
.y80{bottom:876.397333pt;}
.y105{bottom:877.433333pt;}
.y127{bottom:877.569333pt;}
.ybe{bottom:881.185333pt;}
.y7f{bottom:881.268000pt;}
.y18a{bottom:882.036000pt;}
.y1c6{bottom:882.509333pt;}
.y7c{bottom:883.616000pt;}
.y15a{bottom:883.910667pt;}
.y1b{bottom:888.500000pt;}
.y55{bottom:889.789333pt;}
.y126{bottom:895.634667pt;}
.y3{bottom:896.657333pt;}
.y159{bottom:897.193333pt;}
.ybd{bottom:899.250667pt;}
.y189{bottom:900.101333pt;}
.y1bd{bottom:903.713333pt;}
.ye4{bottom:905.292000pt;}
.y104{bottom:905.353333pt;}
.y1a{bottom:906.565333pt;}
.y158{bottom:910.477333pt;}
.y7a{bottom:910.885333pt;}
.y1c5{bottom:912.530667pt;}
.y125{bottom:913.700000pt;}
.y3d{bottom:914.406667pt;}
.ybc{bottom:917.316000pt;}
.y188{bottom:918.166667pt;}
.y54{bottom:919.810667pt;}
.y1bc{bottom:921.778667pt;}
.ye3{bottom:923.357333pt;}
.y157{bottom:923.761333pt;}
.y19{bottom:924.632000pt;}
.y2{bottom:925.881333pt;}
.y124{bottom:931.765333pt;}
.y3c{bottom:932.472000pt;}
.y103{bottom:933.273333pt;}
.ybb{bottom:935.381333pt;}
.y156{bottom:937.044000pt;}
.y79{bottom:938.342667pt;}
.y1c4{bottom:942.550667pt;}
.y18{bottom:942.697333pt;}
.y187{bottom:945.624000pt;}
.y1bb{bottom:949.236000pt;}
.y53{bottom:949.830667pt;}
.y3b{bottom:950.538667pt;}
.ye2{bottom:953.378667pt;}
.yba{bottom:953.446667pt;}
.y1{bottom:955.105333pt;}
.y17{bottom:960.762667pt;}
.y102{bottom:961.193333pt;}
.y52{bottom:967.897333pt;}
.y155{bottom:971.226667pt;}
.y1c3{bottom:972.554667pt;}
.y186{bottom:974.569333pt;}
.y78{bottom:977.288000pt;}
.yb9{bottom:978.809333pt;}
.y16{bottom:978.828000pt;}
.y3a{bottom:981.284000pt;}
.ye1{bottom:983.398667pt;}
.y51{bottom:985.962667pt;}
.y77{bottom:995.354667pt;}
.y1ba{bottom:1000.136000pt;}
.y76{bottom:1009.548000pt;}
.y15{bottom:1011.294667pt;}
.y39{bottom:1013.420000pt;}
.yb8{bottom:1015.385333pt;}
.y75{bottom:1023.697333pt;}
.hd{height:2.125355pt;}
.h1d{height:21.551241pt;}
.h4{height:29.499997pt;}
.h1c{height:35.549121pt;}
.h6{height:39.850400pt;}
.ha{height:41.658217pt;}
.h7{height:43.636400pt;}
.h9{height:44.632747pt;}
.h16{height:46.429355pt;}
.h5{height:47.820800pt;}
.h12{height:49.075084pt;}
.he{height:49.542663pt;}
.h14{height:50.147084pt;}
.h10{height:50.614663pt;}
.h3{height:52.635997pt;}
.h8{height:53.559147pt;}
.h15{height:62.129330pt;}
.h2{height:64.270827pt;}
.hf{height:78.689330pt;}
.h13{height:80.107997pt;}
.h17{height:82.996400pt;}
.h18{height:83.545733pt;}
.hb{height:86.257330pt;}
.h1b{height:89.791067pt;}
.h1a{height:94.248021pt;}
.hc{height:111.432021pt;}
.h11{height:112.493355pt;}
.h19{height:118.216021pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x92{left:71.464000pt;}
.x91{left:76.334667pt;}
.x5d{left:92.786667pt;}
.xc{left:94.488000pt;}
.x99{left:95.417333pt;}
.x8a{left:97.121333pt;}
.x5{left:98.178667pt;}
.x84{left:101.502667pt;}
.x77{left:102.458667pt;}
.x76{left:108.588000pt;}
.x85{left:110.310667pt;}
.x17{left:112.266667pt;}
.x18{left:115.276000pt;}
.x2{left:117.709333pt;}
.x68{left:120.164000pt;}
.x89{left:123.272000pt;}
.x88{left:124.386667pt;}
.x1f{left:126.589333pt;}
.xa{left:129.297333pt;}
.x9{left:130.346667pt;}
.x1{left:133.546667pt;}
.x2b{left:136.966667pt;}
.x48{left:138.258667pt;}
.x5c{left:141.225333pt;}
.x5e{left:142.529333pt;}
.x86{left:145.354667pt;}
.x3b{left:147.054667pt;}
.x8{left:150.777333pt;}
.x49{left:155.145333pt;}
.x4a{left:160.914667pt;}
.x3c{left:164.316000pt;}
.x2c{left:170.648000pt;}
.x4b{left:171.824000pt;}
.x7e{left:173.036000pt;}
.x2d{left:182.260000pt;}
.x2e{left:188.725333pt;}
.x5f{left:198.082667pt;}
.x3d{left:204.217333pt;}
.x69{left:213.766667pt;}
.x8c{left:218.138667pt;}
.x93{left:219.245333pt;}
.x8b{left:224.260000pt;}
.x6a{left:229.248000pt;}
.x94{left:237.830667pt;}
.x95{left:243.548000pt;}
.x7b{left:248.973333pt;}
.x1b{left:261.257333pt;}
.x6b{left:263.933333pt;}
.x24{left:267.360000pt;}
.x78{left:269.580000pt;}
.x1c{left:272.550667pt;}
.x1d{left:278.246667pt;}
.x1e{left:283.498667pt;}
.x40{left:286.252000pt;}
.x14{left:287.385333pt;}
.x36{left:292.113333pt;}
.x3{left:294.834667pt;}
.x7c{left:302.362667pt;}
.x96{left:304.214667pt;}
.x15{left:305.250667pt;}
.x11{left:307.572000pt;}
.x42{left:309.012000pt;}
.x16{left:312.522667pt;}
.x12{left:314.844000pt;}
.x70{left:320.156000pt;}
.x50{left:322.281333pt;}
.x13{left:323.985333pt;}
.x6e{left:325.434667pt;}
.x80{left:331.124000pt;}
.x6{left:332.014667pt;}
.x4c{left:333.753333pt;}
.x6f{left:336.893333pt;}
.x98{left:341.572000pt;}
.x4{left:343.069333pt;}
.x97{left:344.049333pt;}
.x81{left:346.584000pt;}
.x51{left:349.350667pt;}
.x75{left:353.848000pt;}
.x37{left:355.218667pt;}
.x47{left:364.628000pt;}
.x7{left:367.833333pt;}
.x39{left:369.941333pt;}
.x26{left:371.897333pt;}
.x41{left:372.920000pt;}
.x38{left:376.693333pt;}
.x25{left:380.996000pt;}
.x28{left:385.920000pt;}
.x87{left:389.577333pt;}
.x27{left:392.088000pt;}
.xb{left:393.214667pt;}
.x2f{left:396.794667pt;}
.x29{left:407.530667pt;}
.x60{left:411.812000pt;}
.x9a{left:413.745333pt;}
.xd{left:416.052000pt;}
.xe{left:423.325333pt;}
.xf{left:433.192000pt;}
.x71{left:436.394667pt;}
.x10{left:440.464000pt;}
.x43{left:447.080000pt;}
.x61{left:450.684000pt;}
.x19{left:458.484000pt;}
.x72{left:459.492000pt;}
.x57{left:460.972000pt;}
.x7f{left:467.781333pt;}
.x7d{left:469.484000pt;}
.x2a{left:472.301333pt;}
.x1a{left:473.396000pt;}
.x79{left:474.496000pt;}
.x3a{left:477.722667pt;}
.x62{left:479.176000pt;}
.x3e{left:481.952000pt;}
.x8f{left:487.580000pt;}
.x3f{left:499.173333pt;}
.x30{left:500.352000pt;}
.x58{left:503.381333pt;}
.x63{left:505.254667pt;}
.x73{left:507.836000pt;}
.x64{left:509.294667pt;}
.x59{left:510.800000pt;}
.x5a{left:514.840000pt;}
.x74{left:522.818667pt;}
.x9b{left:528.688000pt;}
.x90{left:531.761333pt;}
.x31{left:536.089333pt;}
.x34{left:544.890667pt;}
.x35{left:552.162667pt;}
.x8d{left:571.625333pt;}
.x65{left:579.230667pt;}
.x20{left:580.433333pt;}
.x7a{left:584.924000pt;}
.x8e{left:590.210667pt;}
.x21{left:591.726667pt;}
.x22{left:597.496000pt;}
.x23{left:602.749333pt;}
.x32{left:614.088000pt;}
.x6c{left:632.362667pt;}
.x44{left:633.369333pt;}
.x66{left:635.262667pt;}
.x67{left:639.302667pt;}
.x52{left:642.269333pt;}
.x33{left:643.846667pt;}
.x45{left:650.206667pt;}
.x6d{left:651.309333pt;}
.x46{left:655.458667pt;}
.x53{left:663.569333pt;}
.x5b{left:665.688000pt;}
.x4d{left:666.748000pt;}
.x54{left:670.034667pt;}
.x4e{left:672.518667pt;}
.x55{left:684.870667pt;}
.x82{left:688.936000pt;}
.x56{left:692.144000pt;}
.x4f{left:695.144000pt;}
.x83{left:697.274667pt;}
}




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