
    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_b70121965206cdab69ae9ba6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_681a81949ca361bba7aa55c7.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_14a9cb43411897c6d189adac.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_508e05a4788e5a0cc7e1af12.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.011000;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_00ff13fa43c901281c5c4019.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.734000;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_4724a965f49415787cc499f9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736000;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_673fe8c49f0b0680284419ed.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.660000;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_6f151561a78cb30e4e227b87.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.885000;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_f42ed94387ccc78626aca657.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900000;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_2f626ca1e3dce59114da25f8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.014160;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_dfc4c651531e8e1af817b925.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006348;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_e6b43cd59aa72634cff01bd0.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.021484;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_af89005fc7cf82ecf9ae4f57.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_8c9675db0d110e541c80ce95.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.021484;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_c67ab92503e2fe0648cc1943.woff2')format("woff");}.fff{font-family:fff;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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_cb475bfbb24865533b2fd664.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.014160;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_7c2b1a9bf9c2ee00d400cbd5.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.006348;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_150ddf6c93ac031cd0993888.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.021484;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_d79b00463d6aca44309ef77e.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_b99310bba5504747566c87e5.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.021484;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_48bc24191b784ac8177d63c4.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_cb475bfbb24865533b2fd664.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.014160;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_7c2b1a9bf9c2ee00d400cbd5.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_38066722cc536890ffe067d0.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.021484;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_d79b00463d6aca44309ef77e.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_b99310bba5504747566c87e5.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.021484;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:ff1b;src:url('chunks/assets/font_48bc24191b784ac8177d63c4.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_15a25848b1efae9d2792ae69.woff2')format("woff");}.ff1c{font-family:ff1c;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;}
