
    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_6bed8be1c0fac7fb2d78cb4a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7041391a8af6489b898d26e2.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_5b5dcd23d07cd350d7030b05.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.717000;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_6579623a0c7879d77e2a749c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d28df8be43dc183fd91e0b07.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_2a8a603c57a7f8dc719f3257.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_0e7947d4be9a69ea3bf6c512.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d309ea9d62bcfad577f9b23b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2480ccbda0ba91f59e890e2a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.569000;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_fb1fc27244f2d5dfe3b69c4f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.664000;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_2a22446c52fe859e20e2cd34.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6a7bac8a760f6e3bd547ecde.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.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:ffd;src:url('chunks/assets/font_61191e97b0095b9bcc490c40.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.431000;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_a359c20aa14afa13a78097a2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.923000;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_3946a116941c5056da3a8510.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_705a93b35aec4b4395466887.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.899000;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_aad2d8957dde250e82783abb.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_e2f6c3b6b2b583813a3f6e5a.woff2')format("woff");}.ff12{font-family:ff12;line-height:2.262000;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_e64d67692f49e017697d3833.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_b99785dd517a7eaecc6b3b34.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_8adbbcb7f8137408586ab6f1.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.665000;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_67126c9a5b5a00b6001c238b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.451000;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_06ec9762389f779d3fc63c43.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.431000;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_e7c4ee3c093cbb0f52870a03.woff2')format("woff");}.ff18{font-family:ff18;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;}
.m3{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);}
.m6{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);}
.me{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);}
.m1a{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);}
.m10{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);}
.m22{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);}
.m1e{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);}
.m11{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);}
.m7{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);}
.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);}
.m1f{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);}
.m2{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);}
.ma{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.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);}
.m20{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);}
.m18{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);}
.m14{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);}
.mf{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);}
.m13{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);}
.mb{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);}
.m15{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);}
.m1d{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);}
.m12{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);}
.m1c{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);}
.m21{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);}
.m16{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);}
.mc{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);}
.m17{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);}
.md{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);}
.m1b{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);}
.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);}
.m8{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);}
.v1{vertical-align:-25.104000px;}
.v2{vertical-align:-22.854000px;}
.vf{vertical-align:-15.072000px;}
.v3{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v13{vertical-align:6.366000px;}
.v9{vertical-align:16.182000px;}
.v10{vertical-align:23.754000px;}
.vd{vertical-align:27.024000px;}
.v11{vertical-align:35.082000px;}
.v5{vertical-align:44.280000px;}
.v12{vertical-align:50.640000px;}
.ve{vertical-align:52.698000px;}
.v14{vertical-align:58.206000px;}
.v15{vertical-align:66.018000px;}
.vc{vertical-align:67.770000px;}
.v7{vertical-align:71.928000px;}
.v4{vertical-align:82.782000px;}
.v8{vertical-align:83.952000px;}
.vb{vertical-align:108.750000px;}
.v6{vertical-align:112.668000px;}
.va{vertical-align:127.680000px;}
.ls2{letter-spacing:0.000000px;}
.ls56{letter-spacing:0.000502px;}
.ls5e{letter-spacing:0.000843px;}
.ls54{letter-spacing:0.001032px;}
.ls3e{letter-spacing:0.001578px;}
.ls12{letter-spacing:0.002012px;}
.ls41{letter-spacing:0.002135px;}
.ls4{letter-spacing:0.002137px;}
.ls49{letter-spacing:0.002690px;}
.ls31{letter-spacing:0.002692px;}
.ls58{letter-spacing:0.003239px;}
.ls1c{letter-spacing:0.004338px;}
.ls24{letter-spacing:0.004875px;}
.ls3a{letter-spacing:0.004878px;}
.ls2e{letter-spacing:0.005429px;}
.ls2f{letter-spacing:0.007490px;}
.ls51{letter-spacing:0.008641px;}
.ls2d{letter-spacing:0.011369px;}
.ls4b{letter-spacing:0.016091px;}
.ls2a{letter-spacing:0.020596px;}
.ls13{letter-spacing:1.820137px;}
.ls8{letter-spacing:1.832729px;}
.ls25{letter-spacing:1.846687px;}
.ls2b{letter-spacing:2.984915px;}
.ls52{letter-spacing:2.986059px;}
.ls36{letter-spacing:2.989223px;}
.lsb{letter-spacing:2.989739px;}
.ls22{letter-spacing:2.990915px;}
.ls55{letter-spacing:2.992059px;}
.ls5c{letter-spacing:2.992795px;}
.ls5f{letter-spacing:4.831025px;}
.ls38{letter-spacing:5.443358px;}
.ls14{letter-spacing:6.715739px;}
.ls47{letter-spacing:7.003642px;}
.lsa{letter-spacing:7.069097px;}
.ls27{letter-spacing:7.140908px;}
.ls18{letter-spacing:7.158445px;}
.ls1d{letter-spacing:8.340557px;}
.ls5b{letter-spacing:9.106656px;}
.ls5a{letter-spacing:10.049429px;}
.ls15{letter-spacing:10.910012px;}
.ls60{letter-spacing:10.914843px;}
.ls35{letter-spacing:10.930918px;}
.ls50{letter-spacing:13.894059px;}
.lsf{letter-spacing:14.530921px;}
.ls40{letter-spacing:14.548332px;}
.ls32{letter-spacing:14.792740px;}
.ls21{letter-spacing:17.528915px;}
.lse{letter-spacing:17.533739px;}
.ls2c{letter-spacing:17.534915px;}
.ls33{letter-spacing:18.000015px;}
.ls19{letter-spacing:18.080700px;}
.ls4a{letter-spacing:18.179412px;}
.ls17{letter-spacing:18.196379px;}
.ls44{letter-spacing:18.198447px;}
.ls6{letter-spacing:18.204447px;}
.ls3b{letter-spacing:18.458197px;}
.ls3d{letter-spacing:21.096445px;}
.ls3c{letter-spacing:21.164915px;}
.ls3{letter-spacing:21.419468px;}
.ls20{letter-spacing:21.665473px;}
.ls1f{letter-spacing:21.796382px;}
.ls43{letter-spacing:21.861836px;}
.ls34{letter-spacing:22.320019px;}
.ls5{letter-spacing:22.843655px;}
.ls1b{letter-spacing:24.208344px;}
.ls29{letter-spacing:24.800915px;}
.ls10{letter-spacing:25.355412px;}
.ls1a{letter-spacing:26.566677px;}
.ls4d{letter-spacing:27.229114px;}
.ls11{letter-spacing:28.988700px;}
.ls9{letter-spacing:29.061842px;}
.ls46{letter-spacing:30.894571px;}
.ls59{letter-spacing:35.869121px;}
.ls1{letter-spacing:35.883533px;}
.ls4f{letter-spacing:36.369110px;}
.ls7{letter-spacing:37.468677px;}
.ls45{letter-spacing:37.474677px;}
.ls4e{letter-spacing:38.160032px;}
.lsd{letter-spacing:39.355739px;}
.ls37{letter-spacing:169.562031px;}
.ls0{letter-spacing:349.381819px;}
.ls39{letter-spacing:619.135061px;}
.ls28{letter-spacing:738.851525px;}
.ls30{letter-spacing:743.106074px;}
.ls48{letter-spacing:772.757008px;}
.ls23{letter-spacing:786.044291px;}
.lsc{letter-spacing:796.713391px;}
.ls1e{letter-spacing:805.091580px;}
.ls4c{letter-spacing:819.557047px;}
.ls57{letter-spacing:838.735244px;}
.ls26{letter-spacing:856.342532px;}
.ls16{letter-spacing:901.440751px;}
.ls42{letter-spacing:914.335307px;}
.ls53{letter-spacing:923.498951px;}
.ls61{letter-spacing:940.713511px;}
.ls5d{letter-spacing:1008.786295px;}
.ls3f{letter-spacing:1043.477233px;}
.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;}
}
.ws4d{word-spacing:-47.324343px;}
.ws3b{word-spacing:-42.637126px;}
.ws5c{word-spacing:-38.937826px;}
.ws42{word-spacing:-33.211407px;}
.ws24{word-spacing:-32.727300px;}
.ws55{word-spacing:-31.771663px;}
.ws49{word-spacing:-31.509844px;}
.ws7e{word-spacing:-29.887800px;}
.ws3d{word-spacing:-29.061842px;}
.ws5b{word-spacing:-29.015076px;}
.ws4a{word-spacing:-28.237114px;}
.wse{word-spacing:-27.646998px;}
.ws4b{word-spacing:-24.440748px;}
.ws3a{word-spacing:-18.183288px;}
.ws63{word-spacing:-16.363650px;}
.ws43{word-spacing:-16.167286px;}
.ws57{word-spacing:-15.970922px;}
.ws47{word-spacing:-15.643649px;}
.ws66{word-spacing:-15.185467px;}
.ws56{word-spacing:-14.727285px;}
.wsd{word-spacing:-14.670824px;}
.ws58{word-spacing:-14.269103px;}
.ws48{word-spacing:-14.111859px;}
.ws20{word-spacing:-13.810921px;}
.ws53{word-spacing:-13.614557px;}
.ws29{word-spacing:-13.352738px;}
.ws2c{word-spacing:-12.894556px;}
.ws68{word-spacing:-12.829102px;}
.ws14{word-spacing:-12.194222px;}
.ws46{word-spacing:-12.043646px;}
.ws64{word-spacing:-11.847283px;}
.ws36{word-spacing:-11.650919px;}
.ws37{word-spacing:-11.476915px;}
.ws44{word-spacing:-11.417140px;}
.ws5e{word-spacing:-11.323646px;}
.ws28{word-spacing:-11.258191px;}
.ws2b{word-spacing:-11.192737px;}
.ws21{word-spacing:-11.127282px;}
.ws78{word-spacing:-11.118262px;}
.ws23{word-spacing:-11.061827px;}
.ws22{word-spacing:-10.996373px;}
.ws1a{word-spacing:-10.930918px;}
.ws1b{word-spacing:-10.865464px;}
.ws5d{word-spacing:-10.800009px;}
.ws3f{word-spacing:-10.734554px;}
.ws26{word-spacing:-10.669100px;}
.ws75{word-spacing:-10.646034px;}
.ws39{word-spacing:-10.603645px;}
.wsb{word-spacing:-10.582145px;}
.ws25{word-spacing:-10.538191px;}
.ws9{word-spacing:-10.528347px;}
.wsc{word-spacing:-10.485308px;}
.ws45{word-spacing:-10.472736px;}
.ws30{word-spacing:-10.407281px;}
.ws2a{word-spacing:-10.348372px;}
.ws7c{word-spacing:-10.281403px;}
.ws79{word-spacing:-10.167830px;}
.ws6{word-spacing:-10.151758px;}
.ws61{word-spacing:-10.080008px;}
.ws4{word-spacing:-9.982525px;}
.ws69{word-spacing:-9.949099px;}
.ws67{word-spacing:-9.922750px;}
.ws16{word-spacing:-9.862974px;}
.ws15{word-spacing:-9.803198px;}
.ws85{word-spacing:-9.743423px;}
.ws83{word-spacing:-9.683647px;}
.ws13{word-spacing:-9.564096px;}
.ws7d{word-spacing:-9.510298px;}
.ws1f{word-spacing:-9.360008px;}
.ws62{word-spacing:-9.301099px;}
.ws7{word-spacing:-9.247945px;}
.ws86{word-spacing:-9.211420px;}
.wsa{word-spacing:-9.194147px;}
.ws71{word-spacing:-9.151644px;}
.ws8{word-spacing:-9.140348px;}
.ws74{word-spacing:-9.032093px;}
.ws17{word-spacing:-9.026116px;}
.ws7f{word-spacing:-8.972318px;}
.ws84{word-spacing:-8.912542px;}
.ws5{word-spacing:-8.817558px;}
.ws5a{word-spacing:-8.770916px;}
.ws80{word-spacing:-8.733215px;}
.ws35{word-spacing:-8.509098px;}
.ws76{word-spacing:-8.368584px;}
.ws2f{word-spacing:-8.050916px;}
.ws6c{word-spacing:-7.985461px;}
.ws77{word-spacing:-7.776806px;}
.ws4e{word-spacing:-7.627954px;}
.ws18{word-spacing:-7.531726px;}
.ws3c{word-spacing:-7.252370px;}
.ws6a{word-spacing:-6.872733px;}
.ws41{word-spacing:-6.466914px;}
.ws6b{word-spacing:-6.414551px;}
.ws73{word-spacing:-6.162864px;}
.ws19{word-spacing:-5.825459px;}
.ws60{word-spacing:-5.563641px;}
.ws72{word-spacing:-5.499355px;}
.ws38{word-spacing:-5.301823px;}
.ws12{word-spacing:-5.027128px;}
.ws31{word-spacing:-4.778186px;}
.ws34{word-spacing:-4.516367px;}
.ws6f{word-spacing:-4.254549px;}
.ws70{word-spacing:-4.189094px;}
.ws81{word-spacing:-3.526760px;}
.ws82{word-spacing:-3.293636px;}
.ws2d{word-spacing:-3.272730px;}
.ws2e{word-spacing:-2.814548px;}
.ws6e{word-spacing:-2.618184px;}
.ws32{word-spacing:-2.166547px;}
.ws33{word-spacing:-1.701820px;}
.ws6d{word-spacing:-0.785455px;}
.ws7b{word-spacing:-0.783060px;}
.ws7a{word-spacing:-0.777083px;}
.ws27{word-spacing:-0.720001px;}
.ws4f{word-spacing:-0.213757px;}
.ws2{word-spacing:-0.167372px;}
.wsf{word-spacing:0.000000px;}
.ws4c{word-spacing:0.013091px;}
.ws10{word-spacing:2.683639px;}
.ws50{word-spacing:7.058243px;}
.ws5f{word-spacing:7.060450px;}
.ws65{word-spacing:7.062422px;}
.ws59{word-spacing:7.064243px;}
.ws40{word-spacing:7.077673px;}
.ws54{word-spacing:10.700243px;}
.ws11{word-spacing:11.429123px;}
.ws1{word-spacing:23.384371px;}
.ws3{word-spacing:26.827469px;}
.ws0{word-spacing:32.192873px;}
.ws1e{word-spacing:34.370970px;}
.ws51{word-spacing:99.137537px;}
.ws52{word-spacing:703.807132px;}
.ws3e{word-spacing:950.243701px;}
.ws1c{word-spacing:2252.023881px;}
.ws1d{word-spacing:2278.218812px;}
._31{margin-left:-10.934782px;}
._1{margin-left:-8.005180px;}
._2{margin-left:-5.881958px;}
._6{margin-left:-4.028914px;}
._5{margin-left:-2.845349px;}
._4{margin-left:-1.673717px;}
._3{width:1.205092px;}
._0{width:2.668393px;}
._7{width:17.447393px;}
._8{width:20.638247px;}
._2e{width:22.826945px;}
._3f{width:24.809992px;}
._b{width:26.167394px;}
._a{width:27.329533px;}
._32{width:28.426988px;}
._28{width:29.523913px;}
._c{width:30.655303px;}
._2a{width:32.831300px;}
._2d{width:34.232756px;}
._9{width:36.487282px;}
._2b{width:38.805622px;}
._40{width:42.453127px;}
._30{width:46.669130px;}
._2c{width:47.913631px;}
._42{width:50.438588px;}
._41{width:55.464590px;}
._35{width:56.657689px;}
._29{width:64.999477px;}
._2f{width:69.449668px;}
._33{width:142.148432px;}
._39{width:211.151369px;}
._37{width:238.255962px;}
._36{width:245.369258px;}
._34{width:260.382514px;}
._38{width:289.304324px;}
._3e{width:354.612809px;}
._13{width:477.447133px;}
._3b{width:488.844857px;}
._3a{width:514.608140px;}
._3d{width:586.123708px;}
._3c{width:590.044948px;}
._1a{width:811.839439px;}
._21{width:869.793114px;}
._14{width:1175.380283px;}
._26{width:1259.406996px;}
._1c{width:1291.871267px;}
._27{width:1371.378265px;}
._1d{width:1391.800100px;}
._17{width:1508.010118px;}
._1e{width:1538.879319px;}
._16{width:1569.812117px;}
._12{width:1584.781813px;}
._18{width:1591.907669px;}
._24{width:1662.084250px;}
._f{width:1722.722143px;}
._e{width:1778.547944px;}
._15{width:1813.283821px;}
._23{width:1820.045053px;}
._1b{width:1910.222084px;}
._1f{width:1928.961508px;}
._10{width:1932.642211px;}
._22{width:1936.750605px;}
._11{width:1963.733146px;}
._25{width:2012.779579px;}
._19{width:2148.180399px;}
._20{width:2265.428984px;}
._d{width:2287.236269px;}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.865600px;}
.fs8{font-size:41.842800px;}
.fs7{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs6{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.fs3{font-size:117.160200px;}
.fs2{font-size:167.372400px;}
.y0{bottom:0.000000px;}
.y3c{bottom:160.314000px;}
.ybc{bottom:166.849500px;}
.y1f{bottom:173.425500px;}
.y8c{bottom:188.200500px;}
.y5a{bottom:190.800000px;}
.yd4{bottom:199.663500px;}
.y3b{bottom:207.547500px;}
.ya3{bottom:208.651500px;}
.ybb{bottom:211.590000px;}
.ya2{bottom:212.697000px;}
.y59{bottom:221.286000px;}
.yd3{bottom:230.149500px;}
.y89{bottom:230.322000px;}
.y88{bottom:232.357500px;}
.yba{bottom:242.076000px;}
.y87{bottom:243.583500px;}
.y8b{bottom:247.350000px;}
.y58{bottom:251.770500px;}
.y8a{bottom:254.653500px;}
.y3a{bottom:254.781000px;}
.yf5{bottom:254.904000px;}
.yf{bottom:254.989500px;}
.yd2{bottom:260.635500px;}
.ya1{bottom:265.080000px;}
.y74{bottom:273.031500px;}
.ye{bottom:279.648000px;}
.y57{bottom:282.256500px;}
.yf4{bottom:285.390000px;}
.y39{bottom:285.459000px;}
.yb9{bottom:293.821500px;}
.y86{bottom:296.365500px;}
.ya0{bottom:306.237000px;}
.yd{bottom:307.294500px;}
.yd1{bottom:312.381000px;}
.y56{bottom:312.742500px;}
.y9f{bottom:313.417500px;}
.y38{bottom:316.137000px;}
.y9e{bottom:317.461500px;}
.yf3{bottom:330.819000px;}
.y73{bottom:333.072000px;}
.yc{bottom:334.941000px;}
.y84{bottom:337.924500px;}
.y55{bottom:343.228500px;}
.y85{bottom:345.103500px;}
.y37{bottom:346.815000px;}
.y83{bottom:349.149000px;}
.y11b{bottom:353.838000px;}
.yb8{bottom:354.393000px;}
.yb{bottom:362.586000px;}
.y72{bottom:363.558000px;}
.ye3{bottom:368.610000px;}
.y9d{bottom:369.844500px;}
.yd0{bottom:372.105000px;}
.y54{bottom:373.714500px;}
.yf2{bottom:376.248000px;}
.y36{bottom:377.493000px;}
.y11a{bottom:380.737500px;}
.yb7{bottom:384.879000px;}
.ya{bottom:390.232500px;}
.y71{bottom:394.044000px;}
.y9c{bottom:400.330500px;}
.y82{bottom:401.931000px;}
.ycf{bottom:402.591000px;}
.y119{bottom:407.637000px;}
.y53{bottom:410.449500px;}
.y9{bottom:414.891000px;}
.yb6{bottom:415.365000px;}
.ye2{bottom:420.891000px;}
.yf1{bottom:421.678500px;}
.y6e{bottom:422.146500px;}
.y6d{bottom:424.183500px;}
.y35{bottom:424.726500px;}
.yce{bottom:433.077000px;}
.y118{bottom:434.536500px;}
.y6c{bottom:435.408000px;}
.y70{bottom:439.176000px;}
.y52{bottom:440.935500px;}
.yb5{bottom:445.849500px;}
.y6f{bottom:446.478000px;}
.y9b{bottom:453.895500px;}
.y81{bottom:454.714500px;}
.y34{bottom:455.404500px;}
.y117{bottom:461.434500px;}
.ycd{bottom:463.561500px;}
.yf0{bottom:467.107500px;}
.y51{bottom:471.420000px;}
.y6b{bottom:476.772000px;}
.y33{bottom:486.082500px;}
.y116{bottom:488.334000px;}
.ycc{bottom:494.047500px;}
.yb4{bottom:497.595000px;}
.y50{bottom:501.906000px;}
.ye1{bottom:505.363500px;}
.y80{bottom:507.498000px;}
.yef{bottom:512.538000px;}
.y115{bottom:515.233500px;}
.y32{bottom:516.760500px;}
.yb3{bottom:524.494500px;}
.y9a{bottom:525.208500px;}
.y6a{bottom:528.517500px;}
.y8{bottom:531.609000px;}
.y4f{bottom:532.392000px;}
.ye0{bottom:535.849500px;}
.y114{bottom:542.133000px;}
.ycb{bottom:545.793000px;}
.y31{bottom:547.438500px;}
.y99{bottom:555.694500px;}
.y101{bottom:556.716000px;}
.yee{bottom:557.967000px;}
.y7f{bottom:561.196500px;}
.ydf{bottom:566.334000px;}
.y113{bottom:569.031000px;}
.y4e{bottom:569.127000px;}
.y30{bottom:578.116500px;}
.y7{bottom:584.020500px;}
.yb2{bottom:585.066000px;}
.y98{bottom:586.180500px;}
.y100{bottom:587.200500px;}
.y69{bottom:588.558000px;}
.y112{bottom:595.930500px;}
.yde{bottom:596.820000px;}
.y4d{bottom:599.613000px;}
.yca{bottom:605.518500px;}
.y2f{bottom:608.794500px;}
.yed{bottom:609.712500px;}
.y6{bottom:610.920000px;}
.yb1{bottom:615.552000px;}
.yff{bottom:617.686500px;}
.y67{bottom:618.697500px;}
.y111{bottom:622.830000px;}
.y68{bottom:625.876500px;}
.y97{bottom:627.337500px;}
.y66{bottom:629.922000px;}
.y4c{bottom:630.099000px;}
.y7e{bottom:633.271500px;}
.yc9{bottom:636.003000px;}
.y5{bottom:637.818000px;}
.y2e{bottom:639.472500px;}
.yb0{bottom:646.038000px;}
.yfe{bottom:648.172500px;}
.y96{bottom:649.633500px;}
.y110{bottom:649.729500px;}
.ydd{bottom:652.687500px;}
.y4b{bottom:660.583500px;}
.y7d{bottom:663.757500px;}
.yc8{bottom:666.489000px;}
.yec{bottom:670.627500px;}
.y65{bottom:671.286000px;}
.yaf{bottom:676.524000px;}
.y10f{bottom:676.627500px;}
.y2d{bottom:686.706000px;}
.yc7{bottom:690.615000px;}
.y95{bottom:690.945000px;}
.y7c{bottom:694.243500px;}
.y4a{bottom:697.318500px;}
.yfd{bottom:699.918000px;}
.yeb{bottom:701.113500px;}
.y64{bottom:701.772000px;}
.y10e{bottom:703.527000px;}
.yc6{bottom:707.445000px;}
.y2c{bottom:717.384000px;}
.y94{bottom:721.431000px;}
.y49{bottom:727.804500px;}
.yae{bottom:728.269500px;}
.y10d{bottom:730.426500px;}
.yea{bottom:731.599500px;}
.y63{bottom:743.136000px;}
.yc5{bottom:746.794500px;}
.y7b{bottom:747.940500px;}
.y2b{bottom:748.062000px;}
.y1e{bottom:756.250500px;}
.y10c{bottom:757.326000px;}
.y48{bottom:758.290500px;}
.yfc{bottom:760.833000px;}
.ye9{bottom:762.085500px;}
.ydc{bottom:773.436000px;}
.y7a{bottom:774.840000px;}
.y93{bottom:774.996000px;}
.yc4{bottom:777.280500px;}
.y2a{bottom:778.740000px;}
.y4{bottom:781.843500px;}
.y10b{bottom:784.224000px;}
.y62{bottom:784.500000px;}
.y1d{bottom:786.736500px;}
.y47{bottom:788.776500px;}
.yfb{bottom:791.319000px;}
.ye8{bottom:792.570000px;}
.ydb{bottom:808.837500px;}
.y29{bottom:809.418000px;}
.yad{bottom:811.018500px;}
.y10a{bottom:811.123500px;}
.ye7{bottom:823.056000px;}
.y46{bottom:825.511500px;}
.y1c{bottom:827.113500px;}
.yc3{bottom:829.026000px;}
.yfa{bottom:834.198000px;}
.yda{bottom:835.735500px;}
.y61{bottom:836.245500px;}
.y109{bottom:838.023000px;}
.yf9{bottom:838.242000px;}
.y28{bottom:840.096000px;}
.y92{bottom:846.309000px;}
.yac{bottom:846.420000px;}
.y79{bottom:846.915000px;}
.ye6{bottom:853.542000px;}
.y1b{bottom:854.013000px;}
.y45{bottom:855.997500px;}
.yd9{bottom:862.635000px;}
.y108{bottom:864.922500px;}
.y27{bottom:870.774000px;}
.yab{bottom:873.318000px;}
.y91{bottom:876.795000px;}
.y1a{bottom:880.912500px;}
.yf8{bottom:885.166500px;}
.yc2{bottom:888.750000px;}
.yd8{bottom:889.534500px;}
.y107{bottom:891.820500px;}
.y44{bottom:892.732500px;}
.y60{bottom:896.287500px;}
.yaa{bottom:900.217500px;}
.y78{bottom:901.548000px;}
.ye5{bottom:905.287500px;}
.y19{bottom:907.810500px;}
.yd7{bottom:916.434000px;}
.y26{bottom:918.007500px;}
.y106{bottom:918.720000px;}
.yc1{bottom:919.236000px;}
.y43{bottom:923.218500px;}
.ya9{bottom:927.117000px;}
.y90{bottom:929.178000px;}
.yf7{bottom:932.091000px;}
.y18{bottom:934.710000px;}
.y5f{bottom:937.651500px;}
.y3{bottom:942.895500px;}
.yd6{bottom:943.930500px;}
.y105{bottom:945.619500px;}
.y25{bottom:948.685500px;}
.y77{bottom:951.876000px;}
.y42{bottom:953.703000px;}
.ya8{bottom:954.613500px;}
.yc0{bottom:958.585500px;}
.y17{bottom:961.609500px;}
.ye4{bottom:966.202500px;}
.y104{bottom:972.519000px;}
.y2{bottom:974.277000px;}
.y5e{bottom:979.015500px;}
.y24{bottom:979.363500px;}
.y8f{bottom:981.559500px;}
.y16{bottom:988.509000px;}
.y41{bottom:990.438000px;}
.ya7{bottom:996.688500px;}
.ybf{bottom:997.935000px;}
.y103{bottom:999.417000px;}
.yf6{bottom:1005.454500px;}
.y5d{bottom:1009.500000px;}
.y23{bottom:1010.041500px;}
.y40{bottom:1020.924000px;}
.yd5{bottom:1024.933500px;}
.y102{bottom:1026.316500px;}
.ya6{bottom:1027.174500px;}
.y15{bottom:1027.213500px;}
.y14{bottom:1032.636000px;}
.y8e{bottom:1033.942500px;}
.y5c{bottom:1039.986000px;}
.y1{bottom:1040.139000px;}
.y22{bottom:1040.719500px;}
.y76{bottom:1045.419000px;}
.ybe{bottom:1049.680500px;}
.y3f{bottom:1051.410000px;}
.ya5{bottom:1057.659000px;}
.y12{bottom:1059.342000px;}
.y13{bottom:1065.280500px;}
.y3e{bottom:1081.896000px;}
.y8d{bottom:1086.325500px;}
.y21{bottom:1087.953000px;}
.ya4{bottom:1088.145000px;}
.y5b{bottom:1091.731500px;}
.y3d{bottom:1093.041000px;}
.y11{bottom:1108.509000px;}
.ybd{bottom:1109.404500px;}
.y75{bottom:1138.962000px;}
.y10{bottom:1139.890500px;}
.y20{bottom:1192.194000px;}
.hc{height:16.677504px;}
.ha{height:27.783619px;}
.h9{height:33.665702px;}
.h20{height:33.713523px;}
.h7{height:37.927872px;}
.hb{height:42.799330px;}
.h6{height:44.831700px;}
.h8{height:49.090950px;}
.h5{height:50.211840px;}
.h1e{height:53.755715px;}
.h22{height:53.761715px;}
.h3{height:53.798400px;}
.h12{height:55.089024px;}
.h18{height:55.095024px;}
.h19{height:57.419702px;}
.h2{height:60.254040px;}
.h1f{height:60.597024px;}
.h13{height:60.689702px;}
.h1a{height:60.695702px;}
.h21{height:60.737523px;}
.h15{height:65.272950px;}
.h23{height:68.409024px;}
.hd{height:85.173024px;}
.h10{height:86.343024px;}
.he{height:93.370950px;}
.h1c{height:93.988950px;}
.h14{height:105.587702px;}
.h1d{height:109.552950px;}
.hf{height:115.059024px;}
.h17{height:115.065024px;}
.h4{height:118.806914px;}
.h11{height:135.481715px;}
.h16{height:135.487715px;}
.h1b{height:138.274950px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:106.215000px;}
.x13{left:108.000000px;}
.x14{left:110.739000px;}
.x18{left:114.363000px;}
.x77{left:115.471500px;}
.x35{left:118.285500px;}
.x17{left:120.727500px;}
.xa{left:125.932500px;}
.x1c{left:130.416000px;}
.x19{left:138.474000px;}
.x1a{left:139.609500px;}
.x40{left:141.079500px;}
.x5b{left:144.021000px;}
.x61{left:146.802000px;}
.x41{left:148.749000px;}
.x4a{left:152.842500px;}
.x25{left:154.212000px;}
.x68{left:155.481000px;}
.x12{left:158.809500px;}
.x5f{left:163.773000px;}
.x6d{left:166.104000px;}
.x62{left:171.022500px;}
.x11{left:173.754000px;}
.x4b{left:175.410000px;}
.x63{left:177.513000px;}
.x26{left:181.545000px;}
.x34{left:182.605500px;}
.x64{left:185.184000px;}
.x69{left:195.298500px;}
.x1{left:204.213000px;}
.x4c{left:205.651500px;}
.xb{left:212.836500px;}
.xf{left:214.422000px;}
.x10{left:221.125500px;}
.xc{left:223.947000px;}
.x4d{left:227.802000px;}
.x6f{left:235.708500px;}
.x5a{left:239.320500px;}
.x44{left:243.397500px;}
.x6e{left:247.767000px;}
.x36{left:259.411500px;}
.x42{left:273.643500px;}
.x2{left:274.819500px;}
.x65{left:279.117000px;}
.x1d{left:280.512000px;}
.x76{left:281.763000px;}
.x6c{left:292.405500px;}
.x45{left:296.607000px;}
.x31{left:300.363000px;}
.x4e{left:303.225000px;}
.x49{left:306.750000px;}
.x32{left:308.032500px;}
.x46{left:311.848500px;}
.x30{left:313.756500px;}
.x59{left:315.273000px;}
.x22{left:317.257500px;}
.x6{left:329.793000px;}
.x1e{left:332.155500px;}
.x3a{left:334.891500px;}
.x43{left:335.950500px;}
.x23{left:342.996000px;}
.x2a{left:345.090000px;}
.x37{left:346.695000px;}
.x3{left:349.677000px;}
.x60{left:354.622500px;}
.x5d{left:356.097000px;}
.x24{left:359.878500px;}
.x29{left:363.562500px;}
.x1f{left:368.238000px;}
.x1b{left:373.006500px;}
.x4{left:375.504000px;}
.x57{left:378.759000px;}
.x5{left:381.384000px;}
.xd{left:382.602000px;}
.x33{left:387.181500px;}
.x58{left:388.305000px;}
.x7{left:392.640000px;}
.x74{left:396.009000px;}
.x70{left:400.602000px;}
.x8{left:405.966000px;}
.x16{left:409.203000px;}
.x54{left:411.046500px;}
.x5c{left:413.916000px;}
.x4f{left:419.283000px;}
.x2b{left:426.630000px;}
.x3b{left:436.828500px;}
.x27{left:437.982000px;}
.x66{left:444.277500px;}
.x2c{left:447.634500px;}
.x38{left:453.469500px;}
.x3c{left:457.833000px;}
.x67{left:460.405500px;}
.x55{left:462.154500px;}
.x2d{left:472.246500px;}
.x2e{left:476.505000px;}
.x3d{left:482.445000px;}
.x3e{left:486.703500px;}
.x75{left:490.800000px;}
.x50{left:498.076500px;}
.x56{left:499.785000px;}
.x6a{left:500.989500px;}
.x71{left:502.567500px;}
.xe{left:511.759500px;}
.x6b{left:516.303000px;}
.x28{left:522.457500px;}
.x39{left:532.656000px;}
.x72{left:536.670000px;}
.x73{left:544.222500px;}
.x2f{left:546.763500px;}
.x51{left:548.763000px;}
.x47{left:552.453000px;}
.x3f{left:556.962000px;}
.x48{left:576.298500px;}
.x52{left:591.670500px;}
.x53{left:641.145000px;}
.x20{left:725.196000px;}
.x21{left:745.365000px;}
.x5e{left:791.013000px;}
.x15{left:799.195500px;}
@media print{
.v1{vertical-align:-22.314667pt;}
.v2{vertical-align:-20.314667pt;}
.vf{vertical-align:-13.397333pt;}
.v3{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v13{vertical-align:5.658667pt;}
.v9{vertical-align:14.384000pt;}
.v10{vertical-align:21.114667pt;}
.vd{vertical-align:24.021333pt;}
.v11{vertical-align:31.184000pt;}
.v5{vertical-align:39.360000pt;}
.v12{vertical-align:45.013333pt;}
.ve{vertical-align:46.842667pt;}
.v14{vertical-align:51.738667pt;}
.v15{vertical-align:58.682667pt;}
.vc{vertical-align:60.240000pt;}
.v7{vertical-align:63.936000pt;}
.v4{vertical-align:73.584000pt;}
.v8{vertical-align:74.624000pt;}
.vb{vertical-align:96.666667pt;}
.v6{vertical-align:100.149333pt;}
.va{vertical-align:113.493333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls56{letter-spacing:0.000446pt;}
.ls5e{letter-spacing:0.000749pt;}
.ls54{letter-spacing:0.000917pt;}
.ls3e{letter-spacing:0.001403pt;}
.ls12{letter-spacing:0.001788pt;}
.ls41{letter-spacing:0.001898pt;}
.ls4{letter-spacing:0.001899pt;}
.ls49{letter-spacing:0.002391pt;}
.ls31{letter-spacing:0.002393pt;}
.ls58{letter-spacing:0.002879pt;}
.ls1c{letter-spacing:0.003856pt;}
.ls24{letter-spacing:0.004333pt;}
.ls3a{letter-spacing:0.004336pt;}
.ls2e{letter-spacing:0.004826pt;}
.ls2f{letter-spacing:0.006658pt;}
.ls51{letter-spacing:0.007681pt;}
.ls2d{letter-spacing:0.010106pt;}
.ls4b{letter-spacing:0.014304pt;}
.ls2a{letter-spacing:0.018307pt;}
.ls13{letter-spacing:1.617899pt;}
.ls8{letter-spacing:1.629092pt;}
.ls25{letter-spacing:1.641500pt;}
.ls2b{letter-spacing:2.653258pt;}
.ls52{letter-spacing:2.654275pt;}
.ls36{letter-spacing:2.657087pt;}
.lsb{letter-spacing:2.657546pt;}
.ls22{letter-spacing:2.658591pt;}
.ls55{letter-spacing:2.659608pt;}
.ls5c{letter-spacing:2.660263pt;}
.ls5f{letter-spacing:4.294244pt;}
.ls38{letter-spacing:4.838541pt;}
.ls14{letter-spacing:5.969546pt;}
.ls47{letter-spacing:6.225460pt;}
.lsa{letter-spacing:6.283642pt;}
.ls27{letter-spacing:6.347474pt;}
.ls18{letter-spacing:6.363063pt;}
.ls1d{letter-spacing:7.413828pt;}
.ls5b{letter-spacing:8.094805pt;}
.ls5a{letter-spacing:8.932825pt;}
.ls15{letter-spacing:9.697788pt;}
.ls60{letter-spacing:9.702082pt;}
.ls35{letter-spacing:9.716372pt;}
.ls50{letter-spacing:12.350275pt;}
.lsf{letter-spacing:12.916374pt;}
.ls40{letter-spacing:12.931851pt;}
.ls32{letter-spacing:13.149102pt;}
.ls21{letter-spacing:15.581258pt;}
.lse{letter-spacing:15.585546pt;}
.ls2c{letter-spacing:15.586591pt;}
.ls33{letter-spacing:16.000013pt;}
.ls19{letter-spacing:16.071733pt;}
.ls4a{letter-spacing:16.159477pt;}
.ls17{letter-spacing:16.174559pt;}
.ls44{letter-spacing:16.176397pt;}
.ls6{letter-spacing:16.181730pt;}
.ls3b{letter-spacing:16.407286pt;}
.ls3d{letter-spacing:18.752396pt;}
.ls3c{letter-spacing:18.813258pt;}
.ls3{letter-spacing:19.039527pt;}
.ls20{letter-spacing:19.258198pt;}
.ls1f{letter-spacing:19.374562pt;}
.ls43{letter-spacing:19.432743pt;}
.ls34{letter-spacing:19.840017pt;}
.ls5{letter-spacing:20.305471pt;}
.ls1b{letter-spacing:21.518528pt;}
.ls29{letter-spacing:22.045258pt;}
.ls10{letter-spacing:22.538144pt;}
.ls1a{letter-spacing:23.614824pt;}
.ls4d{letter-spacing:24.203657pt;}
.ls11{letter-spacing:25.767733pt;}
.ls9{letter-spacing:25.832749pt;}
.ls46{letter-spacing:27.461841pt;}
.ls59{letter-spacing:31.883663pt;}
.ls1{letter-spacing:31.896474pt;}
.ls4f{letter-spacing:32.328098pt;}
.ls7{letter-spacing:33.305490pt;}
.ls45{letter-spacing:33.310824pt;}
.ls4e{letter-spacing:33.920028pt;}
.lsd{letter-spacing:34.982879pt;}
.ls37{letter-spacing:150.721805pt;}
.ls0{letter-spacing:310.561617pt;}
.ls39{letter-spacing:550.342277pt;}
.ls28{letter-spacing:656.756911pt;}
.ls30{letter-spacing:660.538732pt;}
.ls48{letter-spacing:686.895118pt;}
.ls23{letter-spacing:698.706037pt;}
.lsc{letter-spacing:708.189681pt;}
.ls1e{letter-spacing:715.636960pt;}
.ls4c{letter-spacing:728.495153pt;}
.ls57{letter-spacing:745.542439pt;}
.ls26{letter-spacing:761.193362pt;}
.ls16{letter-spacing:801.280668pt;}
.ls42{letter-spacing:812.742495pt;}
.ls53{letter-spacing:820.887957pt;}
.ls61{letter-spacing:836.189788pt;}
.ls5d{letter-spacing:896.698929pt;}
.ls3f{letter-spacing:927.535318pt;}
.ws4d{word-spacing:-42.066082pt;}
.ws3b{word-spacing:-37.899668pt;}
.ws5c{word-spacing:-34.611401pt;}
.ws42{word-spacing:-29.521250pt;}
.ws24{word-spacing:-29.090933pt;}
.ws55{word-spacing:-28.241478pt;}
.ws49{word-spacing:-28.008751pt;}
.ws7e{word-spacing:-26.566933pt;}
.ws3d{word-spacing:-25.832749pt;}
.ws5b{word-spacing:-25.791179pt;}
.ws4a{word-spacing:-25.099657pt;}
.wse{word-spacing:-24.575109pt;}
.ws4b{word-spacing:-21.725109pt;}
.ws3a{word-spacing:-16.162923pt;}
.ws63{word-spacing:-14.545467pt;}
.ws43{word-spacing:-14.370921pt;}
.ws57{word-spacing:-14.196375pt;}
.ws47{word-spacing:-13.905466pt;}
.ws66{word-spacing:-13.498193pt;}
.ws56{word-spacing:-13.090920pt;}
.wsd{word-spacing:-13.040732pt;}
.ws58{word-spacing:-12.683647pt;}
.ws48{word-spacing:-12.543875pt;}
.ws20{word-spacing:-12.276374pt;}
.ws53{word-spacing:-12.101828pt;}
.ws29{word-spacing:-11.869101pt;}
.ws2c{word-spacing:-11.461828pt;}
.ws68{word-spacing:-11.403646pt;}
.ws14{word-spacing:-10.839309pt;}
.ws46{word-spacing:-10.705463pt;}
.ws64{word-spacing:-10.530918pt;}
.ws36{word-spacing:-10.356372pt;}
.ws37{word-spacing:-10.201702pt;}
.ws44{word-spacing:-10.148569pt;}
.ws5e{word-spacing:-10.065463pt;}
.ws28{word-spacing:-10.007281pt;}
.ws2b{word-spacing:-9.949099pt;}
.ws21{word-spacing:-9.890917pt;}
.ws78{word-spacing:-9.882899pt;}
.ws23{word-spacing:-9.832735pt;}
.ws22{word-spacing:-9.774554pt;}
.ws1a{word-spacing:-9.716372pt;}
.ws1b{word-spacing:-9.658190pt;}
.ws5d{word-spacing:-9.600008pt;}
.ws3f{word-spacing:-9.541826pt;}
.ws26{word-spacing:-9.483644pt;}
.ws75{word-spacing:-9.463142pt;}
.ws39{word-spacing:-9.425462pt;}
.wsb{word-spacing:-9.406351pt;}
.ws25{word-spacing:-9.367281pt;}
.ws9{word-spacing:-9.358531pt;}
.wsc{word-spacing:-9.320274pt;}
.ws45{word-spacing:-9.309099pt;}
.ws30{word-spacing:-9.250917pt;}
.ws2a{word-spacing:-9.198553pt;}
.ws7c{word-spacing:-9.139025pt;}
.ws79{word-spacing:-9.038071pt;}
.ws6{word-spacing:-9.023785pt;}
.ws61{word-spacing:-8.960007pt;}
.ws4{word-spacing:-8.873356pt;}
.ws69{word-spacing:-8.843644pt;}
.ws67{word-spacing:-8.820222pt;}
.ws16{word-spacing:-8.767088pt;}
.ws15{word-spacing:-8.713954pt;}
.ws85{word-spacing:-8.660820pt;}
.ws83{word-spacing:-8.607686pt;}
.ws13{word-spacing:-8.501419pt;}
.ws7d{word-spacing:-8.453598pt;}
.ws1f{word-spacing:-8.320007pt;}
.ws62{word-spacing:-8.267643pt;}
.ws7{word-spacing:-8.220396pt;}
.ws86{word-spacing:-8.187929pt;}
.wsa{word-spacing:-8.172575pt;}
.ws71{word-spacing:-8.134795pt;}
.ws8{word-spacing:-8.124754pt;}
.ws74{word-spacing:-8.028527pt;}
.ws17{word-spacing:-8.023214pt;}
.ws7f{word-spacing:-7.975393pt;}
.ws84{word-spacing:-7.922260pt;}
.ws5{word-spacing:-7.837829pt;}
.ws5a{word-spacing:-7.796370pt;}
.ws80{word-spacing:-7.762858pt;}
.ws35{word-spacing:-7.563643pt;}
.ws76{word-spacing:-7.438741pt;}
.ws2f{word-spacing:-7.156370pt;}
.ws6c{word-spacing:-7.098188pt;}
.ws77{word-spacing:-6.912716pt;}
.ws4e{word-spacing:-6.780404pt;}
.ws18{word-spacing:-6.694867pt;}
.ws3c{word-spacing:-6.446551pt;}
.ws6a{word-spacing:-6.109096pt;}
.ws41{word-spacing:-5.748368pt;}
.ws6b{word-spacing:-5.701823pt;}
.ws73{word-spacing:-5.478102pt;}
.ws19{word-spacing:-5.178186pt;}
.ws60{word-spacing:-4.945459pt;}
.ws72{word-spacing:-4.888316pt;}
.ws38{word-spacing:-4.712731pt;}
.ws12{word-spacing:-4.468558pt;}
.ws31{word-spacing:-4.247276pt;}
.ws34{word-spacing:-4.014549pt;}
.ws6f{word-spacing:-3.781821pt;}
.ws70{word-spacing:-3.723639pt;}
.ws81{word-spacing:-3.134898pt;}
.ws82{word-spacing:-2.927676pt;}
.ws2d{word-spacing:-2.909093pt;}
.ws2e{word-spacing:-2.501820pt;}
.ws6e{word-spacing:-2.327275pt;}
.ws32{word-spacing:-1.925820pt;}
.ws33{word-spacing:-1.512729pt;}
.ws6d{word-spacing:-0.698182pt;}
.ws7b{word-spacing:-0.696054pt;}
.ws7a{word-spacing:-0.690740pt;}
.ws27{word-spacing:-0.640001pt;}
.ws4f{word-spacing:-0.190006pt;}
.ws2{word-spacing:-0.148775pt;}
.wsf{word-spacing:0.000000pt;}
.ws4c{word-spacing:0.011636pt;}
.ws10{word-spacing:2.385457pt;}
.ws50{word-spacing:6.273994pt;}
.ws5f{word-spacing:6.275956pt;}
.ws65{word-spacing:6.277709pt;}
.ws59{word-spacing:6.279327pt;}
.ws40{word-spacing:6.291265pt;}
.ws54{word-spacing:9.511327pt;}
.ws11{word-spacing:10.159221pt;}
.ws1{word-spacing:20.786108pt;}
.ws3{word-spacing:23.846639pt;}
.ws0{word-spacing:28.615887pt;}
.ws1e{word-spacing:30.551973pt;}
.ws51{word-spacing:88.122255pt;}
.ws52{word-spacing:625.606340pt;}
.ws3e{word-spacing:844.661068pt;}
.ws1c{word-spacing:2001.799006pt;}
.ws1d{word-spacing:2025.083389pt;}
._31{margin-left:-9.719806pt;}
._1{margin-left:-7.115715pt;}
._2{margin-left:-5.228407pt;}
._6{margin-left:-3.581257pt;}
._5{margin-left:-2.529199pt;}
._4{margin-left:-1.487748pt;}
._3{width:1.071193pt;}
._0{width:2.371905pt;}
._7{width:15.508794pt;}
._8{width:18.345108pt;}
._2e{width:20.290618pt;}
._3f{width:22.053326pt;}
._b{width:23.259906pt;}
._a{width:24.292918pt;}
._32{width:25.268434pt;}
._28{width:26.243478pt;}
._c{width:27.249158pt;}
._2a{width:29.183378pt;}
._2d{width:30.429116pt;}
._9{width:32.433139pt;}
._2b{width:34.493886pt;}
._40{width:37.736113pt;}
._30{width:41.483671pt;}
._2c{width:42.589894pt;}
._42{width:44.834300pt;}
._41{width:49.301858pt;}
._35{width:50.362390pt;}
._29{width:57.777313pt;}
._2f{width:61.733038pt;}
._33{width:126.354161pt;}
._39{width:187.690106pt;}
._37{width:211.783077pt;}
._36{width:218.106007pt;}
._34{width:231.451123pt;}
._38{width:257.159399pt;}
._3e{width:315.211386pt;}
._13{width:424.397451pt;}
._3b{width:434.528762pt;}
._3a{width:457.429458pt;}
._3d{width:520.998851pt;}
._3c{width:524.484398pt;}
._1a{width:721.635057pt;}
._21{width:773.149435pt;}
._14{width:1044.782474pt;}
._26{width:1119.472885pt;}
._1c{width:1148.330015pt;}
._27{width:1219.002902pt;}
._1d{width:1237.155644pt;}
._17{width:1340.453438pt;}
._1e{width:1367.892728pt;}
._16{width:1395.388549pt;}
._12{width:1408.694945pt;}
._18{width:1415.029039pt;}
._24{width:1477.408222pt;}
._f{width:1531.308572pt;}
._e{width:1580.931506pt;}
._15{width:1611.807841pt;}
._23{width:1617.817825pt;}
._1b{width:1697.975186pt;}
._1f{width:1714.632451pt;}
._10{width:1717.904187pt;}
._22{width:1721.556093pt;}
._11{width:1745.540574pt;}
._25{width:1789.137403pt;}
._19{width:1909.493688pt;}
._20{width:2013.714652pt;}
._d{width:2033.098906pt;}
.fs9{font-size:31.880533pt;}
.fs8{font-size:37.193600pt;}
.fs7{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs6{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.fs3{font-size:104.142400pt;}
.fs2{font-size:148.775467pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:142.501333pt;}
.ybc{bottom:148.310667pt;}
.y1f{bottom:154.156000pt;}
.y8c{bottom:167.289333pt;}
.y5a{bottom:169.600000pt;}
.yd4{bottom:177.478667pt;}
.y3b{bottom:184.486667pt;}
.ya3{bottom:185.468000pt;}
.ybb{bottom:188.080000pt;}
.ya2{bottom:189.064000pt;}
.y59{bottom:196.698667pt;}
.yd3{bottom:204.577333pt;}
.y89{bottom:204.730667pt;}
.y88{bottom:206.540000pt;}
.yba{bottom:215.178667pt;}
.y87{bottom:216.518667pt;}
.y8b{bottom:219.866667pt;}
.y58{bottom:223.796000pt;}
.y8a{bottom:226.358667pt;}
.y3a{bottom:226.472000pt;}
.yf5{bottom:226.581333pt;}
.yf{bottom:226.657333pt;}
.yd2{bottom:231.676000pt;}
.ya1{bottom:235.626667pt;}
.y74{bottom:242.694667pt;}
.ye{bottom:248.576000pt;}
.y57{bottom:250.894667pt;}
.yf4{bottom:253.680000pt;}
.y39{bottom:253.741333pt;}
.yb9{bottom:261.174667pt;}
.y86{bottom:263.436000pt;}
.ya0{bottom:272.210667pt;}
.yd{bottom:273.150667pt;}
.yd1{bottom:277.672000pt;}
.y56{bottom:277.993333pt;}
.y9f{bottom:278.593333pt;}
.y38{bottom:281.010667pt;}
.y9e{bottom:282.188000pt;}
.yf3{bottom:294.061333pt;}
.y73{bottom:296.064000pt;}
.yc{bottom:297.725333pt;}
.y84{bottom:300.377333pt;}
.y55{bottom:305.092000pt;}
.y85{bottom:306.758667pt;}
.y37{bottom:308.280000pt;}
.y83{bottom:310.354667pt;}
.y11b{bottom:314.522667pt;}
.yb8{bottom:315.016000pt;}
.yb{bottom:322.298667pt;}
.y72{bottom:323.162667pt;}
.ye3{bottom:327.653333pt;}
.y9d{bottom:328.750667pt;}
.yd0{bottom:330.760000pt;}
.y54{bottom:332.190667pt;}
.yf2{bottom:334.442667pt;}
.y36{bottom:335.549333pt;}
.y11a{bottom:338.433333pt;}
.yb7{bottom:342.114667pt;}
.ya{bottom:346.873333pt;}
.y71{bottom:350.261333pt;}
.y9c{bottom:355.849333pt;}
.y82{bottom:357.272000pt;}
.ycf{bottom:357.858667pt;}
.y119{bottom:362.344000pt;}
.y53{bottom:364.844000pt;}
.y9{bottom:368.792000pt;}
.yb6{bottom:369.213333pt;}
.ye2{bottom:374.125333pt;}
.yf1{bottom:374.825333pt;}
.y6e{bottom:375.241333pt;}
.y6d{bottom:377.052000pt;}
.y35{bottom:377.534667pt;}
.yce{bottom:384.957333pt;}
.y118{bottom:386.254667pt;}
.y6c{bottom:387.029333pt;}
.y70{bottom:390.378667pt;}
.y52{bottom:391.942667pt;}
.yb5{bottom:396.310667pt;}
.y6f{bottom:396.869333pt;}
.y9b{bottom:403.462667pt;}
.y81{bottom:404.190667pt;}
.y34{bottom:404.804000pt;}
.y117{bottom:410.164000pt;}
.ycd{bottom:412.054667pt;}
.yf0{bottom:415.206667pt;}
.y51{bottom:419.040000pt;}
.y6b{bottom:423.797333pt;}
.y33{bottom:432.073333pt;}
.y116{bottom:434.074667pt;}
.ycc{bottom:439.153333pt;}
.yb4{bottom:442.306667pt;}
.y50{bottom:446.138667pt;}
.ye1{bottom:449.212000pt;}
.y80{bottom:451.109333pt;}
.yef{bottom:455.589333pt;}
.y115{bottom:457.985333pt;}
.y32{bottom:459.342667pt;}
.yb3{bottom:466.217333pt;}
.y9a{bottom:466.852000pt;}
.y6a{bottom:469.793333pt;}
.y8{bottom:472.541333pt;}
.y4f{bottom:473.237333pt;}
.ye0{bottom:476.310667pt;}
.y114{bottom:481.896000pt;}
.ycb{bottom:485.149333pt;}
.y31{bottom:486.612000pt;}
.y99{bottom:493.950667pt;}
.y101{bottom:494.858667pt;}
.yee{bottom:495.970667pt;}
.y7f{bottom:498.841333pt;}
.ydf{bottom:503.408000pt;}
.y113{bottom:505.805333pt;}
.y4e{bottom:505.890667pt;}
.y30{bottom:513.881333pt;}
.y7{bottom:519.129333pt;}
.yb2{bottom:520.058667pt;}
.y98{bottom:521.049333pt;}
.y100{bottom:521.956000pt;}
.y69{bottom:523.162667pt;}
.y112{bottom:529.716000pt;}
.yde{bottom:530.506667pt;}
.y4d{bottom:532.989333pt;}
.yca{bottom:538.238667pt;}
.y2f{bottom:541.150667pt;}
.yed{bottom:541.966667pt;}
.y6{bottom:543.040000pt;}
.yb1{bottom:547.157333pt;}
.yff{bottom:549.054667pt;}
.y67{bottom:549.953333pt;}
.y111{bottom:553.626667pt;}
.y68{bottom:556.334667pt;}
.y97{bottom:557.633333pt;}
.y66{bottom:559.930667pt;}
.y4c{bottom:560.088000pt;}
.y7e{bottom:562.908000pt;}
.yc9{bottom:565.336000pt;}
.y5{bottom:566.949333pt;}
.y2e{bottom:568.420000pt;}
.yb0{bottom:574.256000pt;}
.yfe{bottom:576.153333pt;}
.y96{bottom:577.452000pt;}
.y110{bottom:577.537333pt;}
.ydd{bottom:580.166667pt;}
.y4b{bottom:587.185333pt;}
.y7d{bottom:590.006667pt;}
.yc8{bottom:592.434667pt;}
.yec{bottom:596.113333pt;}
.y65{bottom:596.698667pt;}
.yaf{bottom:601.354667pt;}
.y10f{bottom:601.446667pt;}
.y2d{bottom:610.405333pt;}
.yc7{bottom:613.880000pt;}
.y95{bottom:614.173333pt;}
.y7c{bottom:617.105333pt;}
.y4a{bottom:619.838667pt;}
.yfd{bottom:622.149333pt;}
.yeb{bottom:623.212000pt;}
.y64{bottom:623.797333pt;}
.y10e{bottom:625.357333pt;}
.yc6{bottom:628.840000pt;}
.y2c{bottom:637.674667pt;}
.y94{bottom:641.272000pt;}
.y49{bottom:646.937333pt;}
.yae{bottom:647.350667pt;}
.y10d{bottom:649.268000pt;}
.yea{bottom:650.310667pt;}
.y63{bottom:660.565333pt;}
.yc5{bottom:663.817333pt;}
.y7b{bottom:664.836000pt;}
.y2b{bottom:664.944000pt;}
.y1e{bottom:672.222667pt;}
.y10c{bottom:673.178667pt;}
.y48{bottom:674.036000pt;}
.yfc{bottom:676.296000pt;}
.ye9{bottom:677.409333pt;}
.ydc{bottom:687.498667pt;}
.y7a{bottom:688.746667pt;}
.y93{bottom:688.885333pt;}
.yc4{bottom:690.916000pt;}
.y2a{bottom:692.213333pt;}
.y4{bottom:694.972000pt;}
.y10b{bottom:697.088000pt;}
.y62{bottom:697.333333pt;}
.y1d{bottom:699.321333pt;}
.y47{bottom:701.134667pt;}
.yfb{bottom:703.394667pt;}
.ye8{bottom:704.506667pt;}
.ydb{bottom:718.966667pt;}
.y29{bottom:719.482667pt;}
.yad{bottom:720.905333pt;}
.y10a{bottom:720.998667pt;}
.ye7{bottom:731.605333pt;}
.y46{bottom:733.788000pt;}
.y1c{bottom:735.212000pt;}
.yc3{bottom:736.912000pt;}
.yfa{bottom:741.509333pt;}
.yda{bottom:742.876000pt;}
.y61{bottom:743.329333pt;}
.y109{bottom:744.909333pt;}
.yf9{bottom:745.104000pt;}
.y28{bottom:746.752000pt;}
.y92{bottom:752.274667pt;}
.yac{bottom:752.373333pt;}
.y79{bottom:752.813333pt;}
.ye6{bottom:758.704000pt;}
.y1b{bottom:759.122667pt;}
.y45{bottom:760.886667pt;}
.yd9{bottom:766.786667pt;}
.y108{bottom:768.820000pt;}
.y27{bottom:774.021333pt;}
.yab{bottom:776.282667pt;}
.y91{bottom:779.373333pt;}
.y1a{bottom:783.033333pt;}
.yf8{bottom:786.814667pt;}
.yc2{bottom:790.000000pt;}
.yd8{bottom:790.697333pt;}
.y107{bottom:792.729333pt;}
.y44{bottom:793.540000pt;}
.y60{bottom:796.700000pt;}
.yaa{bottom:800.193333pt;}
.y78{bottom:801.376000pt;}
.ye5{bottom:804.700000pt;}
.y19{bottom:806.942667pt;}
.yd7{bottom:814.608000pt;}
.y26{bottom:816.006667pt;}
.y106{bottom:816.640000pt;}
.yc1{bottom:817.098667pt;}
.y43{bottom:820.638667pt;}
.ya9{bottom:824.104000pt;}
.y90{bottom:825.936000pt;}
.yf7{bottom:828.525333pt;}
.y18{bottom:830.853333pt;}
.y5f{bottom:833.468000pt;}
.y3{bottom:838.129333pt;}
.yd6{bottom:839.049333pt;}
.y105{bottom:840.550667pt;}
.y25{bottom:843.276000pt;}
.y77{bottom:846.112000pt;}
.y42{bottom:847.736000pt;}
.ya8{bottom:848.545333pt;}
.yc0{bottom:852.076000pt;}
.y17{bottom:854.764000pt;}
.ye4{bottom:858.846667pt;}
.y104{bottom:864.461333pt;}
.y2{bottom:866.024000pt;}
.y5e{bottom:870.236000pt;}
.y24{bottom:870.545333pt;}
.y8f{bottom:872.497333pt;}
.y16{bottom:878.674667pt;}
.y41{bottom:880.389333pt;}
.ya7{bottom:885.945333pt;}
.ybf{bottom:887.053333pt;}
.y103{bottom:888.370667pt;}
.yf6{bottom:893.737333pt;}
.y5d{bottom:897.333333pt;}
.y23{bottom:897.814667pt;}
.y40{bottom:907.488000pt;}
.yd5{bottom:911.052000pt;}
.y102{bottom:912.281333pt;}
.ya6{bottom:913.044000pt;}
.y15{bottom:913.078667pt;}
.y14{bottom:917.898667pt;}
.y8e{bottom:919.060000pt;}
.y5c{bottom:924.432000pt;}
.y1{bottom:924.568000pt;}
.y22{bottom:925.084000pt;}
.y76{bottom:929.261333pt;}
.ybe{bottom:933.049333pt;}
.y3f{bottom:934.586667pt;}
.ya5{bottom:940.141333pt;}
.y12{bottom:941.637333pt;}
.y13{bottom:946.916000pt;}
.y3e{bottom:961.685333pt;}
.y8d{bottom:965.622667pt;}
.y21{bottom:967.069333pt;}
.ya4{bottom:967.240000pt;}
.y5b{bottom:970.428000pt;}
.y3d{bottom:971.592000pt;}
.y11{bottom:985.341333pt;}
.ybd{bottom:986.137333pt;}
.y75{bottom:1012.410667pt;}
.y10{bottom:1013.236000pt;}
.y20{bottom:1059.728000pt;}
.hc{height:14.824448pt;}
.ha{height:24.696550pt;}
.h9{height:29.925069pt;}
.h20{height:29.967576pt;}
.h7{height:33.713664pt;}
.hb{height:38.043849pt;}
.h6{height:39.850400pt;}
.h8{height:43.636400pt;}
.h5{height:44.632747pt;}
.h1e{height:47.782858pt;}
.h22{height:47.788191pt;}
.h3{height:47.820800pt;}
.h12{height:48.968021pt;}
.h18{height:48.973355pt;}
.h19{height:51.039735pt;}
.h2{height:53.559147pt;}
.h1f{height:53.864021pt;}
.h13{height:53.946402pt;}
.h1a{height:53.951735pt;}
.h21{height:53.988909pt;}
.h15{height:58.020400pt;}
.h23{height:60.808021pt;}
.hd{height:75.709355pt;}
.h10{height:76.749355pt;}
.he{height:82.996400pt;}
.h1c{height:83.545733pt;}
.h14{height:93.855735pt;}
.h1d{height:97.380400pt;}
.hf{height:102.274688pt;}
.h17{height:102.280021pt;}
.h4{height:105.606146pt;}
.h11{height:120.428191pt;}
.h16{height:120.433525pt;}
.h1b{height:122.911067pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:94.413333pt;}
.x13{left:96.000000pt;}
.x14{left:98.434667pt;}
.x18{left:101.656000pt;}
.x77{left:102.641333pt;}
.x35{left:105.142667pt;}
.x17{left:107.313333pt;}
.xa{left:111.940000pt;}
.x1c{left:115.925333pt;}
.x19{left:123.088000pt;}
.x1a{left:124.097333pt;}
.x40{left:125.404000pt;}
.x5b{left:128.018667pt;}
.x61{left:130.490667pt;}
.x41{left:132.221333pt;}
.x4a{left:135.860000pt;}
.x25{left:137.077333pt;}
.x68{left:138.205333pt;}
.x12{left:141.164000pt;}
.x5f{left:145.576000pt;}
.x6d{left:147.648000pt;}
.x62{left:152.020000pt;}
.x11{left:154.448000pt;}
.x4b{left:155.920000pt;}
.x63{left:157.789333pt;}
.x26{left:161.373333pt;}
.x34{left:162.316000pt;}
.x64{left:164.608000pt;}
.x69{left:173.598667pt;}
.x1{left:181.522667pt;}
.x4c{left:182.801333pt;}
.xb{left:189.188000pt;}
.xf{left:190.597333pt;}
.x10{left:196.556000pt;}
.xc{left:199.064000pt;}
.x4d{left:202.490667pt;}
.x6f{left:209.518667pt;}
.x5a{left:212.729333pt;}
.x44{left:216.353333pt;}
.x6e{left:220.237333pt;}
.x36{left:230.588000pt;}
.x42{left:243.238667pt;}
.x2{left:244.284000pt;}
.x65{left:248.104000pt;}
.x1d{left:249.344000pt;}
.x76{left:250.456000pt;}
.x6c{left:259.916000pt;}
.x45{left:263.650667pt;}
.x31{left:266.989333pt;}
.x4e{left:269.533333pt;}
.x49{left:272.666667pt;}
.x32{left:273.806667pt;}
.x46{left:277.198667pt;}
.x30{left:278.894667pt;}
.x59{left:280.242667pt;}
.x22{left:282.006667pt;}
.x6{left:293.149333pt;}
.x1e{left:295.249333pt;}
.x3a{left:297.681333pt;}
.x43{left:298.622667pt;}
.x23{left:304.885333pt;}
.x2a{left:306.746667pt;}
.x37{left:308.173333pt;}
.x3{left:310.824000pt;}
.x60{left:315.220000pt;}
.x5d{left:316.530667pt;}
.x24{left:319.892000pt;}
.x29{left:323.166667pt;}
.x1f{left:327.322667pt;}
.x1b{left:331.561333pt;}
.x4{left:333.781333pt;}
.x57{left:336.674667pt;}
.x5{left:339.008000pt;}
.xd{left:340.090667pt;}
.x33{left:344.161333pt;}
.x58{left:345.160000pt;}
.x7{left:349.013333pt;}
.x74{left:352.008000pt;}
.x70{left:356.090667pt;}
.x8{left:360.858667pt;}
.x16{left:363.736000pt;}
.x54{left:365.374667pt;}
.x5c{left:367.925333pt;}
.x4f{left:372.696000pt;}
.x2b{left:379.226667pt;}
.x3b{left:388.292000pt;}
.x27{left:389.317333pt;}
.x66{left:394.913333pt;}
.x2c{left:397.897333pt;}
.x38{left:403.084000pt;}
.x3c{left:406.962667pt;}
.x67{left:409.249333pt;}
.x55{left:410.804000pt;}
.x2d{left:419.774667pt;}
.x2e{left:423.560000pt;}
.x3d{left:428.840000pt;}
.x3e{left:432.625333pt;}
.x75{left:436.266667pt;}
.x50{left:442.734667pt;}
.x56{left:444.253333pt;}
.x6a{left:445.324000pt;}
.x71{left:446.726667pt;}
.xe{left:454.897333pt;}
.x6b{left:458.936000pt;}
.x28{left:464.406667pt;}
.x39{left:473.472000pt;}
.x72{left:477.040000pt;}
.x73{left:483.753333pt;}
.x2f{left:486.012000pt;}
.x51{left:487.789333pt;}
.x47{left:491.069333pt;}
.x3f{left:495.077333pt;}
.x48{left:512.265333pt;}
.x52{left:525.929333pt;}
.x53{left:569.906667pt;}
.x20{left:644.618667pt;}
.x21{left:662.546667pt;}
.x5e{left:703.122667pt;}
.x15{left:710.396000pt;}
}




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