.m2{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);}
.m1b{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);}
.m1c{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);}
.m1{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);}
.m13{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);}
.mc{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);}
.m1f{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);}
.m18{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);}
.m6{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);}
.m1d{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);}
.m5{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);}
.m7{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);}
.m20{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);}
.m22{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);}
.m15{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);}
.m3{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);}
.m17{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);}
.me{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);}
.ma{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);}
.m1e{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);}
.m19{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);}
.m10{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);}
.m9{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);}
.m24{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);}
.m11{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);}
.m21{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);}
.mf{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);}
.md{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);}
.m25{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);}
.m8{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);}
.m23{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);}
.m16{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);}
.m1a{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);}
.m12{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);}
.m4{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);}
.mb{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:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.120000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:32.880000px;}
.ls26{letter-spacing:-0.792000px;}
.ls22{letter-spacing:-0.666000px;}
.lsf{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.259800px;}
.ls23{letter-spacing:-0.126000px;}
.ls17{letter-spacing:-0.041760px;}
.ls25{letter-spacing:-0.000001px;}
.ls5{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.000239px;}
.ls30{letter-spacing:0.000800px;}
.ls28{letter-spacing:0.000845px;}
.ls1{letter-spacing:0.002074px;}
.lse{letter-spacing:0.004660px;}
.ls31{letter-spacing:0.004800px;}
.ls1f{letter-spacing:0.018000px;}
.ls12{letter-spacing:0.110400px;}
.ls20{letter-spacing:0.174000px;}
.ls15{letter-spacing:0.175200px;}
.lsc{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.198000px;}
.ls13{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.306000px;}
.ls9{letter-spacing:0.324000px;}
.lsa{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.490800px;}
.ls14{letter-spacing:0.612000px;}
.ls2a{letter-spacing:0.648088px;}
.ls19{letter-spacing:1.178159px;}
.ls6{letter-spacing:1.275394px;}
.ls37{letter-spacing:1.279050px;}
.ls18{letter-spacing:1.417699px;}
.ls3{letter-spacing:1.861130px;}
.ls1d{letter-spacing:6.660000px;}
.ls1e{letter-spacing:6.727680px;}
.ls4{letter-spacing:11.954850px;}
.ls2d{letter-spacing:12.227951px;}
.ls36{letter-spacing:13.383402px;}
.ls38{letter-spacing:13.386221px;}
.ls29{letter-spacing:13.448400px;}
.ls2b{letter-spacing:13.454400px;}
.ls34{letter-spacing:13.458563px;}
.ls32{letter-spacing:13.499247px;}
.ls3a{letter-spacing:13.502207px;}
.ls2e{letter-spacing:13.580703px;}
.ls1b{letter-spacing:13.664113px;}
.ls1c{letter-spacing:14.634470px;}
.ls33{letter-spacing:14.668047px;}
.lsd{letter-spacing:14.944660px;}
.ls2c{letter-spacing:16.409224px;}
.ls39{letter-spacing:16.538635px;}
.ls27{letter-spacing:17.949839px;}
.ls35{letter-spacing:18.362165px;}
.ls2f{letter-spacing:18.703341px;}
.ls0{letter-spacing:70.236600px;}
.ls21{letter-spacing:70.668000px;}
.ls2{letter-spacing:72.353510px;}
.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;}
}
.ws0{word-spacing:-110.285406px;}
.ws6c{word-spacing:-45.088735px;}
.ws55{word-spacing:-40.580133px;}
.ws7d{word-spacing:-36.071079px;}
.ws27{word-spacing:-15.552000px;}
.ws29{word-spacing:-15.430800px;}
.ws22{word-spacing:-15.300000px;}
.ws26{word-spacing:-15.199800px;}
.ws28{word-spacing:-15.115200px;}
.ws25{word-spacing:-15.050400px;}
.ws32{word-spacing:-14.943900px;}
.ws24{word-spacing:-14.940000px;}
.ws2a{word-spacing:-14.898240px;}
.ws23{word-spacing:-14.680200px;}
.ws88{word-spacing:-13.860000px;}
.ws83{word-spacing:-13.806000px;}
.ws21{word-spacing:-13.500000px;}
.ws86{word-spacing:-13.499999px;}
.ws54{word-spacing:-13.449600px;}
.ws84{word-spacing:-13.374000px;}
.ws85{word-spacing:-13.212000px;}
.ws89{word-spacing:-13.140000px;}
.ws87{word-spacing:-12.708000px;}
.ws1f{word-spacing:-12.060000px;}
.ws1d{word-spacing:-11.955150px;}
.ws20{word-spacing:-11.700000px;}
.ws3{word-spacing:-11.357400px;}
.ws3f{word-spacing:-2.929004px;}
.ws9d{word-spacing:-2.851315px;}
.ws6f{word-spacing:-2.689902px;}
.ws74{word-spacing:-2.510575px;}
.wsa7{word-spacing:-2.259533px;}
.wsd{word-spacing:-2.151922px;}
.ws4c{word-spacing:-1.972595px;}
.ws14{word-spacing:-1.912819px;}
.ws7{word-spacing:-1.908367px;}
.ws6e{word-spacing:-1.853044px;}
.ws40{word-spacing:-1.793268px;}
.ws63{word-spacing:-1.733492px;}
.wsa3{word-spacing:-1.721549px;}
.ws36{word-spacing:-1.673717px;}
.wsc6{word-spacing:-1.667750px;}
.wsb6{word-spacing:-1.613952px;}
.wsf{word-spacing:-1.613941px;}
.ws6{word-spacing:-1.322630px;}
.ws80{word-spacing:-1.255288px;}
.wsb7{word-spacing:-1.237363px;}
.ws1b{word-spacing:-1.195512px;}
.ws51{word-spacing:-1.135736px;}
.ws34{word-spacing:-1.016185px;}
.ws9{word-spacing:-0.956410px;}
.wsce{word-spacing:-0.914573px;}
.wsb5{word-spacing:-0.860774px;}
.wsa{word-spacing:-0.836858px;}
.ws19{word-spacing:-0.777083px;}
.wsc4{word-spacing:-0.484186px;}
.ws62{word-spacing:-0.418429px;}
.ws4e{word-spacing:-0.298878px;}
.wse4{word-spacing:-0.268992px;}
.ws18{word-spacing:-0.239102px;}
.wsb0{word-spacing:-0.215194px;}
.ws37{word-spacing:-0.179327px;}
.wsab{word-spacing:-0.161395px;}
.ws69{word-spacing:-0.126043px;}
.ws1a{word-spacing:-0.119551px;}
.ws2e{word-spacing:-0.107597px;}
.ws35{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws1e{word-spacing:-0.047821px;}
.ws2{word-spacing:-0.005058px;}
.ws6b{word-spacing:-0.002322px;}
.ws33{word-spacing:-0.001991px;}
.ws7c{word-spacing:-0.001200px;}
.ws1{word-spacing:0.000000px;}
.ws98{word-spacing:0.053798px;}
.ws13{word-spacing:0.059776px;}
.wsa5{word-spacing:0.107597px;}
.wsb{word-spacing:0.119551px;}
.ws9b{word-spacing:0.161395px;}
.ws5f{word-spacing:0.179327px;}
.wsae{word-spacing:0.215194px;}
.ws8{word-spacing:0.239102px;}
.ws7b{word-spacing:0.286924px;}
.ws17{word-spacing:0.298878px;}
.wsda{word-spacing:0.322790px;}
.ws16{word-spacing:0.358654px;}
.ws50{word-spacing:0.418429px;}
.wse{word-spacing:0.478205px;}
.wsa0{word-spacing:0.537984px;}
.wsdd{word-spacing:0.699379px;}
.ws73{word-spacing:0.717307px;}
.ws3e{word-spacing:0.836858px;}
.wsc7{word-spacing:0.914573px;}
.ws9f{word-spacing:0.968371px;}
.ws64{word-spacing:1.075961px;}
.wsdb{word-spacing:1.129766px;}
.wsc9{word-spacing:1.237363px;}
.ws75{word-spacing:1.434614px;}
.ws2d{word-spacing:1.452557px;}
.ws65{word-spacing:1.554166px;}
.ws67{word-spacing:1.613941px;}
.wsd7{word-spacing:1.667750px;}
.ws97{word-spacing:1.775347px;}
.ws49{word-spacing:1.793268px;}
.ws7e{word-spacing:2.032370px;}
.ws38{word-spacing:2.301276px;}
.wsb2{word-spacing:2.313331px;}
.ws3a{word-spacing:2.331248px;}
.wsdf{word-spacing:2.420928px;}
.wsc1{word-spacing:2.474726px;}
.ws41{word-spacing:2.570351px;}
.ws76{word-spacing:2.689902px;}
.ws96{word-spacing:2.869229px;}
.wsb4{word-spacing:2.958912px;}
.ws45{word-spacing:2.988780px;}
.ws43{word-spacing:3.048556px;}
.wse1{word-spacing:3.066509px;}
.ws4b{word-spacing:3.168107px;}
.wse6{word-spacing:3.225667px;}
.wsa1{word-spacing:3.226243px;}
.ws99{word-spacing:3.226253px;}
.ws15{word-spacing:3.227882px;}
.ws5{word-spacing:3.227904px;}
.wsaf{word-spacing:3.228029px;}
.ws66{word-spacing:3.407209px;}
.ws10{word-spacing:3.586536px;}
.ws7f{word-spacing:3.646312px;}
.wscb{word-spacing:3.658291px;}
.ws68{word-spacing:3.765863px;}
.wsd1{word-spacing:3.873485px;}
.wsa9{word-spacing:3.981082px;}
.wsbd{word-spacing:4.142477px;}
.ws90{word-spacing:4.303872px;}
.wsb1{word-spacing:4.411469px;}
.ws8d{word-spacing:4.465267px;}
.ws8b{word-spacing:4.519066px;}
.wsdc{word-spacing:4.572864px;}
.ws8a{word-spacing:4.841856px;}
.wsd3{word-spacing:4.895654px;}
.ws61{word-spacing:4.901599px;}
.wse5{word-spacing:4.949453px;}
.ws48{word-spacing:5.260253px;}
.wsbe{word-spacing:5.272243px;}
.ws42{word-spacing:5.499355px;}
.ws47{word-spacing:5.559131px;}
.ws30{word-spacing:5.678682px;}
.ws95{word-spacing:5.977560px;}
.wsb9{word-spacing:6.133018px;}
.wsc3{word-spacing:6.402010px;}
.ws6d{word-spacing:6.515540px;}
.wsd8{word-spacing:6.724800px;}
.ws4a{word-spacing:7.113296px;}
.ws71{word-spacing:7.591501px;}
.ws60{word-spacing:7.770828px;}
.wsc{word-spacing:7.950155px;}
.ws3c{word-spacing:8.727238px;}
.ws3b{word-spacing:9.026116px;}
.wsbc{word-spacing:9.199526px;}
.wsb8{word-spacing:9.468518px;}
.ws72{word-spacing:9.564096px;}
.ws4f{word-spacing:9.743423px;}
.ws3d{word-spacing:9.982525px;}
.ws2c{word-spacing:10.167898px;}
.wsca{word-spacing:10.329293px;}
.ws9e{word-spacing:10.544486px;}
.wscf{word-spacing:10.598285px;}
.ws2b{word-spacing:10.652083px;}
.ws12{word-spacing:10.819384px;}
.ws5e{word-spacing:11.429123px;}
.ws1c{word-spacing:11.903953px;}
.ws70{word-spacing:12.180155px;}
.wse3{word-spacing:12.965414px;}
.wsd4{word-spacing:13.180608px;}
.wsd0{word-spacing:13.342003px;}
.wsaa{word-spacing:13.386230px;}
.wsc0{word-spacing:13.390291px;}
.ws52{word-spacing:13.392557px;}
.wsa8{word-spacing:13.393008px;}
.wsa4{word-spacing:13.394995px;}
.wsac{word-spacing:13.395802px;}
.ws77{word-spacing:13.398557px;}
.wse2{word-spacing:13.449600px;}
.wsa6{word-spacing:13.503398px;}
.ws81{word-spacing:13.606686px;}
.wsde{word-spacing:14.095181px;}
.ws82{word-spacing:14.574520px;}
.ws6a{word-spacing:14.784879px;}
.wsad{word-spacing:14.794560px;}
.ws2f{word-spacing:14.884124px;}
.ws46{word-spacing:14.886482px;}
.wse0{word-spacing:15.816730px;}
.ws94{word-spacing:16.079636px;}
.ws91{word-spacing:16.085722px;}
.wsd5{word-spacing:16.569907px;}
.wscd{word-spacing:16.616506px;}
.ws9a{word-spacing:16.617878px;}
.wsa2{word-spacing:16.619030px;}
.wsd6{word-spacing:16.619770px;}
.wsd9{word-spacing:16.620518px;}
.wsbf{word-spacing:16.620634px;}
.ws9c{word-spacing:16.623706px;}
.wsbb{word-spacing:16.625482px;}
.wsc5{word-spacing:16.677504px;}
.wscc{word-spacing:16.731302px;}
.wsba{word-spacing:16.892698px;}
.ws5c{word-spacing:17.071954px;}
.ws39{word-spacing:17.200324px;}
.ws92{word-spacing:17.269286px;}
.wsc2{word-spacing:17.376883px;}
.ws8c{word-spacing:17.894863px;}
.ws8e{word-spacing:17.898440px;}
.ws8f{word-spacing:17.898674px;}
.ws44{word-spacing:17.906206px;}
.ws11{word-spacing:18.470660px;}
.ws93{word-spacing:18.948865px;}
.wsc8{word-spacing:19.851610px;}
.ws31{word-spacing:20.576794px;}
.ws4d{word-spacing:22.654952px;}
.wsb3{word-spacing:24.047885px;}
.wsd2{word-spacing:28.728346px;}
.ws5d{word-spacing:32.518008px;}
.ws78{word-spacing:119.701440px;}
.ws53{word-spacing:150.312730px;}
.ws79{word-spacing:176.522698px;}
.ws57{word-spacing:196.955942px;}
.ws56{word-spacing:211.360906px;}
.ws59{word-spacing:220.465843px;}
.ws58{word-spacing:220.720387px;}
.ws7a{word-spacing:226.447229px;}
.ws5b{word-spacing:254.089843px;}
.ws5a{word-spacing:295.891200px;}
._3b{margin-left:-7.908365px;}
._3{margin-left:-6.907210px;}
._2{margin-left:-4.951594px;}
._18{margin-left:-3.864932px;}
._6{margin-left:-2.131440px;}
._1{margin-left:-1.001155px;}
._7{width:1.091170px;}
._0{width:3.003412px;}
._13{width:5.004830px;}
._15{width:6.011269px;}
._36{width:7.029168px;}
._14{width:8.099775px;}
._d{width:9.182145px;}
._f{width:10.632000px;}
._10{width:11.720541px;}
._4{width:13.449600px;}
._9{width:14.549734px;}
._5{width:16.677504px;}
._8{width:18.211076px;}
._a{width:20.024826px;}
._37{width:21.137465px;}
._16{width:22.140636px;}
._1a{width:23.910240px;}
._35{width:25.354088px;}
._17{width:26.367997px;}
._19{width:28.094532px;}
._2d{width:29.676105px;}
._3c{width:31.865858px;}
._2f{width:33.713438px;}
._39{width:35.076557px;}
._2a{width:37.049768px;}
._2e{width:38.663844px;}
._3d{width:40.634998px;}
._30{width:41.783144px;}
._11{width:45.760670px;}
._12{width:48.883850px;}
._38{width:51.433411px;}
._2c{width:60.875624px;}
._2b{width:66.422813px;}
._3a{width:68.004151px;}
._34{width:142.780954px;}
._31{width:175.759373px;}
._22{width:211.051123px;}
._29{width:212.404224px;}
._26{width:225.303350px;}
._33{width:236.605363px;}
._28{width:238.602518px;}
._21{width:242.827219px;}
._32{width:294.244464px;}
._25{width:301.055846px;}
._23{width:314.505446px;}
._1f{width:324.565747px;}
._20{width:370.396618px;}
._27{width:372.130320px;}
._24{width:383.367398px;}
._1c{width:443.944397px;}
._1d{width:562.483286px;}
._1e{width:612.817574px;}
._b{width:829.595969px;}
._e{width:1629.840000px;}
._c{width:2085.315000px;}
._1b{width:3565.005000px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(54,44,83);}
.fsf{font-size:33.120000px;}
.fsd{font-size:35.865600px;}
.fse{font-size:38.256600px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs11{font-size:43.038600px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:48.240000px;}
.fs5{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fs10{font-size:56.058000px;}
.fsc{font-size:59.760000px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:141.755020px;}
.y2e{bottom:-871.758000px;}
.y52{bottom:-806.778000px;}
.y10e{bottom:-787.375500px;}
.y51{bottom:-768.444000px;}
.y126{bottom:-753.175500px;}
.y50{bottom:-748.284000px;}
.y125{bottom:-733.735500px;}
.y4f{bottom:-727.944000px;}
.y4e{bottom:-707.784000px;}
.y124{bottom:-704.575500px;}
.y4d{bottom:-687.444000px;}
.y4c{bottom:-667.284000px;}
.y123{bottom:-666.961500px;}
.y4b{bottom:-647.124000px;}
.y122{bottom:-639.781500px;}
.y4a{bottom:-626.784000px;}
.y121{bottom:-621.601500px;}
.y49{bottom:-606.579000px;}
.y120{bottom:-594.421500px;}
.y48{bottom:-586.239000px;}
.y12a{bottom:-584.935500px;}
.y11f{bottom:-566.701500px;}
.y47{bottom:-566.079000px;}
.y142{bottom:-550.735500px;}
.y11e{bottom:-546.541500px;}
.y46{bottom:-545.739000px;}
.y141{bottom:-531.295500px;}
.y11d{bottom:-526.156500px;}
.y45{bottom:-525.579000px;}
.y11c{bottom:-505.996500px;}
.y140{bottom:-502.135500px;}
.y44{bottom:-496.419000px;}
.y11b{bottom:-485.836500px;}
.y11a{bottom:-465.496500px;}
.y13f{bottom:-464.521500px;}
.y43{bottom:-457.899000px;}
.y119{bottom:-445.336500px;}
.y13e{bottom:-437.341500px;}
.y118{bottom:-424.996500px;}
.y42{bottom:-419.919000px;}
.y13d{bottom:-419.161500px;}
.y117{bottom:-404.836500px;}
.y41{bottom:-399.579000px;}
.y13c{bottom:-391.981500px;}
.y40{bottom:-379.419000px;}
.y116{bottom:-375.316500px;}
.y13b{bottom:-364.261500px;}
.y3f{bottom:-359.079000px;}
.y13a{bottom:-344.101500px;}
.y3e{bottom:-338.889000px;}
.y115{bottom:-337.696500px;}
.y139{bottom:-323.716500px;}
.y3d{bottom:-318.729000px;}
.y114{bottom:-318.256500px;}
.y138{bottom:-303.556500px;}
.y113{bottom:-298.636500px;}
.y3c{bottom:-298.389000px;}
.y137{bottom:-283.396500px;}
.y112{bottom:-279.196500px;}
.y3b{bottom:-278.229000px;}
.y136{bottom:-263.056500px;}
.y111{bottom:-259.756500px;}
.y3a{bottom:-257.889000px;}
.y135{bottom:-242.896500px;}
.y110{bottom:-240.106500px;}
.y39{bottom:-237.729000px;}
.y134{bottom:-222.556500px;}
.y38{bottom:-217.389000px;}
.y10f{bottom:-210.406500px;}
.y133{bottom:-202.396500px;}
.y37{bottom:-197.229000px;}
.y36{bottom:-177.069000px;}
.y132{bottom:-172.876500px;}
.y35{bottom:-156.729000px;}
.y131{bottom:-135.256500px;}
.y34{bottom:-127.569000px;}
.y130{bottom:-115.816500px;}
.y12f{bottom:-96.196500px;}
.y33{bottom:-89.589000px;}
.y12e{bottom:-76.756500px;}
.y32{bottom:-70.104000px;}
.y12d{bottom:-57.316500px;}
.y31{bottom:-50.664000px;}
.y12c{bottom:-37.666500px;}
.y30{bottom:-31.044000px;}
.y12b{bottom:-7.966500px;}
.y2f{bottom:-3.504000px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.425340px;}
.ye{bottom:14.151273px;}
.y2{bottom:16.933071px;}
.y2a{bottom:63.780000px;}
.y16c{bottom:109.266000px;}
.y77{bottom:119.604000px;}
.yf0{bottom:119.863500px;}
.y19f{bottom:128.325000px;}
.y16b{bottom:128.634000px;}
.y76{bottom:139.867500px;}
.yef{bottom:140.128500px;}
.y19e{bottom:147.691500px;}
.y16a{bottom:148.000500px;}
.yed{bottom:160.392000px;}
.yee{bottom:165.817500px;}
.y19d{bottom:167.059500px;}
.y169{bottom:167.368500px;}
.y75{bottom:169.098000px;}
.yec{bottom:180.657000px;}
.y19c{bottom:186.427500px;}
.y168{bottom:186.735000px;}
.yeb{bottom:200.920500px;}
.y74{bottom:203.917500px;}
.y19b{bottom:205.794000px;}
.y167{bottom:206.103000px;}
.y29{bottom:219.018000px;}
.yea{bottom:221.184000px;}
.y73{bottom:224.181000px;}
.y19a{bottom:225.162000px;}
.y166{bottom:225.471000px;}
.y127{bottom:230.596500px;}
.y2d{bottom:235.206000px;}
.y28{bottom:239.281500px;}
.ya0{bottom:240.642000px;}
.ye9{bottom:241.449000px;}
.y72{bottom:244.446000px;}
.y199{bottom:244.528500px;}
.y165{bottom:244.837500px;}
.y10c{bottom:253.026000px;}
.yc3{bottom:253.981500px;}
.y27{bottom:259.545000px;}
.y9f{bottom:260.905500px;}
.ye8{bottom:261.712500px;}
.y198{bottom:263.896500px;}
.y164{bottom:264.205500px;}
.y71{bottom:264.709500px;}
.yc2{bottom:268.177500px;}
.y26{bottom:279.810000px;}
.y9e{bottom:281.170500px;}
.ye7{bottom:281.977500px;}
.yc1{bottom:282.375000px;}
.y197{bottom:283.264500px;}
.y163{bottom:283.572000px;}
.y70{bottom:284.974500px;}
.y1a2{bottom:289.048500px;}
.ybf{bottom:296.571000px;}
.y25{bottom:300.073500px;}
.yc0{bottom:300.910500px;}
.y9d{bottom:301.434000px;}
.ye6{bottom:302.241000px;}
.y196{bottom:302.631000px;}
.y162{bottom:302.940000px;}
.y6f{bottom:305.238000px;}
.y1a1{bottom:308.416500px;}
.ybc{bottom:318.273000px;}
.y10d{bottom:319.588500px;}
.y24{bottom:320.338500px;}
.y9b{bottom:321.699000px;}
.y195{bottom:321.999000px;}
.y161{bottom:322.308000px;}
.ye5{bottom:322.504500px;}
.y6e{bottom:325.501500px;}
.y9c{bottom:327.123000px;}
.y1a0{bottom:327.783000px;}
.ybb{bottom:334.710000px;}
.y23{bottom:340.602000px;}
.y194{bottom:341.367000px;}
.y160{bottom:341.674500px;}
.y9a{bottom:341.962500px;}
.ye4{bottom:342.769500px;}
.ybe{bottom:342.930000px;}
.y6d{bottom:345.766500px;}
.yb8{bottom:351.148500px;}
.ybd{bottom:359.368500px;}
.y193{bottom:360.733500px;}
.y22{bottom:360.865500px;}
.y15f{bottom:361.042500px;}
.ye3{bottom:363.033000px;}
.y6c{bottom:366.030000px;}
.yba{bottom:367.587000px;}
.y99{bottom:371.193000px;}
.y192{bottom:380.101500px;}
.y15d{bottom:380.409000px;}
.y15e{bottom:380.410500px;}
.y21{bottom:381.130500px;}
.ye2{bottom:383.298000px;}
.yb9{bottom:384.025500px;}
.y6b{bottom:386.295000px;}
.y191{bottom:399.468000px;}
.y15c{bottom:399.777000px;}
.y20{bottom:401.394000px;}
.ye1{bottom:403.561500px;}
.y98{bottom:406.012500px;}
.y6a{bottom:406.558500px;}
.yb7{bottom:407.667000px;}
.y190{bottom:418.836000px;}
.y15b{bottom:419.145000px;}
.y1f{bottom:421.659000px;}
.ye0{bottom:423.825000px;}
.yb6{bottom:424.105500px;}
.y97{bottom:426.276000px;}
.y69{bottom:426.822000px;}
.y18f{bottom:438.204000px;}
.y15a{bottom:438.511500px;}
.yb5{bottom:440.542500px;}
.y1e{bottom:441.922500px;}
.ydf{bottom:444.090000px;}
.y96{bottom:446.541000px;}
.y68{bottom:447.087000px;}
.yb4{bottom:456.981000px;}
.y18e{bottom:457.570500px;}
.y159{bottom:457.879500px;}
.y1d{bottom:462.186000px;}
.yde{bottom:464.353500px;}
.yae{bottom:465.201000px;}
.y95{bottom:466.804500px;}
.yb3{bottom:473.419500px;}
.y67{bottom:476.317500px;}
.y18d{bottom:476.938500px;}
.yad{bottom:481.639500px;}
.ydd{bottom:484.618500px;}
.y158{bottom:486.213000px;}
.y94{bottom:487.069500px;}
.yb2{bottom:489.858000px;}
.y1c{bottom:491.416500px;}
.y18c{bottom:496.305000px;}
.yb1{bottom:506.296500px;}
.y93{bottom:507.333000px;}
.y66{bottom:511.137000px;}
.ydc{bottom:513.847500px;}
.y18b{bottom:515.673000px;}
.y129{bottom:522.028500px;}
.yb0{bottom:522.735000px;}
.y157{bottom:525.664500px;}
.y1b{bottom:526.236000px;}
.y92{bottom:527.596500px;}
.y18a{bottom:535.041000px;}
.yaf{bottom:539.173500px;}
.y65{bottom:545.956500px;}
.y91{bottom:547.861500px;}
.ydb{bottom:548.667000px;}
.y156{bottom:549.829500px;}
.y189{bottom:554.407500px;}
.yac{bottom:562.813500px;}
.y155{bottom:565.027500px;}
.y64{bottom:566.220000px;}
.y90{bottom:568.125000px;}
.yda{bottom:568.932000px;}
.y10b{bottom:569.920500px;}
.yab{bottom:571.033500px;}
.y188{bottom:573.775500px;}
.y63{bottom:586.485000px;}
.y8f{bottom:588.390000px;}
.y154{bottom:589.192500px;}
.yd9{bottom:589.195500px;}
.y10a{bottom:590.185500px;}
.y187{bottom:593.142000px;}
.y1a{bottom:602.644500px;}
.yaa{bottom:602.893500px;}
.y62{bottom:606.748500px;}
.y8e{bottom:608.653500px;}
.yd8{bottom:609.460500px;}
.y109{bottom:610.449000px;}
.y186{bottom:612.510000px;}
.ya9{bottom:619.332000px;}
.y153{bottom:622.323000px;}
.y19{bottom:622.909500px;}
.y61{bottom:627.012000px;}
.ya6{bottom:627.550500px;}
.y8d{bottom:628.917000px;}
.yd7{bottom:629.724000px;}
.y108{bottom:630.714000px;}
.y185{bottom:631.878000px;}
.ya8{bottom:635.770500px;}
.y152{bottom:642.586500px;}
.y60{bottom:647.277000px;}
.yd6{bottom:649.987500px;}
.y107{bottom:650.977500px;}
.y184{bottom:651.244500px;}
.ya7{bottom:652.207500px;}
.y8c{bottom:658.147500px;}
.y18{bottom:661.105500px;}
.y151{bottom:662.851500px;}
.y5f{bottom:667.540500px;}
.yd5{bottom:670.252500px;}
.y183{bottom:670.612500px;}
.y106{bottom:671.241000px;}
.ya5{bottom:675.849000px;}
.y17{bottom:681.370500px;}
.y150{bottom:683.115000px;}
.ya4{bottom:684.067500px;}
.y5e{bottom:687.805500px;}
.y182{bottom:689.979000px;}
.yd4{bottom:690.516000px;}
.y105{bottom:691.506000px;}
.y8b{bottom:692.967000px;}
.y16{bottom:701.634000px;}
.y14f{bottom:703.380000px;}
.y5d{bottom:708.069000px;}
.y181{bottom:709.347000px;}
.yd3{bottom:710.781000px;}
.y104{bottom:711.769500px;}
.y8a{bottom:713.232000px;}
.ya3{bottom:716.002500px;}
.y15{bottom:721.897500px;}
.y14e{bottom:723.643500px;}
.y5c{bottom:728.332500px;}
.y180{bottom:728.715000px;}
.yd2{bottom:731.044500px;}
.y103{bottom:732.034500px;}
.y89{bottom:733.495500px;}
.y14{bottom:742.162500px;}
.y14d{bottom:743.907000px;}
.ya2{bottom:747.622500px;}
.y17f{bottom:748.081500px;}
.y5b{bottom:748.597500px;}
.yd1{bottom:751.308000px;}
.y88{bottom:753.759000px;}
.y13{bottom:762.426000px;}
.y14c{bottom:764.172000px;}
.y17e{bottom:767.449500px;}
.y5a{bottom:768.861000px;}
.yd0{bottom:771.573000px;}
.y87{bottom:774.024000px;}
.y102{bottom:775.162500px;}
.y12{bottom:782.691000px;}
.y14b{bottom:784.435500px;}
.y17d{bottom:786.816000px;}
.y59{bottom:789.126000px;}
.y100{bottom:789.358500px;}
.ycf{bottom:791.836500px;}
.y101{bottom:793.699500px;}
.y86{bottom:794.287500px;}
.ya1{bottom:798.445500px;}
.y11{bottom:802.954500px;}
.y17c{bottom:806.184000px;}
.y58{bottom:809.389500px;}
.yff{bottom:811.060500px;}
.yce{bottom:812.101500px;}
.y14a{bottom:813.666000px;}
.y85{bottom:814.552500px;}
.y10{bottom:823.218000px;}
.y17b{bottom:825.552000px;}
.yfe{bottom:827.499000px;}
.ycd{bottom:832.365000px;}
.y84{bottom:834.816000px;}
.y57{bottom:838.620000px;}
.yfd{bottom:843.936000px;}
.y17a{bottom:844.918500px;}
.y149{bottom:845.289000px;}
.yf6{bottom:852.156000px;}
.ycc{bottom:852.628500px;}
.y83{bottom:855.079500px;}
.yd{bottom:858.650964px;}
.yc{bottom:859.044000px;}
.yfc{bottom:860.374500px;}
.y179{bottom:864.286500px;}
.y148{bottom:864.522000px;}
.yf5{bottom:868.594500px;}
.y56{bottom:870.243000px;}
.ycb{bottom:872.893500px;}
.y82{bottom:875.344500px;}
.yf7{bottom:876.813000px;}
.y178{bottom:883.653000px;}
.y147{bottom:883.755000px;}
.yf4{bottom:885.033000px;}
.y55{bottom:889.476000px;}
.yca{bottom:893.157000px;}
.yfb{bottom:893.251500px;}
.y81{bottom:895.608000px;}
.yb{bottom:898.416000px;}
.yf3{bottom:901.471500px;}
.y145{bottom:902.988000px;}
.y177{bottom:903.021000px;}
.y146{bottom:907.870500px;}
.y54{bottom:908.709000px;}
.yfa{bottom:909.690000px;}
.yc9{bottom:913.422000px;}
.y80{bottom:915.873000px;}
.ya{bottom:916.573500px;}
.y144{bottom:922.221000px;}
.y176{bottom:922.389000px;}
.yf9{bottom:926.128500px;}
.y53{bottom:927.942000px;}
.yc8{bottom:933.685500px;}
.y7f{bottom:936.136500px;}
.y9{bottom:939.612000px;}
.y143{bottom:941.454000px;}
.y175{bottom:941.755500px;}
.yf8{bottom:942.567000px;}
.y2c{bottom:950.371500px;}
.y8{bottom:952.887000px;}
.yc7{bottom:953.949000px;}
.y174{bottom:961.123500px;}
.y128{bottom:963.883500px;}
.y7e{bottom:965.367000px;}
.yf2{bottom:966.282000px;}
.yc6{bottom:974.214000px;}
.y7{bottom:975.927000px;}
.y173{bottom:980.490000px;}
.yc5{bottom:994.477500px;}
.yf1{bottom:997.902000px;}
.y6{bottom:998.167500px;}
.y172{bottom:999.858000px;}
.y7d{bottom:1000.186500px;}
.yc4{bottom:1014.742500px;}
.y171{bottom:1019.226000px;}
.y7c{bottom:1035.006000px;}
.y170{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.y7b{bottom:1055.269500px;}
.y16f{bottom:1057.960500px;}
.y4{bottom:1071.244500px;}
.y7a{bottom:1075.534500px;}
.y16e{bottom:1077.327000px;}
.y79{bottom:1095.798000px;}
.y16d{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y78{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y2b{bottom:1168.366500px;}
.h9{height:25.508090px;}
.h22{height:26.110157px;}
.h26{height:27.524478px;}
.h7{height:30.461558px;}
.h1b{height:33.072749px;}
.hb{height:33.112997px;}
.h23{height:33.378779px;}
.ha{height:34.199443px;}
.h21{height:34.813397px;}
.hf{height:35.052500px;}
.h11{height:35.520469px;}
.h1a{height:37.551283px;}
.h19{height:38.734848px;}
.h8{height:39.165235px;}
.h15{height:39.418945px;}
.h1e{height:39.434227px;}
.h14{height:39.761719px;}
.he{height:41.723369px;}
.hc{height:43.038432px;}
.hd{height:43.516637px;}
.h17{height:43.623633px;}
.h16{height:43.798711px;}
.h4{height:43.815515px;}
.h18{height:44.002969px;}
.h2{height:50.930649px;}
.h13{height:52.558594px;}
.h6{height:54.411312px;}
.h12{height:55.503491px;}
.h20{height:72.039235px;}
.h1f{height:72.045235px;}
.h5{height:77.469696px;}
.h3{height:96.109904px;}
.h25{height:167.124000px;}
.h10{height:180.636000px;}
.h24{height:293.254500px;}
.h1c{height:892.914000px;}
.h1d{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:192.612344px;}
.w7{width:539.209500px;}
.w8{width:540.471000px;}
.w4{width:576.142500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w5{width:1262.835000px;}
.w6{width:1263.000000px;}
.xa2{left:-59.502000px;}
.x18{left:-46.822500px;}
.xa3{left:-27.642000px;}
.x1a{left:-14.962500px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.x2{left:60.720389px;}
.x1{left:114.802500px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x74{left:124.642500px;}
.x96{left:129.169500px;}
.x94{left:131.277000px;}
.x4{left:146.170500px;}
.x93{left:147.859500px;}
.x5d{left:149.748000px;}
.xa7{left:150.817500px;}
.x62{left:153.730500px;}
.x20{left:155.602500px;}
.x95{left:157.066500px;}
.x17{left:158.386500px;}
.xa8{left:159.673500px;}
.x64{left:167.401500px;}
.x68{left:170.259000px;}
.x63{left:175.873500px;}
.x8{left:188.365500px;}
.x7e{left:193.149000px;}
.x5c{left:194.347500px;}
.x8f{left:195.817500px;}
.x4e{left:198.895500px;}
.x5b{left:199.905000px;}
.x9{left:201.187500px;}
.x4f{left:206.367000px;}
.x7f{left:208.093500px;}
.x50{left:210.096000px;}
.x1b{left:214.576500px;}
.x51{left:217.567500px;}
.x31{left:221.157000px;}
.x79{left:231.385500px;}
.x32{left:236.101500px;}
.xad{left:238.644000px;}
.x7a{left:246.328500px;}
.xc2{left:252.097500px;}
.xc3{left:253.657500px;}
.x97{left:254.982000px;}
.xa9{left:256.383000px;}
.xaa{left:259.812000px;}
.x8a{left:266.016000px;}
.xab{left:268.783500px;}
.x8b{left:278.995500px;}
.x21{left:280.981500px;}
.x22{left:289.953000px;}
.x2d{left:294.999000px;}
.x52{left:296.847000px;}
.x2e{left:309.943500px;}
.x37{left:311.191500px;}
.x12{left:317.419500px;}
.x38{left:326.134500px;}
.x13{left:327.259500px;}
.x23{left:328.770000px;}
.x27{left:334.236000px;}
.x24{left:336.954000px;}
.xa{left:342.118500px;}
.x87{left:345.120000px;}
.xb{left:349.590000px;}
.x98{left:351.426000px;}
.x9b{left:356.631000px;}
.x9c{left:357.988500px;}
.x39{left:359.173500px;}
.x9a{left:360.399000px;}
.x44{left:364.735500px;}
.x5a{left:367.189500px;}
.x99{left:368.539500px;}
.x2f{left:371.800500px;}
.x3a{left:374.118000px;}
.x3b{left:377.857500px;}
.x65{left:380.179500px;}
.x9d{left:384.444000px;}
.x30{left:386.743500px;}
.x55{left:388.959000px;}
.x75{left:390.340500px;}
.x3c{left:392.800500px;}
.xa6{left:395.566500px;}
.x56{left:398.799000px;}
.x76{left:400.240500px;}
.x47{left:402.633000px;}
.x6d{left:407.128500px;}
.x48{left:417.576000px;}
.x8e{left:418.591500px;}
.x8c{left:422.136000px;}
.x81{left:428.635500px;}
.xa5{left:433.153500px;}
.x8d{left:435.115500px;}
.x82{left:443.580000px;}
.x83{left:451.164000px;}
.x4c{left:452.305500px;}
.x84{left:466.107000px;}
.x4d{left:467.248500px;}
.x25{left:469.192500px;}
.x77{left:472.303500px;}
.x85{left:476.677500px;}
.x26{left:478.902000px;}
.x78{left:482.203500px;}
.x7d{left:484.392000px;}
.x2a{left:486.123000px;}
.x86{left:491.622000px;}
.x2b{left:493.587000px;}
.x33{left:498.697500px;}
.xc{left:500.149500px;}
.x3d{left:502.062000px;}
.x2c{left:508.531500px;}
.xd{left:509.989500px;}
.x5e{left:512.566500px;}
.x34{left:513.640500px;}
.x3e{left:517.006500px;}
.x69{left:518.248500px;}
.x3f{left:520.746000px;}
.xe{left:522.360000px;}
.x49{left:529.456500px;}
.xf{left:532.260000px;}
.x5f{left:533.305500px;}
.x40{left:535.690500px;}
.xac{left:536.994000px;}
.x66{left:539.344500px;}
.x57{left:541.519500px;}
.xa4{left:542.803500px;}
.x6a{left:545.470500px;}
.x28{left:548.545500px;}
.x29{left:556.017000px;}
.x10{left:557.368500px;}
.x6e{left:559.171500px;}
.x89{left:563.598000px;}
.x11{left:566.461500px;}
.x60{left:571.227000px;}
.x19{left:582.931500px;}
.x88{left:585.856500px;}
.x1c{left:588.517500px;}
.x71{left:591.096000px;}
.x1d{left:597.373500px;}
.xb4{left:608.823000px;}
.xc0{left:614.595000px;}
.x9e{left:616.110000px;}
.xa1{left:617.655000px;}
.x16{left:620.076000px;}
.xb3{left:624.753000px;}
.x14{left:628.146000px;}
.x9f{left:632.253000px;}
.xb8{left:633.321000px;}
.x15{left:635.617500px;}
.xc1{left:641.494500px;}
.xa0{left:642.696000px;}
.x90{left:643.902000px;}
.x58{left:647.277000px;}
.xb5{left:651.424500px;}
.x91{left:653.742000px;}
.x59{left:657.117000px;}
.xb9{left:660.219000px;}
.x35{left:662.428500px;}
.x72{left:663.834000px;}
.xbc{left:664.975500px;}
.x73{left:671.103000px;}
.xbe{left:673.110000px;}
.x4a{left:676.360500px;}
.x36{left:677.373000px;}
.xb1{left:680.032500px;}
.xae{left:687.075000px;}
.xbd{left:689.257500px;}
.x4b{left:691.305000px;}
.xb0{left:692.623500px;}
.xaf{left:695.865000px;}
.xbf{left:700.008000px;}
.x6{left:701.339982px;}
.x41{left:702.976500px;}
.xb2{left:706.932000px;}
.x7b{left:711.817500px;}
.x42{left:717.919500px;}
.x7c{left:721.657500px;}
.x43{left:725.400000px;}
.x1e{left:729.441000px;}
.x80{left:731.934000px;}
.xba{left:735.996000px;}
.x1f{left:739.903500px;}
.x53{left:742.314000px;}
.xb6{left:749.563500px;}
.x92{left:751.162500px;}
.x54{left:755.275500px;}
.x45{left:756.895500px;}
.xbb{left:762.895500px;}
.x6b{left:766.329000px;}
.x6c{left:768.130500px;}
.x46{left:771.838500px;}
.x67{left:774.237000px;}
.xb7{left:776.463000px;}
.x61{left:802.480500px;}
.x6f{left:1021.692000px;}
.x70{left:1027.507500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.440000pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:29.226667pt;}
.ls26{letter-spacing:-0.704000pt;}
.ls22{letter-spacing:-0.592000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.230933pt;}
.ls23{letter-spacing:-0.112000pt;}
.ls17{letter-spacing:-0.037120pt;}
.ls25{letter-spacing:-0.000001pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.000212pt;}
.ls30{letter-spacing:0.000711pt;}
.ls28{letter-spacing:0.000751pt;}
.ls1{letter-spacing:0.001843pt;}
.lse{letter-spacing:0.004142pt;}
.ls31{letter-spacing:0.004267pt;}
.ls1f{letter-spacing:0.016000pt;}
.ls12{letter-spacing:0.098133pt;}
.ls20{letter-spacing:0.154667pt;}
.ls15{letter-spacing:0.155733pt;}
.lsc{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.176000pt;}
.ls13{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.272000pt;}
.ls9{letter-spacing:0.288000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.436267pt;}
.ls14{letter-spacing:0.544000pt;}
.ls2a{letter-spacing:0.576078pt;}
.ls19{letter-spacing:1.047252pt;}
.ls6{letter-spacing:1.133683pt;}
.ls37{letter-spacing:1.136933pt;}
.ls18{letter-spacing:1.260177pt;}
.ls3{letter-spacing:1.654338pt;}
.ls1d{letter-spacing:5.920000pt;}
.ls1e{letter-spacing:5.980160pt;}
.ls4{letter-spacing:10.626533pt;}
.ls2d{letter-spacing:10.869290pt;}
.ls36{letter-spacing:11.896357pt;}
.ls38{letter-spacing:11.898863pt;}
.ls29{letter-spacing:11.954133pt;}
.ls2b{letter-spacing:11.959467pt;}
.ls34{letter-spacing:11.963167pt;}
.ls32{letter-spacing:11.999330pt;}
.ls3a{letter-spacing:12.001962pt;}
.ls2e{letter-spacing:12.071736pt;}
.ls1b{letter-spacing:12.145878pt;}
.ls1c{letter-spacing:13.008418pt;}
.ls33{letter-spacing:13.038264pt;}
.lsd{letter-spacing:13.284142pt;}
.ls2c{letter-spacing:14.585976pt;}
.ls39{letter-spacing:14.701009pt;}
.ls27{letter-spacing:15.955412pt;}
.ls35{letter-spacing:16.321924pt;}
.ls2f{letter-spacing:16.625192pt;}
.ls0{letter-spacing:62.432533pt;}
.ls21{letter-spacing:62.816000pt;}
.ls2{letter-spacing:64.314231pt;}
.ws0{word-spacing:-98.031472pt;}
.ws6c{word-spacing:-40.078876pt;}
.ws55{word-spacing:-36.071229pt;}
.ws7d{word-spacing:-32.063181pt;}
.ws27{word-spacing:-13.824000pt;}
.ws29{word-spacing:-13.716267pt;}
.ws22{word-spacing:-13.600000pt;}
.ws26{word-spacing:-13.510933pt;}
.ws28{word-spacing:-13.435733pt;}
.ws25{word-spacing:-13.378133pt;}
.ws32{word-spacing:-13.283467pt;}
.ws24{word-spacing:-13.280000pt;}
.ws2a{word-spacing:-13.242880pt;}
.ws23{word-spacing:-13.049067pt;}
.ws88{word-spacing:-12.320000pt;}
.ws83{word-spacing:-12.272000pt;}
.ws21{word-spacing:-12.000000pt;}
.ws86{word-spacing:-11.999999pt;}
.ws54{word-spacing:-11.955200pt;}
.ws84{word-spacing:-11.888000pt;}
.ws85{word-spacing:-11.744000pt;}
.ws89{word-spacing:-11.680000pt;}
.ws87{word-spacing:-11.296000pt;}
.ws1f{word-spacing:-10.720000pt;}
.ws1d{word-spacing:-10.626800pt;}
.ws20{word-spacing:-10.400000pt;}
.ws3{word-spacing:-10.095467pt;}
.ws3f{word-spacing:-2.603559pt;}
.ws9d{word-spacing:-2.534502pt;}
.ws6f{word-spacing:-2.391024pt;}
.ws74{word-spacing:-2.231622pt;}
.wsa7{word-spacing:-2.008474pt;}
.wsd{word-spacing:-1.912819pt;}
.ws4c{word-spacing:-1.753418pt;}
.ws14{word-spacing:-1.700284pt;}
.ws7{word-spacing:-1.696326pt;}
.ws6e{word-spacing:-1.647150pt;}
.ws40{word-spacing:-1.594016pt;}
.ws63{word-spacing:-1.540882pt;}
.wsa3{word-spacing:-1.530266pt;}
.ws36{word-spacing:-1.487748pt;}
.wsc6{word-spacing:-1.482445pt;}
.wsb6{word-spacing:-1.434624pt;}
.wsf{word-spacing:-1.434614pt;}
.ws6{word-spacing:-1.175671pt;}
.ws80{word-spacing:-1.115811pt;}
.wsb7{word-spacing:-1.099878pt;}
.ws1b{word-spacing:-1.062677pt;}
.ws51{word-spacing:-1.009543pt;}
.ws34{word-spacing:-0.903276pt;}
.ws9{word-spacing:-0.850142pt;}
.wsce{word-spacing:-0.812954pt;}
.wsb5{word-spacing:-0.765133pt;}
.wsa{word-spacing:-0.743874pt;}
.ws19{word-spacing:-0.690740pt;}
.wsc4{word-spacing:-0.430387pt;}
.ws62{word-spacing:-0.371937pt;}
.ws4e{word-spacing:-0.265669pt;}
.wse4{word-spacing:-0.239104pt;}
.ws18{word-spacing:-0.212535pt;}
.wsb0{word-spacing:-0.191283pt;}
.ws37{word-spacing:-0.159402pt;}
.wsab{word-spacing:-0.143462pt;}
.ws69{word-spacing:-0.112038pt;}
.ws1a{word-spacing:-0.106268pt;}
.ws2e{word-spacing:-0.095642pt;}
.ws35{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws1e{word-spacing:-0.042507pt;}
.ws2{word-spacing:-0.004496pt;}
.ws6b{word-spacing:-0.002064pt;}
.ws33{word-spacing:-0.001770pt;}
.ws7c{word-spacing:-0.001067pt;}
.ws1{word-spacing:0.000000pt;}
.ws98{word-spacing:0.047821pt;}
.ws13{word-spacing:0.053134pt;}
.wsa5{word-spacing:0.095642pt;}
.wsb{word-spacing:0.106268pt;}
.ws9b{word-spacing:0.143462pt;}
.ws5f{word-spacing:0.159402pt;}
.wsae{word-spacing:0.191283pt;}
.ws8{word-spacing:0.212535pt;}
.ws7b{word-spacing:0.255043pt;}
.ws17{word-spacing:0.265669pt;}
.wsda{word-spacing:0.286925pt;}
.ws16{word-spacing:0.318803pt;}
.ws50{word-spacing:0.371937pt;}
.wse{word-spacing:0.425071pt;}
.wsa0{word-spacing:0.478208pt;}
.wsdd{word-spacing:0.621670pt;}
.ws73{word-spacing:0.637606pt;}
.ws3e{word-spacing:0.743874pt;}
.wsc7{word-spacing:0.812954pt;}
.ws9f{word-spacing:0.860774pt;}
.ws64{word-spacing:0.956410pt;}
.wsdb{word-spacing:1.004237pt;}
.wsc9{word-spacing:1.099878pt;}
.ws75{word-spacing:1.275213pt;}
.ws2d{word-spacing:1.291162pt;}
.ws65{word-spacing:1.381481pt;}
.ws67{word-spacing:1.434614pt;}
.wsd7{word-spacing:1.482445pt;}
.ws97{word-spacing:1.578086pt;}
.ws49{word-spacing:1.594016pt;}
.ws7e{word-spacing:1.806551pt;}
.ws38{word-spacing:2.045578pt;}
.wsb2{word-spacing:2.056294pt;}
.ws3a{word-spacing:2.072221pt;}
.wsdf{word-spacing:2.151936pt;}
.wsc1{word-spacing:2.199757pt;}
.ws41{word-spacing:2.284756pt;}
.ws76{word-spacing:2.391024pt;}
.ws96{word-spacing:2.550426pt;}
.wsb4{word-spacing:2.630144pt;}
.ws45{word-spacing:2.656693pt;}
.ws43{word-spacing:2.709827pt;}
.wse1{word-spacing:2.725786pt;}
.ws4b{word-spacing:2.816095pt;}
.wse6{word-spacing:2.867260pt;}
.wsa1{word-spacing:2.867772pt;}
.ws99{word-spacing:2.867780pt;}
.ws15{word-spacing:2.869229pt;}
.ws5{word-spacing:2.869248pt;}
.wsaf{word-spacing:2.869359pt;}
.ws66{word-spacing:3.028630pt;}
.ws10{word-spacing:3.188032pt;}
.ws7f{word-spacing:3.241166pt;}
.wscb{word-spacing:3.251814pt;}
.ws68{word-spacing:3.347434pt;}
.wsd1{word-spacing:3.443098pt;}
.wsa9{word-spacing:3.538739pt;}
.wsbd{word-spacing:3.682202pt;}
.ws90{word-spacing:3.825664pt;}
.wsb1{word-spacing:3.921306pt;}
.ws8d{word-spacing:3.969126pt;}
.ws8b{word-spacing:4.016947pt;}
.wsdc{word-spacing:4.064768pt;}
.ws8a{word-spacing:4.303872pt;}
.wsd3{word-spacing:4.351693pt;}
.ws61{word-spacing:4.356977pt;}
.wse5{word-spacing:4.399514pt;}
.ws48{word-spacing:4.675780pt;}
.wsbe{word-spacing:4.686438pt;}
.ws42{word-spacing:4.888316pt;}
.ws47{word-spacing:4.941450pt;}
.ws30{word-spacing:5.047717pt;}
.ws95{word-spacing:5.313387pt;}
.wsb9{word-spacing:5.451571pt;}
.wsc3{word-spacing:5.690675pt;}
.ws6d{word-spacing:5.791591pt;}
.wsd8{word-spacing:5.977600pt;}
.ws4a{word-spacing:6.322930pt;}
.ws71{word-spacing:6.748001pt;}
.ws60{word-spacing:6.907403pt;}
.wsc{word-spacing:7.066804pt;}
.ws3c{word-spacing:7.757545pt;}
.ws3b{word-spacing:8.023214pt;}
.wsbc{word-spacing:8.177357pt;}
.wsb8{word-spacing:8.416461pt;}
.ws72{word-spacing:8.501419pt;}
.ws4f{word-spacing:8.660820pt;}
.ws3d{word-spacing:8.873356pt;}
.ws2c{word-spacing:9.038131pt;}
.wsca{word-spacing:9.181594pt;}
.ws9e{word-spacing:9.372877pt;}
.wscf{word-spacing:9.420698pt;}
.ws2b{word-spacing:9.468518pt;}
.ws12{word-spacing:9.617230pt;}
.ws5e{word-spacing:10.159221pt;}
.ws1c{word-spacing:10.581291pt;}
.ws70{word-spacing:10.826805pt;}
.wse3{word-spacing:11.524813pt;}
.wsd4{word-spacing:11.716096pt;}
.wsd0{word-spacing:11.859558pt;}
.wsaa{word-spacing:11.898871pt;}
.wsc0{word-spacing:11.902481pt;}
.ws52{word-spacing:11.904495pt;}
.wsa8{word-spacing:11.904896pt;}
.wsa4{word-spacing:11.906662pt;}
.wsac{word-spacing:11.907379pt;}
.ws77{word-spacing:11.909828pt;}
.wse2{word-spacing:11.955200pt;}
.wsa6{word-spacing:12.003021pt;}
.ws81{word-spacing:12.094832pt;}
.wsde{word-spacing:12.529050pt;}
.ws82{word-spacing:12.955129pt;}
.ws6a{word-spacing:13.142115pt;}
.wsad{word-spacing:13.150720pt;}
.ws2f{word-spacing:13.230333pt;}
.ws46{word-spacing:13.232429pt;}
.wse0{word-spacing:14.059315pt;}
.ws94{word-spacing:14.293010pt;}
.ws91{word-spacing:14.298419pt;}
.wsd5{word-spacing:14.728806pt;}
.wscd{word-spacing:14.770227pt;}
.ws9a{word-spacing:14.771447pt;}
.wsa2{word-spacing:14.772471pt;}
.wsd6{word-spacing:14.773129pt;}
.wsd9{word-spacing:14.773794pt;}
.wsbf{word-spacing:14.773897pt;}
.ws9c{word-spacing:14.776627pt;}
.wsbb{word-spacing:14.778206pt;}
.wsc5{word-spacing:14.824448pt;}
.wscc{word-spacing:14.872269pt;}
.wsba{word-spacing:15.015731pt;}
.ws5c{word-spacing:15.175070pt;}
.ws39{word-spacing:15.289176pt;}
.ws92{word-spacing:15.350477pt;}
.wsc2{word-spacing:15.446118pt;}
.ws8c{word-spacing:15.906545pt;}
.ws8e{word-spacing:15.909725pt;}
.ws8f{word-spacing:15.909933pt;}
.ws44{word-spacing:15.916627pt;}
.ws11{word-spacing:16.418365pt;}
.ws93{word-spacing:16.843436pt;}
.wsc8{word-spacing:17.645875pt;}
.ws31{word-spacing:18.290484pt;}
.ws4d{word-spacing:20.137735pt;}
.wsb3{word-spacing:21.375898pt;}
.wsd2{word-spacing:25.536307pt;}
.ws5d{word-spacing:28.904896pt;}
.ws78{word-spacing:106.401280pt;}
.ws53{word-spacing:133.611315pt;}
.ws79{word-spacing:156.909065pt;}
.ws57{word-spacing:175.071949pt;}
.ws56{word-spacing:187.876361pt;}
.ws59{word-spacing:195.969638pt;}
.ws58{word-spacing:196.195900pt;}
.ws7a{word-spacing:201.286426pt;}
.ws5b{word-spacing:225.857638pt;}
.ws5a{word-spacing:263.014400pt;}
._3b{margin-left:-7.029658pt;}
._3{margin-left:-6.139742pt;}
._2{margin-left:-4.401417pt;}
._18{margin-left:-3.435495pt;}
._6{margin-left:-1.894613pt;}
._1{margin-left:-0.889916pt;}
._7{width:0.969929pt;}
._0{width:2.669699pt;}
._13{width:4.448738pt;}
._15{width:5.343350pt;}
._36{width:6.248149pt;}
._14{width:7.199800pt;}
._d{width:8.161906pt;}
._f{width:9.450667pt;}
._10{width:10.418258pt;}
._4{width:11.955200pt;}
._9{width:12.933097pt;}
._5{width:14.824448pt;}
._8{width:16.187623pt;}
._a{width:17.799845pt;}
._37{width:18.788858pt;}
._16{width:19.680566pt;}
._1a{width:21.253547pt;}
._35{width:22.536967pt;}
._17{width:23.438220pt;}
._19{width:24.972917pt;}
._2d{width:26.378760pt;}
._3c{width:28.325208pt;}
._2f{width:29.967501pt;}
._39{width:31.179162pt;}
._2a{width:32.933127pt;}
._2e{width:34.367861pt;}
._3d{width:36.119998pt;}
._30{width:37.140573pt;}
._11{width:40.676151pt;}
._12{width:43.452311pt;}
._38{width:45.718588pt;}
._2c{width:54.111666pt;}
._2b{width:59.042501pt;}
._3a{width:60.448134pt;}
._34{width:126.916403pt;}
._31{width:156.230554pt;}
._22{width:187.600998pt;}
._29{width:188.803755pt;}
._26{width:200.269645pt;}
._33{width:210.315878pt;}
._28{width:212.091127pt;}
._21{width:215.846417pt;}
._32{width:261.550635pt;}
._25{width:267.605197pt;}
._23{width:279.560397pt;}
._1f{width:288.502886pt;}
._20{width:329.241438pt;}
._27{width:330.782507pt;}
._24{width:340.771021pt;}
._1c{width:394.617242pt;}
._1d{width:499.985143pt;}
._1e{width:544.726733pt;}
._b{width:737.418639pt;}
._e{width:1448.746667pt;}
._c{width:1853.613333pt;}
._1b{width:3168.893333pt;}
.fsf{font-size:29.440000pt;}
.fsd{font-size:31.880533pt;}
.fse{font-size:34.005867pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs11{font-size:38.256533pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:42.880000pt;}
.fs5{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fs10{font-size:49.829333pt;}
.fsc{font-size:53.120000pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:126.004462pt;}
.y2e{bottom:-774.896000pt;}
.y52{bottom:-717.136000pt;}
.y10e{bottom:-699.889333pt;}
.y51{bottom:-683.061333pt;}
.y126{bottom:-669.489333pt;}
.y50{bottom:-665.141333pt;}
.y125{bottom:-652.209333pt;}
.y4f{bottom:-647.061333pt;}
.y4e{bottom:-629.141333pt;}
.y124{bottom:-626.289333pt;}
.y4d{bottom:-611.061333pt;}
.y4c{bottom:-593.141333pt;}
.y123{bottom:-592.854667pt;}
.y4b{bottom:-575.221333pt;}
.y122{bottom:-568.694667pt;}
.y4a{bottom:-557.141333pt;}
.y121{bottom:-552.534667pt;}
.y49{bottom:-539.181333pt;}
.y120{bottom:-528.374667pt;}
.y48{bottom:-521.101333pt;}
.y12a{bottom:-519.942667pt;}
.y11f{bottom:-503.734667pt;}
.y47{bottom:-503.181333pt;}
.y142{bottom:-489.542667pt;}
.y11e{bottom:-485.814667pt;}
.y46{bottom:-485.101333pt;}
.y141{bottom:-472.262667pt;}
.y11d{bottom:-467.694667pt;}
.y45{bottom:-467.181333pt;}
.y11c{bottom:-449.774667pt;}
.y140{bottom:-446.342667pt;}
.y44{bottom:-441.261333pt;}
.y11b{bottom:-431.854667pt;}
.y11a{bottom:-413.774667pt;}
.y13f{bottom:-412.908000pt;}
.y43{bottom:-407.021333pt;}
.y119{bottom:-395.854667pt;}
.y13e{bottom:-388.748000pt;}
.y118{bottom:-377.774667pt;}
.y42{bottom:-373.261333pt;}
.y13d{bottom:-372.588000pt;}
.y117{bottom:-359.854667pt;}
.y41{bottom:-355.181333pt;}
.y13c{bottom:-348.428000pt;}
.y40{bottom:-337.261333pt;}
.y116{bottom:-333.614667pt;}
.y13b{bottom:-323.788000pt;}
.y3f{bottom:-319.181333pt;}
.y13a{bottom:-305.868000pt;}
.y3e{bottom:-301.234667pt;}
.y115{bottom:-300.174667pt;}
.y139{bottom:-287.748000pt;}
.y3d{bottom:-283.314667pt;}
.y114{bottom:-282.894667pt;}
.y138{bottom:-269.828000pt;}
.y113{bottom:-265.454667pt;}
.y3c{bottom:-265.234667pt;}
.y137{bottom:-251.908000pt;}
.y112{bottom:-248.174667pt;}
.y3b{bottom:-247.314667pt;}
.y136{bottom:-233.828000pt;}
.y111{bottom:-230.894667pt;}
.y3a{bottom:-229.234667pt;}
.y135{bottom:-215.908000pt;}
.y110{bottom:-213.428000pt;}
.y39{bottom:-211.314667pt;}
.y134{bottom:-197.828000pt;}
.y38{bottom:-193.234667pt;}
.y10f{bottom:-187.028000pt;}
.y133{bottom:-179.908000pt;}
.y37{bottom:-175.314667pt;}
.y36{bottom:-157.394667pt;}
.y132{bottom:-153.668000pt;}
.y35{bottom:-139.314667pt;}
.y131{bottom:-120.228000pt;}
.y34{bottom:-113.394667pt;}
.y130{bottom:-102.948000pt;}
.y12f{bottom:-85.508000pt;}
.y33{bottom:-79.634667pt;}
.y12e{bottom:-68.228000pt;}
.y32{bottom:-62.314667pt;}
.y12d{bottom:-50.948000pt;}
.y31{bottom:-45.034667pt;}
.y12c{bottom:-33.481333pt;}
.y30{bottom:-27.594667pt;}
.y12b{bottom:-7.081333pt;}
.y2f{bottom:-3.114667pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.044747pt;}
.ye{bottom:12.578910pt;}
.y2{bottom:15.051618pt;}
.y2a{bottom:56.693333pt;}
.y16c{bottom:97.125333pt;}
.y77{bottom:106.314667pt;}
.yf0{bottom:106.545333pt;}
.y19f{bottom:114.066667pt;}
.y16b{bottom:114.341333pt;}
.y76{bottom:124.326667pt;}
.yef{bottom:124.558667pt;}
.y19e{bottom:131.281333pt;}
.y16a{bottom:131.556000pt;}
.yed{bottom:142.570667pt;}
.yee{bottom:147.393333pt;}
.y19d{bottom:148.497333pt;}
.y169{bottom:148.772000pt;}
.y75{bottom:150.309333pt;}
.yec{bottom:160.584000pt;}
.y19c{bottom:165.713333pt;}
.y168{bottom:165.986667pt;}
.yeb{bottom:178.596000pt;}
.y74{bottom:181.260000pt;}
.y19b{bottom:182.928000pt;}
.y167{bottom:183.202667pt;}
.y29{bottom:194.682667pt;}
.yea{bottom:196.608000pt;}
.y73{bottom:199.272000pt;}
.y19a{bottom:200.144000pt;}
.y166{bottom:200.418667pt;}
.y127{bottom:204.974667pt;}
.y2d{bottom:209.072000pt;}
.y28{bottom:212.694667pt;}
.ya0{bottom:213.904000pt;}
.ye9{bottom:214.621333pt;}
.y72{bottom:217.285333pt;}
.y199{bottom:217.358667pt;}
.y165{bottom:217.633333pt;}
.y10c{bottom:224.912000pt;}
.yc3{bottom:225.761333pt;}
.y27{bottom:230.706667pt;}
.y9f{bottom:231.916000pt;}
.ye8{bottom:232.633333pt;}
.y198{bottom:234.574667pt;}
.y164{bottom:234.849333pt;}
.y71{bottom:235.297333pt;}
.yc2{bottom:238.380000pt;}
.y26{bottom:248.720000pt;}
.y9e{bottom:249.929333pt;}
.ye7{bottom:250.646667pt;}
.yc1{bottom:251.000000pt;}
.y197{bottom:251.790667pt;}
.y163{bottom:252.064000pt;}
.y70{bottom:253.310667pt;}
.y1a2{bottom:256.932000pt;}
.ybf{bottom:263.618667pt;}
.y25{bottom:266.732000pt;}
.yc0{bottom:267.476000pt;}
.y9d{bottom:267.941333pt;}
.ye6{bottom:268.658667pt;}
.y196{bottom:269.005333pt;}
.y162{bottom:269.280000pt;}
.y6f{bottom:271.322667pt;}
.y1a1{bottom:274.148000pt;}
.ybc{bottom:282.909333pt;}
.y10d{bottom:284.078667pt;}
.y24{bottom:284.745333pt;}
.y9b{bottom:285.954667pt;}
.y195{bottom:286.221333pt;}
.y161{bottom:286.496000pt;}
.ye5{bottom:286.670667pt;}
.y6e{bottom:289.334667pt;}
.y9c{bottom:290.776000pt;}
.y1a0{bottom:291.362667pt;}
.ybb{bottom:297.520000pt;}
.y23{bottom:302.757333pt;}
.y194{bottom:303.437333pt;}
.y160{bottom:303.710667pt;}
.y9a{bottom:303.966667pt;}
.ye4{bottom:304.684000pt;}
.ybe{bottom:304.826667pt;}
.y6d{bottom:307.348000pt;}
.yb8{bottom:312.132000pt;}
.ybd{bottom:319.438667pt;}
.y193{bottom:320.652000pt;}
.y22{bottom:320.769333pt;}
.y15f{bottom:320.926667pt;}
.ye3{bottom:322.696000pt;}
.y6c{bottom:325.360000pt;}
.yba{bottom:326.744000pt;}
.y99{bottom:329.949333pt;}
.y192{bottom:337.868000pt;}
.y15d{bottom:338.141333pt;}
.y15e{bottom:338.142667pt;}
.y21{bottom:338.782667pt;}
.ye2{bottom:340.709333pt;}
.yb9{bottom:341.356000pt;}
.y6b{bottom:343.373333pt;}
.y191{bottom:355.082667pt;}
.y15c{bottom:355.357333pt;}
.y20{bottom:356.794667pt;}
.ye1{bottom:358.721333pt;}
.y98{bottom:360.900000pt;}
.y6a{bottom:361.385333pt;}
.yb7{bottom:362.370667pt;}
.y190{bottom:372.298667pt;}
.y15b{bottom:372.573333pt;}
.y1f{bottom:374.808000pt;}
.ye0{bottom:376.733333pt;}
.yb6{bottom:376.982667pt;}
.y97{bottom:378.912000pt;}
.y69{bottom:379.397333pt;}
.y18f{bottom:389.514667pt;}
.y15a{bottom:389.788000pt;}
.yb5{bottom:391.593333pt;}
.y1e{bottom:392.820000pt;}
.ydf{bottom:394.746667pt;}
.y96{bottom:396.925333pt;}
.y68{bottom:397.410667pt;}
.yb4{bottom:406.205333pt;}
.y18e{bottom:406.729333pt;}
.y159{bottom:407.004000pt;}
.y1d{bottom:410.832000pt;}
.yde{bottom:412.758667pt;}
.yae{bottom:413.512000pt;}
.y95{bottom:414.937333pt;}
.yb3{bottom:420.817333pt;}
.y67{bottom:423.393333pt;}
.y18d{bottom:423.945333pt;}
.yad{bottom:428.124000pt;}
.ydd{bottom:430.772000pt;}
.y158{bottom:432.189333pt;}
.y94{bottom:432.950667pt;}
.yb2{bottom:435.429333pt;}
.y1c{bottom:436.814667pt;}
.y18c{bottom:441.160000pt;}
.yb1{bottom:450.041333pt;}
.y93{bottom:450.962667pt;}
.y66{bottom:454.344000pt;}
.ydc{bottom:456.753333pt;}
.y18b{bottom:458.376000pt;}
.y129{bottom:464.025333pt;}
.yb0{bottom:464.653333pt;}
.y157{bottom:467.257333pt;}
.y1b{bottom:467.765333pt;}
.y92{bottom:468.974667pt;}
.y18a{bottom:475.592000pt;}
.yaf{bottom:479.265333pt;}
.y65{bottom:485.294667pt;}
.y91{bottom:486.988000pt;}
.ydb{bottom:487.704000pt;}
.y156{bottom:488.737333pt;}
.y189{bottom:492.806667pt;}
.yac{bottom:500.278667pt;}
.y155{bottom:502.246667pt;}
.y64{bottom:503.306667pt;}
.y90{bottom:505.000000pt;}
.yda{bottom:505.717333pt;}
.y10b{bottom:506.596000pt;}
.yab{bottom:507.585333pt;}
.y188{bottom:510.022667pt;}
.y63{bottom:521.320000pt;}
.y8f{bottom:523.013333pt;}
.y154{bottom:523.726667pt;}
.yd9{bottom:523.729333pt;}
.y10a{bottom:524.609333pt;}
.y187{bottom:527.237333pt;}
.y1a{bottom:535.684000pt;}
.yaa{bottom:535.905333pt;}
.y62{bottom:539.332000pt;}
.y8e{bottom:541.025333pt;}
.yd8{bottom:541.742667pt;}
.y109{bottom:542.621333pt;}
.y186{bottom:544.453333pt;}
.ya9{bottom:550.517333pt;}
.y153{bottom:553.176000pt;}
.y19{bottom:553.697333pt;}
.y61{bottom:557.344000pt;}
.ya6{bottom:557.822667pt;}
.y8d{bottom:559.037333pt;}
.yd7{bottom:559.754667pt;}
.y108{bottom:560.634667pt;}
.y185{bottom:561.669333pt;}
.ya8{bottom:565.129333pt;}
.y152{bottom:571.188000pt;}
.y60{bottom:575.357333pt;}
.yd6{bottom:577.766667pt;}
.y107{bottom:578.646667pt;}
.y184{bottom:578.884000pt;}
.ya7{bottom:579.740000pt;}
.y8c{bottom:585.020000pt;}
.y18{bottom:587.649333pt;}
.y151{bottom:589.201333pt;}
.y5f{bottom:593.369333pt;}
.yd5{bottom:595.780000pt;}
.y183{bottom:596.100000pt;}
.y106{bottom:596.658667pt;}
.ya5{bottom:600.754667pt;}
.y17{bottom:605.662667pt;}
.y150{bottom:607.213333pt;}
.ya4{bottom:608.060000pt;}
.y5e{bottom:611.382667pt;}
.y182{bottom:613.314667pt;}
.yd4{bottom:613.792000pt;}
.y105{bottom:614.672000pt;}
.y8b{bottom:615.970667pt;}
.y16{bottom:623.674667pt;}
.y14f{bottom:625.226667pt;}
.y5d{bottom:629.394667pt;}
.y181{bottom:630.530667pt;}
.yd3{bottom:631.805333pt;}
.y104{bottom:632.684000pt;}
.y8a{bottom:633.984000pt;}
.ya3{bottom:636.446667pt;}
.y15{bottom:641.686667pt;}
.y14e{bottom:643.238667pt;}
.y5c{bottom:647.406667pt;}
.y180{bottom:647.746667pt;}
.yd2{bottom:649.817333pt;}
.y103{bottom:650.697333pt;}
.y89{bottom:651.996000pt;}
.y14{bottom:659.700000pt;}
.y14d{bottom:661.250667pt;}
.ya2{bottom:664.553333pt;}
.y17f{bottom:664.961333pt;}
.y5b{bottom:665.420000pt;}
.yd1{bottom:667.829333pt;}
.y88{bottom:670.008000pt;}
.y13{bottom:677.712000pt;}
.y14c{bottom:679.264000pt;}
.y17e{bottom:682.177333pt;}
.y5a{bottom:683.432000pt;}
.yd0{bottom:685.842667pt;}
.y87{bottom:688.021333pt;}
.y102{bottom:689.033333pt;}
.y12{bottom:695.725333pt;}
.y14b{bottom:697.276000pt;}
.y17d{bottom:699.392000pt;}
.y59{bottom:701.445333pt;}
.y100{bottom:701.652000pt;}
.ycf{bottom:703.854667pt;}
.y101{bottom:705.510667pt;}
.y86{bottom:706.033333pt;}
.ya1{bottom:709.729333pt;}
.y11{bottom:713.737333pt;}
.y17c{bottom:716.608000pt;}
.y58{bottom:719.457333pt;}
.yff{bottom:720.942667pt;}
.yce{bottom:721.868000pt;}
.y14a{bottom:723.258667pt;}
.y85{bottom:724.046667pt;}
.y10{bottom:731.749333pt;}
.y17b{bottom:733.824000pt;}
.yfe{bottom:735.554667pt;}
.ycd{bottom:739.880000pt;}
.y84{bottom:742.058667pt;}
.y57{bottom:745.440000pt;}
.yfd{bottom:750.165333pt;}
.y17a{bottom:751.038667pt;}
.y149{bottom:751.368000pt;}
.yf6{bottom:757.472000pt;}
.ycc{bottom:757.892000pt;}
.y83{bottom:760.070667pt;}
.yd{bottom:763.245301pt;}
.yc{bottom:763.594667pt;}
.yfc{bottom:764.777333pt;}
.y179{bottom:768.254667pt;}
.y148{bottom:768.464000pt;}
.yf5{bottom:772.084000pt;}
.y56{bottom:773.549333pt;}
.ycb{bottom:775.905333pt;}
.y82{bottom:778.084000pt;}
.yf7{bottom:779.389333pt;}
.y178{bottom:785.469333pt;}
.y147{bottom:785.560000pt;}
.yf4{bottom:786.696000pt;}
.y55{bottom:790.645333pt;}
.yca{bottom:793.917333pt;}
.yfb{bottom:794.001333pt;}
.y81{bottom:796.096000pt;}
.yb{bottom:798.592000pt;}
.yf3{bottom:801.308000pt;}
.y145{bottom:802.656000pt;}
.y177{bottom:802.685333pt;}
.y146{bottom:806.996000pt;}
.y54{bottom:807.741333pt;}
.yfa{bottom:808.613333pt;}
.yc9{bottom:811.930667pt;}
.y80{bottom:814.109333pt;}
.ya{bottom:814.732000pt;}
.y144{bottom:819.752000pt;}
.y176{bottom:819.901333pt;}
.yf9{bottom:823.225333pt;}
.y53{bottom:824.837333pt;}
.yc8{bottom:829.942667pt;}
.y7f{bottom:832.121333pt;}
.y9{bottom:835.210667pt;}
.y143{bottom:836.848000pt;}
.y175{bottom:837.116000pt;}
.yf8{bottom:837.837333pt;}
.y2c{bottom:844.774667pt;}
.y8{bottom:847.010667pt;}
.yc7{bottom:847.954667pt;}
.y174{bottom:854.332000pt;}
.y128{bottom:856.785333pt;}
.y7e{bottom:858.104000pt;}
.yf2{bottom:858.917333pt;}
.yc6{bottom:865.968000pt;}
.y7{bottom:867.490667pt;}
.y173{bottom:871.546667pt;}
.yc5{bottom:883.980000pt;}
.yf1{bottom:887.024000pt;}
.y6{bottom:887.260000pt;}
.y172{bottom:888.762667pt;}
.y7d{bottom:889.054667pt;}
.yc4{bottom:901.993333pt;}
.y171{bottom:905.978667pt;}
.y7c{bottom:920.005333pt;}
.y170{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.y7b{bottom:938.017333pt;}
.y16f{bottom:940.409333pt;}
.y4{bottom:952.217333pt;}
.y7a{bottom:956.030667pt;}
.y16e{bottom:957.624000pt;}
.y79{bottom:974.042667pt;}
.y16d{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y78{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y2b{bottom:1038.548000pt;}
.h9{height:22.673858pt;}
.h22{height:23.209028pt;}
.h26{height:24.466203pt;}
.h7{height:27.076941pt;}
.h1b{height:29.397999pt;}
.hb{height:29.433775pt;}
.h23{height:29.670026pt;}
.ha{height:30.399505pt;}
.h21{height:30.945242pt;}
.hf{height:31.157778pt;}
.h11{height:31.573750pt;}
.h1a{height:33.378918pt;}
.h19{height:34.430976pt;}
.h8{height:34.813542pt;}
.h15{height:35.039062pt;}
.h1e{height:35.052646pt;}
.h14{height:35.343750pt;}
.he{height:37.087439pt;}
.hc{height:38.256384pt;}
.hd{height:38.681455pt;}
.h17{height:38.776563pt;}
.h16{height:38.932188pt;}
.h4{height:38.947124pt;}
.h18{height:39.113750pt;}
.h2{height:45.271688pt;}
.h13{height:46.718750pt;}
.h6{height:48.365611pt;}
.h12{height:49.336436pt;}
.h20{height:64.034876pt;}
.h1f{height:64.040209pt;}
.h5{height:68.861952pt;}
.h3{height:85.431026pt;}
.h25{height:148.554667pt;}
.h10{height:160.565333pt;}
.h24{height:260.670667pt;}
.h1c{height:793.701333pt;}
.h1d{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:171.210973pt;}
.w7{width:479.297333pt;}
.w8{width:480.418667pt;}
.w4{width:512.126667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w5{width:1122.520000pt;}
.w6{width:1122.666667pt;}
.xa2{left:-52.890667pt;}
.x18{left:-41.620000pt;}
.xa3{left:-24.570667pt;}
.x1a{left:-13.300000pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.x2{left:53.973679pt;}
.x1{left:102.046667pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x74{left:110.793333pt;}
.x96{left:114.817333pt;}
.x94{left:116.690667pt;}
.x4{left:129.929333pt;}
.x93{left:131.430667pt;}
.x5d{left:133.109333pt;}
.xa7{left:134.060000pt;}
.x62{left:136.649333pt;}
.x20{left:138.313333pt;}
.x95{left:139.614667pt;}
.x17{left:140.788000pt;}
.xa8{left:141.932000pt;}
.x64{left:148.801333pt;}
.x68{left:151.341333pt;}
.x63{left:156.332000pt;}
.x8{left:167.436000pt;}
.x7e{left:171.688000pt;}
.x5c{left:172.753333pt;}
.x8f{left:174.060000pt;}
.x4e{left:176.796000pt;}
.x5b{left:177.693333pt;}
.x9{left:178.833333pt;}
.x4f{left:183.437333pt;}
.x7f{left:184.972000pt;}
.x50{left:186.752000pt;}
.x1b{left:190.734667pt;}
.x51{left:193.393333pt;}
.x31{left:196.584000pt;}
.x79{left:205.676000pt;}
.x32{left:209.868000pt;}
.xad{left:212.128000pt;}
.x7a{left:218.958667pt;}
.xc2{left:224.086667pt;}
.xc3{left:225.473333pt;}
.x97{left:226.650667pt;}
.xa9{left:227.896000pt;}
.xaa{left:230.944000pt;}
.x8a{left:236.458667pt;}
.xab{left:238.918667pt;}
.x8b{left:247.996000pt;}
.x21{left:249.761333pt;}
.x22{left:257.736000pt;}
.x2d{left:262.221333pt;}
.x52{left:263.864000pt;}
.x2e{left:275.505333pt;}
.x37{left:276.614667pt;}
.x12{left:282.150667pt;}
.x38{left:289.897333pt;}
.x13{left:290.897333pt;}
.x23{left:292.240000pt;}
.x27{left:297.098667pt;}
.x24{left:299.514667pt;}
.xa{left:304.105333pt;}
.x87{left:306.773333pt;}
.xb{left:310.746667pt;}
.x98{left:312.378667pt;}
.x9b{left:317.005333pt;}
.x9c{left:318.212000pt;}
.x39{left:319.265333pt;}
.x9a{left:320.354667pt;}
.x44{left:324.209333pt;}
.x5a{left:326.390667pt;}
.x99{left:327.590667pt;}
.x2f{left:330.489333pt;}
.x3a{left:332.549333pt;}
.x3b{left:335.873333pt;}
.x65{left:337.937333pt;}
.x9d{left:341.728000pt;}
.x30{left:343.772000pt;}
.x55{left:345.741333pt;}
.x75{left:346.969333pt;}
.x3c{left:349.156000pt;}
.xa6{left:351.614667pt;}
.x56{left:354.488000pt;}
.x76{left:355.769333pt;}
.x47{left:357.896000pt;}
.x6d{left:361.892000pt;}
.x48{left:371.178667pt;}
.x8e{left:372.081333pt;}
.x8c{left:375.232000pt;}
.x81{left:381.009333pt;}
.xa5{left:385.025333pt;}
.x8d{left:386.769333pt;}
.x82{left:394.293333pt;}
.x83{left:401.034667pt;}
.x4c{left:402.049333pt;}
.x84{left:414.317333pt;}
.x4d{left:415.332000pt;}
.x25{left:417.060000pt;}
.x77{left:419.825333pt;}
.x85{left:423.713333pt;}
.x26{left:425.690667pt;}
.x78{left:428.625333pt;}
.x7d{left:430.570667pt;}
.x2a{left:432.109333pt;}
.x86{left:436.997333pt;}
.x2b{left:438.744000pt;}
.x33{left:443.286667pt;}
.xc{left:444.577333pt;}
.x3d{left:446.277333pt;}
.x2c{left:452.028000pt;}
.xd{left:453.324000pt;}
.x5e{left:455.614667pt;}
.x34{left:456.569333pt;}
.x3e{left:459.561333pt;}
.x69{left:460.665333pt;}
.x3f{left:462.885333pt;}
.xe{left:464.320000pt;}
.x49{left:470.628000pt;}
.xf{left:473.120000pt;}
.x5f{left:474.049333pt;}
.x40{left:476.169333pt;}
.xac{left:477.328000pt;}
.x66{left:479.417333pt;}
.x57{left:481.350667pt;}
.xa4{left:482.492000pt;}
.x6a{left:484.862667pt;}
.x28{left:487.596000pt;}
.x29{left:494.237333pt;}
.x10{left:495.438667pt;}
.x6e{left:497.041333pt;}
.x89{left:500.976000pt;}
.x11{left:503.521333pt;}
.x60{left:507.757333pt;}
.x19{left:518.161333pt;}
.x88{left:520.761333pt;}
.x1c{left:523.126667pt;}
.x71{left:525.418667pt;}
.x1d{left:530.998667pt;}
.xb4{left:541.176000pt;}
.xc0{left:546.306667pt;}
.x9e{left:547.653333pt;}
.xa1{left:549.026667pt;}
.x16{left:551.178667pt;}
.xb3{left:555.336000pt;}
.x14{left:558.352000pt;}
.x9f{left:562.002667pt;}
.xb8{left:562.952000pt;}
.x15{left:564.993333pt;}
.xc1{left:570.217333pt;}
.xa0{left:571.285333pt;}
.x90{left:572.357333pt;}
.x58{left:575.357333pt;}
.xb5{left:579.044000pt;}
.x91{left:581.104000pt;}
.x59{left:584.104000pt;}
.xb9{left:586.861333pt;}
.x35{left:588.825333pt;}
.x72{left:590.074667pt;}
.xbc{left:591.089333pt;}
.x73{left:596.536000pt;}
.xbe{left:598.320000pt;}
.x4a{left:601.209333pt;}
.x36{left:602.109333pt;}
.xb1{left:604.473333pt;}
.xae{left:610.733333pt;}
.xbd{left:612.673333pt;}
.x4b{left:614.493333pt;}
.xb0{left:615.665333pt;}
.xaf{left:618.546667pt;}
.xbf{left:622.229333pt;}
.x6{left:623.413317pt;}
.x41{left:624.868000pt;}
.xb2{left:628.384000pt;}
.x7b{left:632.726667pt;}
.x42{left:638.150667pt;}
.x7c{left:641.473333pt;}
.x43{left:644.800000pt;}
.x1e{left:648.392000pt;}
.x80{left:650.608000pt;}
.xba{left:654.218667pt;}
.x1f{left:657.692000pt;}
.x53{left:659.834667pt;}
.xb6{left:666.278667pt;}
.x92{left:667.700000pt;}
.x54{left:671.356000pt;}
.x45{left:672.796000pt;}
.xbb{left:678.129333pt;}
.x6b{left:681.181333pt;}
.x6c{left:682.782667pt;}
.x46{left:686.078667pt;}
.x67{left:688.210667pt;}
.xb7{left:690.189333pt;}
.x61{left:713.316000pt;}
.x6f{left:908.170667pt;}
.x70{left:913.340000pt;}
}




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