
    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_4935a0a69df271ba91a93992.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.131000;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_ca41d77bb637d6b927fe36e7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_82f7277165a53efd18fb2b18.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.135000;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_d2383a99172b9aa5e0e318c9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.081000;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_909553be976c43cc70a35ed2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;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_9555cf0360fb37fef32e6b34.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.676270;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_0673bb517433d76137564406.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.861816;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_f6cb9a55c70e08691df13942.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.857910;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_d701d5f7d7cd94109de3a6bc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.721000;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_5ffd2d399ab54223b832a2f5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.935547;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_c71e961a5ffde94380200676.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.740234;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_404b409ce050ea5c72bfc915.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.711000;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_fb9d36db617887b89b97d723.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.952000;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_6120f0eb3d9ea8344e3ee810.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.952000;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_be0f20b3b3d74d0966c89eab.woff2')format("woff");}.fff{font-family:fff;line-height:0.742000;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_9fbcb8de44b7084eaaae0f06.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.684082;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_8fdc925cf6b73efdd051a20e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.684082;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_d96150e3bc808ca865132252.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.720215;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_ff730df2bea4a0f4ffff841e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.720215;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;}
.m13{transform:matrix(0.048528,0.256182,-0.244787,0.050786,0,0);-ms-transform:matrix(0.048528,0.256182,-0.244787,0.050786,0,0);-webkit-transform:matrix(0.048528,0.256182,-0.244787,0.050786,0,0);}
.m10{transform:matrix(0.169349,0.184523,-0.176319,0.177234,0,0);-ms-transform:matrix(0.169349,0.184523,-0.176319,0.177234,0,0);-webkit-transform:matrix(0.169349,0.184523,-0.176319,0.177234,0,0);}
.m14{transform:matrix(0.174109,0.179141,-0.171173,0.182208,0,0);-ms-transform:matrix(0.174109,0.179141,-0.171173,0.182208,0,0);-webkit-transform:matrix(0.174109,0.179141,-0.171173,0.182208,0,0);}
.m11{transform:matrix(0.203221,0.137518,-0.131400,0.212683,0,0);-ms-transform:matrix(0.203221,0.137518,-0.131400,0.212683,0,0);-webkit-transform:matrix(0.203221,0.137518,-0.131400,0.212683,0,0);}
.me{transform:matrix(0.212087,0.120391,-0.115040,0.221959,0,0);-ms-transform:matrix(0.212087,0.120391,-0.115040,0.221959,0,0);-webkit-transform:matrix(0.212087,0.120391,-0.115040,0.221959,0,0);}
.mf{transform:matrix(0.222572,0.095002,-0.090774,0.232938,0,0);-ms-transform:matrix(0.222572,0.095002,-0.090774,0.232938,0,0);-webkit-transform:matrix(0.222572,0.095002,-0.090774,0.232938,0,0);}
.m12{transform:matrix(0.233206,0.056677,-0.054154,0.244064,0,0);-ms-transform:matrix(0.233206,0.056677,-0.054154,0.244064,0,0);-webkit-transform:matrix(0.233206,0.056677,-0.054154,0.244064,0,0);}
.m17{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237499,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.238879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238879,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.238883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238883,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.238884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238884,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,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);}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m4{transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247501,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);}
.m1a{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);}
.m6{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.580400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.184800px;}
.v1{vertical-align:19.628400px;}
.v3{vertical-align:23.814000px;}
.ls7{letter-spacing:-0.294000px;}
.ls8{letter-spacing:-0.244926px;}
.ls13{letter-spacing:-0.228000px;}
.ls17{letter-spacing:-0.091200px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000124px;}
.ls3{letter-spacing:0.001371px;}
.lsb{letter-spacing:0.001984px;}
.ls12{letter-spacing:0.023882px;}
.lsd{letter-spacing:0.030804px;}
.ls11{letter-spacing:0.106142px;}
.ls9{letter-spacing:0.171450px;}
.ls14{letter-spacing:0.327600px;}
.ls1{letter-spacing:1.980000px;}
.ls15{letter-spacing:2.527200px;}
.lsc{letter-spacing:3.369600px;}
.lsf{letter-spacing:5.428800px;}
.ls10{letter-spacing:16.556400px;}
.ls6{letter-spacing:21.481200px;}
.ls16{letter-spacing:28.407551px;}
.lsa{letter-spacing:53.030816px;}
.ls2{letter-spacing:53.031429px;}
.ls4{letter-spacing:1221.935400px;}
.ls0{letter-spacing:2288.719200px;}
.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;}
}
.ws59{word-spacing:-79.630682px;}
.ws57{word-spacing:-66.225600px;}
.ws58{word-spacing:-53.177342px;}
.ws17{word-spacing:-24.492600px;}
.ws16{word-spacing:-24.247674px;}
.ws60{word-spacing:-17.404800px;}
.ws15{word-spacing:-16.200000px;}
.ws40{word-spacing:-10.146998px;}
.ws8e{word-spacing:-9.600000px;}
.ws0{word-spacing:-9.120000px;}
.wsaf{word-spacing:-9.028800px;}
.ws56{word-spacing:-6.856080px;}
.ws18{word-spacing:-6.653087px;}
.wsa9{word-spacing:-4.286400px;}
.wsaa{word-spacing:-4.149600px;}
.ws75{word-spacing:-3.292800px;}
.ws93{word-spacing:-3.234000px;}
.ws98{word-spacing:-2.940000px;}
.ws7c{word-spacing:-2.881200px;}
.wse{word-spacing:-2.646000px;}
.ws73{word-spacing:-2.587200px;}
.ws7{word-spacing:-2.528400px;}
.ws22{word-spacing:-2.352000px;}
.ws8f{word-spacing:-2.234400px;}
.wsab{word-spacing:-2.188800px;}
.ws49{word-spacing:-2.175600px;}
.ws86{word-spacing:-2.116800px;}
.ws54{word-spacing:-1.999200px;}
.ws2{word-spacing:-1.980000px;}
.wsa8{word-spacing:-1.960800px;}
.ws53{word-spacing:-1.822800px;}
.ws6f{word-spacing:-1.764000px;}
.wsa7{word-spacing:-1.732800px;}
.ws6b{word-spacing:-1.705200px;}
.ws63{word-spacing:-1.641600px;}
.ws94{word-spacing:-1.591200px;}
.ws81{word-spacing:-1.411200px;}
.ws77{word-spacing:-1.357200px;}
.ws1c{word-spacing:-1.352400px;}
.ws6c{word-spacing:-1.310400px;}
.ws6{word-spacing:-1.293600px;}
.ws29{word-spacing:-1.263600px;}
.ws84{word-spacing:-1.234800px;}
.ws1a{word-spacing:-1.058400px;}
.ws88{word-spacing:-0.999600px;}
.wsb0{word-spacing:-0.957600px;}
.ws2f{word-spacing:-0.882000px;}
.ws5f{word-spacing:-0.823200px;}
.wsa0{word-spacing:-0.684000px;}
.ws35{word-spacing:-0.646800px;}
.wsac{word-spacing:-0.592800px;}
.ws87{word-spacing:-0.529200px;}
.ws8b{word-spacing:-0.501600px;}
.wsa2{word-spacing:-0.364800px;}
.ws8d{word-spacing:-0.319200px;}
.ws2e{word-spacing:-0.294000px;}
.ws5a{word-spacing:-0.235200px;}
.wsb3{word-spacing:-0.228000px;}
.ws3a{word-spacing:-0.187200px;}
.ws5{word-spacing:-0.176400px;}
.ws2b{word-spacing:-0.171450px;}
.ws85{word-spacing:-0.117600px;}
.ws41{word-spacing:-0.058800px;}
.ws8c{word-spacing:-0.045600px;}
.ws1{word-spacing:0.000000px;}
.ws8a{word-spacing:0.045600px;}
.ws7b{word-spacing:0.058800px;}
.ws3b{word-spacing:0.234000px;}
.wsd{word-spacing:0.294000px;}
.ws76{word-spacing:0.327600px;}
.wsf{word-spacing:0.352800px;}
.ws4c{word-spacing:0.470400px;}
.ws74{word-spacing:0.529200px;}
.ws9d{word-spacing:0.592800px;}
.ws4f{word-spacing:0.646800px;}
.ws9a{word-spacing:0.705600px;}
.wsae{word-spacing:0.729600px;}
.ws67{word-spacing:0.764400px;}
.wsad{word-spacing:0.775200px;}
.ws52{word-spacing:0.823200px;}
.ws27{word-spacing:0.936000px;}
.ws46{word-spacing:0.940800px;}
.ws47{word-spacing:1.058400px;}
.ws66{word-spacing:1.216800px;}
.ws83{word-spacing:1.293600px;}
.ws95{word-spacing:1.310400px;}
.ws12{word-spacing:1.322400px;}
.ws4{word-spacing:1.352400px;}
.ws64{word-spacing:1.459200px;}
.ws44{word-spacing:1.470000px;}
.ws7a{word-spacing:1.638000px;}
.ws8{word-spacing:1.705200px;}
.ws13{word-spacing:1.732800px;}
.ws21{word-spacing:1.764000px;}
.ws42{word-spacing:1.822800px;}
.ws2d{word-spacing:1.881600px;}
.ws11{word-spacing:1.940400px;}
.ws1b{word-spacing:1.999200px;}
.ws90{word-spacing:2.058000px;}
.ws43{word-spacing:2.234400px;}
.wsa6{word-spacing:2.280000px;}
.ws1d{word-spacing:2.293200px;}
.wsa5{word-spacing:2.325600px;}
.ws3f{word-spacing:2.340000px;}
.ws4a{word-spacing:2.410800px;}
.ws96{word-spacing:2.469600px;}
.ws79{word-spacing:2.480400px;}
.ws72{word-spacing:2.528400px;}
.ws5d{word-spacing:2.646000px;}
.ws92{word-spacing:2.704800px;}
.ws91{word-spacing:2.763600px;}
.ws9e{word-spacing:2.827200px;}
.ws97{word-spacing:2.998800px;}
.wsb2{word-spacing:3.100800px;}
.ws7e{word-spacing:3.116400px;}
.ws37{word-spacing:3.237600px;}
.ws50{word-spacing:3.292800px;}
.ws39{word-spacing:3.322800px;}
.wsa1{word-spacing:3.328800px;}
.ws69{word-spacing:3.410400px;}
.ws9b{word-spacing:3.420000px;}
.ws5e{word-spacing:3.469200px;}
.ws1f{word-spacing:3.528000px;}
.ws45{word-spacing:3.645600px;}
.ws5b{word-spacing:3.763200px;}
.ws9c{word-spacing:3.784800px;}
.ws2c{word-spacing:3.822000px;}
.wsb5{word-spacing:3.967200px;}
.wsb{word-spacing:3.998400px;}
.ws14{word-spacing:4.058400px;}
.ws36{word-spacing:4.149600px;}
.ws55{word-spacing:4.233600px;}
.ws30{word-spacing:4.292400px;}
.ws25{word-spacing:4.377600px;}
.wsb1{word-spacing:4.468800px;}
.wsa{word-spacing:4.586400px;}
.ws99{word-spacing:4.645200px;}
.ws3d{word-spacing:4.680000px;}
.ws3c{word-spacing:4.773600px;}
.ws31{word-spacing:4.821600px;}
.ws4e{word-spacing:4.998000px;}
.ws7f{word-spacing:5.056800px;}
.ws20{word-spacing:5.115600px;}
.ws6a{word-spacing:5.409600px;}
.ws65{word-spacing:5.475600px;}
.ws80{word-spacing:5.586000px;}
.wsa4{word-spacing:5.608800px;}
.ws82{word-spacing:5.644800px;}
.ws9f{word-spacing:5.700000px;}
.ws89{word-spacing:5.703600px;}
.ws2a{word-spacing:5.803200px;}
.wsa3{word-spacing:5.836800px;}
.ws51{word-spacing:5.997600px;}
.ws34{word-spacing:6.056400px;}
.ws38{word-spacing:6.064800px;}
.ws10{word-spacing:6.174000px;}
.ws62{word-spacing:6.232800px;}
.ws23{word-spacing:6.247200px;}
.ws1e{word-spacing:6.291600px;}
.ws4b{word-spacing:6.879600px;}
.ws70{word-spacing:7.232400px;}
.ws5c{word-spacing:7.291200px;}
.wsb4{word-spacing:7.478400px;}
.ws3{word-spacing:7.644000px;}
.ws68{word-spacing:7.996800px;}
.ws33{word-spacing:8.290800px;}
.ws3e{word-spacing:8.564400px;}
.ws9{word-spacing:8.643600px;}
.ws48{word-spacing:9.231600px;}
.ws71{word-spacing:9.290400px;}
.ws32{word-spacing:9.525600px;}
.ws7d{word-spacing:9.643200px;}
.ws4d{word-spacing:9.702000px;}
.ws24{word-spacing:9.804000px;}
.wsc{word-spacing:10.172400px;}
.ws28{word-spacing:10.342800px;}
.ws78{word-spacing:11.840400px;}
.ws61{word-spacing:14.464800px;}
.ws26{word-spacing:21.434400px;}
.ws6e{word-spacing:1003.776000px;}
.ws6d{word-spacing:1037.520000px;}
.ws19{word-spacing:1608.129600px;}
._a{margin-left:-1608.112800px;}
._10{margin-left:-35.104320px;}
._b{margin-left:-8.307000px;}
._7{margin-left:-6.949200px;}
._6{margin-left:-5.548320px;}
._8{margin-left:-4.544760px;}
._9{margin-left:-3.055200px;}
._3{margin-left:-1.876200px;}
._1{width:1.115400px;}
._2{width:2.197800px;}
._0{width:3.498000px;}
._4{width:4.609200px;}
._5{width:6.037200px;}
._c{width:9.794880px;}
._18{width:28.408800px;}
._f{width:46.683360px;}
._19{width:48.666600px;}
._12{width:49.795053px;}
._13{width:51.573331px;}
._e{width:52.632000px;}
._d{width:65.190240px;}
._11{width:568.656000px;}
._14{width:796.921200px;}
._15{width:808.057200px;}
._16{width:827.940600px;}
._17{width:1047.732600px;}
.fc8{color:rgb(255,0,0);}
.fc7{color:rgb(101,121,137);}
.fc6{color:rgb(201,31,31);}
.fc5{color:rgb(31,120,180);}
.fc3{color:rgb(0,80,152);}
.fc4{color:rgb(147,22,120);}
.fc1{color:rgb(124,16,100);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(94,112,127);}
.fs11{font-size:23.445463px;}
.fsd{font-size:23.931968px;}
.fs12{font-size:23.963504px;}
.fsf{font-size:24.176862px;}
.fsb{font-size:24.249765px;}
.fs8{font-size:24.286800px;}
.fsc{font-size:24.340613px;}
.fs10{font-size:24.438649px;}
.fsa{font-size:24.480000px;}
.fs9{font-size:24.492600px;}
.fs19{font-size:26.584800px;}
.fse{font-size:28.575000px;}
.fs4{font-size:34.280400px;}
.fs5{font-size:44.400000px;}
.fs0{font-size:45.600000px;}
.fs7{font-size:46.800000px;}
.fs17{font-size:48.000000px;}
.fs13{font-size:48.985800px;}
.fs15{font-size:53.071200px;}
.fs3{font-size:58.800000px;}
.fs18{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs14{font-size:66.225600px;}
.fs16{font-size:79.606800px;}
.fs6{font-size:81.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:20.184750px;}
.y51{bottom:23.243700px;}
.y4f{bottom:24.153750px;}
.y4e{bottom:32.726250px;}
.y53{bottom:44.140650px;}
.y52{bottom:55.809450px;}
.y1{bottom:77.698800px;}
.y50{bottom:85.801200px;}
.y59{bottom:89.587350px;}
.y56{bottom:91.883657px;}
.yac{bottom:142.930800px;}
.y35{bottom:142.934550px;}
.y8e{bottom:142.936800px;}
.ydc{bottom:142.944150px;}
.yad{bottom:142.948800px;}
.y20{bottom:142.948950px;}
.y4d{bottom:145.920000px;}
.y34{bottom:158.689350px;}
.ydb{bottom:158.693100px;}
.y1f{bottom:158.694150px;}
.y62{bottom:158.698950px;}
.y10c{bottom:159.442800px;}
.y10b{bottom:159.484950px;}
.yab{bottom:164.686800px;}
.y8d{bottom:164.692800px;}
.y1e{bottom:174.443100px;}
.y33{bottom:174.444150px;}
.y10a{bottom:175.980750px;}
.y5a{bottom:176.472900px;}
.y98{bottom:179.954100px;}
.y8c{bottom:186.430800px;}
.yaa{bottom:186.442800px;}
.y55{bottom:190.051200px;}
.y32{bottom:190.198950px;}
.y109{bottom:192.476550px;}
.y57{bottom:193.071900px;}
.y1d{bottom:195.704100px;}
.yda{bottom:195.708000px;}
.y97{bottom:195.708900px;}
.y54{bottom:204.430950px;}
.y8b{bottom:208.186800px;}
.ya9{bottom:208.198800px;}
.y108{bottom:208.972350px;}
.y1c{bottom:211.458900px;}
.y41{bottom:212.283572px;}
.yd9{bottom:216.963150px;}
.y40{bottom:221.670361px;}
.y4c{bottom:224.595600px;}
.y107{bottom:225.468150px;}
.ye2{bottom:229.900800px;}
.y31{bottom:229.930800px;}
.ya8{bottom:229.936800px;}
.y8a{bottom:229.942800px;}
.y3f{bottom:231.057150px;}
.ye3{bottom:234.843900px;}
.yd8{bottom:238.224150px;}
.y44{bottom:238.587600px;}
.y48{bottom:240.785811px;}
.y106{bottom:241.963950px;}
.y47{bottom:248.133591px;}
.y3e{bottom:249.837302px;}
.y4b{bottom:250.220250px;}
.ye1{bottom:251.656800px;}
.y1b{bottom:251.674800px;}
.y96{bottom:251.680800px;}
.y30{bottom:251.686800px;}
.y88{bottom:251.692800px;}
.y89{bottom:251.698800px;}
.yd7{bottom:253.973100px;}
.y46{bottom:255.481371px;}
.ya4{bottom:256.593900px;}
.y105{bottom:258.459750px;}
.y3d{bottom:259.224150px;}
.y45{bottom:262.829151px;}
.y58{bottom:263.952000px;}
.y43{bottom:267.551124px;}
.y49{bottom:269.331936px;}
.y5b{bottom:269.423455px;}
.ye0{bottom:273.412800px;}
.y1a{bottom:273.430800px;}
.y95{bottom:273.436800px;}
.y2f{bottom:273.442800px;}
.y86{bottom:273.448800px;}
.y42{bottom:274.898904px;}
.y104{bottom:274.955550px;}
.yd6{bottom:275.234100px;}
.y87{bottom:278.343900px;}
.yd5{bottom:290.988900px;}
.y103{bottom:291.451350px;}
.ydf{bottom:295.168800px;}
.ya7{bottom:295.180800px;}
.y19{bottom:295.186800px;}
.y94{bottom:295.192800px;}
.y2e{bottom:295.198800px;}
.y102{bottom:307.947150px;}
.yde{bottom:316.924800px;}
.y2c{bottom:316.936800px;}
.y18{bottom:316.942800px;}
.y2d{bottom:316.948800px;}
.y101{bottom:324.442950px;}
.yd4{bottom:338.668800px;}
.y15{bottom:338.674800px;}
.ydd{bottom:338.680800px;}
.y2b{bottom:338.692800px;}
.y17{bottom:338.698800px;}
.y16{bottom:343.593900px;}
.y100{bottom:345.194850px;}
.y60{bottom:360.412800px;}
.yd3{bottom:360.424800px;}
.y14{bottom:360.430800px;}
.ya3{bottom:360.436800px;}
.y2a{bottom:360.448800px;}
.y61{bottom:365.343900px;}
.y29{bottom:382.168800px;}
.yd2{bottom:382.180800px;}
.y13{bottom:382.186800px;}
.ya2{bottom:382.192800px;}
.yff{bottom:382.446750px;}
.yfe{bottom:382.463550px;}
.yfd{bottom:398.959350px;}
.y85{bottom:403.912800px;}
.y28{bottom:403.924800px;}
.yd1{bottom:403.936800px;}
.y12{bottom:403.942800px;}
.ya1{bottom:403.948800px;}
.yfc{bottom:415.455150px;}
.y84{bottom:425.668800px;}
.y93{bottom:425.674800px;}
.y27{bottom:425.680800px;}
.yf{bottom:425.692800px;}
.y11{bottom:425.698800px;}
.y10{bottom:430.593900px;}
.yfb{bottom:431.950950px;}
.y83{bottom:447.424800px;}
.y92{bottom:447.430800px;}
.y26{bottom:447.436800px;}
.ye{bottom:447.448800px;}
.yfa{bottom:448.446750px;}
.yd{bottom:469.180800px;}
.y91{bottom:469.186800px;}
.y25{bottom:469.192800px;}
.yf9{bottom:469.197750px;}
.ya6{bottom:469.733250px;}
.ybb{bottom:471.017700px;}
.yd0{bottom:474.093900px;}
.ya5{bottom:485.937750px;}
.yba{bottom:487.222200px;}
.yce{bottom:490.906800px;}
.yc{bottom:490.936800px;}
.y90{bottom:490.942800px;}
.y24{bottom:490.948800px;}
.ycf{bottom:495.843900px;}
.yf8{bottom:500.946750px;}
.yf7{bottom:500.988750px;}
.yb9{bottom:503.426700px;}
.ycd{bottom:512.662800px;}
.y5f{bottom:512.680800px;}
.y8f{bottom:512.686800px;}
.yb{bottom:512.692800px;}
.yf6{bottom:517.484550px;}
.yf5{bottom:533.980350px;}
.ycc{bottom:534.418800px;}
.y5e{bottom:534.436800px;}
.y9{bottom:534.442800px;}
.ya{bottom:534.448800px;}
.yb8{bottom:539.635350px;}
.yf4{bottom:550.476150px;}
.ycb{bottom:556.174800px;}
.y82{bottom:556.186800px;}
.y5d{bottom:556.192800px;}
.y8{bottom:556.198800px;}
.yb7{bottom:560.899350px;}
.yf3{bottom:566.971950px;}
.yca{bottom:577.930800px;}
.y81{bottom:577.942800px;}
.y7{bottom:577.948800px;}
.yb6{bottom:582.163350px;}
.yf2{bottom:583.467750px;}
.yc9{bottom:599.686800px;}
.y22{bottom:599.692800px;}
.y5c{bottom:599.698800px;}
.yf1{bottom:599.963550px;}
.yb5{bottom:603.427350px;}
.y23{bottom:604.593900px;}
.yf0{bottom:616.459350px;}
.ye6{bottom:620.418450px;}
.ye7{bottom:620.427450px;}
.y80{bottom:621.412800px;}
.yc8{bottom:621.442800px;}
.y21{bottom:621.448800px;}
.y9b{bottom:621.481500px;}
.yb4{bottom:624.691350px;}
.yef{bottom:632.955150px;}
.ye5{bottom:636.622950px;}
.y9a{bottom:637.686000px;}
.y7f{bottom:643.168800px;}
.yc5{bottom:643.186800px;}
.yc6{bottom:643.198800px;}
.yb3{bottom:645.955350px;}
.yc7{bottom:648.093900px;}
.yee{bottom:649.450950px;}
.ye4{bottom:652.827450px;}
.y99{bottom:653.890500px;}
.y7e{bottom:664.924800px;}
.yc4{bottom:664.942800px;}
.yed{bottom:665.946750px;}
.yb2{bottom:667.219350px;}
.y6a{bottom:686.667300px;}
.y3b{bottom:686.676300px;}
.y7d{bottom:686.680800px;}
.y3c{bottom:686.698500px;}
.yc3{bottom:686.698800px;}
.y9e{bottom:697.704450px;}
.y69{bottom:702.871800px;}
.y3a{bottom:702.880800px;}
.yc2{bottom:708.430800px;}
.y7c{bottom:708.436800px;}
.y118{bottom:712.455150px;}
.yb1{bottom:713.398200px;}
.y68{bottom:719.076300px;}
.y39{bottom:719.085300px;}
.y117{bottom:728.950950px;}
.yb0{bottom:729.602700px;}
.yc1{bottom:730.186800px;}
.y7b{bottom:730.192800px;}
.yec{bottom:730.198800px;}
.y6{bottom:734.698800px;}
.y67{bottom:735.280800px;}
.y38{bottom:735.289800px;}
.y116{bottom:745.446750px;}
.y115{bottom:745.450950px;}
.yaf{bottom:745.807200px;}
.y66{bottom:751.485300px;}
.y37{bottom:751.494300px;}
.y78{bottom:751.942800px;}
.y7a{bottom:751.948800px;}
.y79{bottom:756.843900px;}
.y114{bottom:758.150550px;}
.yae{bottom:762.011700px;}
.y65{bottom:767.689800px;}
.y36{bottom:767.698800px;}
.y75{bottom:773.692800px;}
.y77{bottom:773.698800px;}
.y5{bottom:776.698800px;}
.y76{bottom:778.593900px;}
.y64{bottom:783.894300px;}
.y72{bottom:795.442800px;}
.y74{bottom:795.448800px;}
.y63{bottom:800.098800px;}
.y73{bottom:800.343900px;}
.yeb{bottom:817.162800px;}
.y6f{bottom:817.174800px;}
.y71{bottom:817.198800px;}
.y4{bottom:818.698800px;}
.y70{bottom:822.093900px;}
.yea{bottom:838.918800px;}
.y6e{bottom:838.930800px;}
.y113{bottom:844.446750px;}
.y112{bottom:844.455150px;}
.ya0{bottom:847.107986px;}
.ye9{bottom:860.674800px;}
.y6d{bottom:860.686800px;}
.y3{bottom:860.698800px;}
.y111{bottom:860.950950px;}
.y110{bottom:877.446750px;}
.ye8{bottom:882.430800px;}
.y6c{bottom:882.442800px;}
.yc0{bottom:882.448800px;}
.ybf{bottom:887.343900px;}
.y10f{bottom:893.959200px;}
.ybd{bottom:904.186800px;}
.y6b{bottom:904.198800px;}
.y9d{bottom:905.623350px;}
.ybe{bottom:909.093900px;}
.y10e{bottom:910.455000px;}
.y9f{bottom:918.097350px;}
.y9c{bottom:919.684950px;}
.ybc{bottom:925.942800px;}
.y10d{bottom:926.950800px;}
.y2{bottom:947.698800px;}
.hb{height:16.222823px;}
.hd{height:16.360291px;}
.hc{height:16.742988px;}
.he{height:16.934337px;}
.h16{height:17.068938px;}
.hf{height:17.380800px;}
.h12{height:17.423127px;}
.h17{height:17.446086px;}
.h14{height:17.601416px;}
.h10{height:17.654492px;}
.h11{height:17.720632px;}
.h15{height:17.792005px;}
.h1a{height:20.288250px;}
.h13{height:20.803381px;}
.h6{height:24.819010px;}
.h1b{height:29.104060px;}
.h28{height:33.014400px;}
.h29{height:33.018600px;}
.h18{height:34.290060px;}
.h1e{height:34.351200px;}
.h19{height:34.779918px;}
.h23{height:35.232000px;}
.h2{height:40.948800px;}
.h24{height:40.952400px;}
.h7{height:40.972200px;}
.h9{height:42.026400px;}
.h26{height:43.104000px;}
.h25{height:43.140000px;}
.h22{height:43.248000px;}
.h27{height:44.040000px;}
.h1f{height:44.139621px;}
.h5{height:49.921200px;}
.h1c{height:49.969200px;}
.h1d{height:49.993200px;}
.h21{height:53.058243px;}
.h2a{height:56.133600px;}
.h8{height:58.644000px;}
.h20{height:59.186162px;}
.h3{height:59.466000px;}
.h4{height:86.880000px;}
.ha{height:283.813500px;}
.h1{height:1062.750000px;}
.h0{height:1062.991500px;}
.w2{width:373.960500px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.x20{left:6.181200px;}
.x15{left:8.802750px;}
.x10{left:109.488000px;}
.x1{left:110.551200px;}
.x12{left:114.915736px;}
.x4b{left:116.377020px;}
.x1d{left:117.893959px;}
.x11{left:125.734200px;}
.x5{left:131.811000px;}
.x2{left:144.567000px;}
.x6{left:146.380050px;}
.x56{left:148.501950px;}
.x7{left:150.961500px;}
.x14{left:152.155927px;}
.x45{left:168.129900px;}
.x13{left:171.007526px;}
.x3d{left:174.508650px;}
.x46{left:182.883450px;}
.x1b{left:204.553650px;}
.xb{left:210.449250px;}
.x29{left:219.251550px;}
.x41{left:222.079650px;}
.x40{left:224.411397px;}
.x2a{left:227.952450px;}
.x1c{left:232.008450px;}
.x1f{left:236.782725px;}
.x4f{left:241.976100px;}
.x33{left:246.008700px;}
.x8{left:247.428000px;}
.x9{left:252.009450px;}
.x34{left:254.709600px;}
.x54{left:256.884750px;}
.x1a{left:276.147750px;}
.x59{left:287.785650px;}
.x18{left:301.251900px;}
.x52{left:305.512350px;}
.x43{left:310.488450px;}
.x57{left:313.137150px;}
.x53{left:314.582850px;}
.x16{left:315.936000px;}
.x19{left:317.941592px;}
.x2d{left:320.848800px;}
.xd{left:322.100700px;}
.x1e{left:326.544150px;}
.x2e{left:329.549700px;}
.x17{left:335.470350px;}
.xa{left:344.851050px;}
.x21{left:354.796757px;}
.x27{left:362.965350px;}
.xe{left:364.274400px;}
.x3e{left:366.041400px;}
.x44{left:370.175250px;}
.x3c{left:374.829900px;}
.x3a{left:388.549500px;}
.x4c{left:393.233250px;}
.x4d{left:397.814700px;}
.x2f{left:404.976450px;}
.x4a{left:409.765500px;}
.x30{left:413.677350px;}
.x50{left:438.501750px;}
.x28{left:442.204800px;}
.x51{left:447.572100px;}
.x49{left:454.960650px;}
.x42{left:480.577350px;}
.xf{left:491.952750px;}
.x47{left:520.790700px;}
.x3f{left:523.553850px;}
.xc{left:541.917000px;}
.x48{left:574.501650px;}
.x2b{left:583.364550px;}
.x2c{left:592.065300px;}
.x38{left:614.420400px;}
.x35{left:617.830800px;}
.x3{left:620.038650px;}
.x3b{left:623.032500px;}
.x31{left:648.267900px;}
.x55{left:650.329050px;}
.x32{left:656.968800px;}
.x22{left:660.035400px;}
.x4{left:662.170500px;}
.x23{left:664.431750px;}
.x4e{left:672.107400px;}
.x24{left:673.144800px;}
.x25{left:677.321850px;}
.x36{left:678.356850px;}
.x26{left:681.764400px;}
.x37{left:686.880150px;}
.x39{left:693.102300px;}
.x58{left:697.322850px;}
@media print{
.v2{vertical-align:-17.404800pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.497600pt;}
.v1{vertical-align:17.447467pt;}
.v3{vertical-align:21.168000pt;}
.ls7{letter-spacing:-0.261333pt;}
.ls8{letter-spacing:-0.217712pt;}
.ls13{letter-spacing:-0.202667pt;}
.ls17{letter-spacing:-0.081067pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000110pt;}
.ls3{letter-spacing:0.001219pt;}
.lsb{letter-spacing:0.001763pt;}
.ls12{letter-spacing:0.021228pt;}
.lsd{letter-spacing:0.027381pt;}
.ls11{letter-spacing:0.094349pt;}
.ls9{letter-spacing:0.152400pt;}
.ls14{letter-spacing:0.291200pt;}
.ls1{letter-spacing:1.760000pt;}
.ls15{letter-spacing:2.246400pt;}
.lsc{letter-spacing:2.995200pt;}
.lsf{letter-spacing:4.825600pt;}
.ls10{letter-spacing:14.716800pt;}
.ls6{letter-spacing:19.094400pt;}
.ls16{letter-spacing:25.251156pt;}
.lsa{letter-spacing:47.138503pt;}
.ls2{letter-spacing:47.139048pt;}
.ls4{letter-spacing:1086.164800pt;}
.ls0{letter-spacing:2034.417067pt;}
.ws59{word-spacing:-70.782828pt;}
.ws57{word-spacing:-58.867200pt;}
.ws58{word-spacing:-47.268749pt;}
.ws17{word-spacing:-21.771200pt;}
.ws16{word-spacing:-21.553488pt;}
.ws60{word-spacing:-15.470933pt;}
.ws15{word-spacing:-14.400000pt;}
.ws40{word-spacing:-9.019554pt;}
.ws8e{word-spacing:-8.533333pt;}
.ws0{word-spacing:-8.106667pt;}
.wsaf{word-spacing:-8.025600pt;}
.ws56{word-spacing:-6.094293pt;}
.ws18{word-spacing:-5.913855pt;}
.wsa9{word-spacing:-3.810133pt;}
.wsaa{word-spacing:-3.688533pt;}
.ws75{word-spacing:-2.926933pt;}
.ws93{word-spacing:-2.874667pt;}
.ws98{word-spacing:-2.613333pt;}
.ws7c{word-spacing:-2.561067pt;}
.wse{word-spacing:-2.352000pt;}
.ws73{word-spacing:-2.299733pt;}
.ws7{word-spacing:-2.247467pt;}
.ws22{word-spacing:-2.090667pt;}
.ws8f{word-spacing:-1.986133pt;}
.wsab{word-spacing:-1.945600pt;}
.ws49{word-spacing:-1.933867pt;}
.ws86{word-spacing:-1.881600pt;}
.ws54{word-spacing:-1.777067pt;}
.ws2{word-spacing:-1.760000pt;}
.wsa8{word-spacing:-1.742933pt;}
.ws53{word-spacing:-1.620267pt;}
.ws6f{word-spacing:-1.568000pt;}
.wsa7{word-spacing:-1.540267pt;}
.ws6b{word-spacing:-1.515733pt;}
.ws63{word-spacing:-1.459200pt;}
.ws94{word-spacing:-1.414400pt;}
.ws81{word-spacing:-1.254400pt;}
.ws77{word-spacing:-1.206400pt;}
.ws1c{word-spacing:-1.202133pt;}
.ws6c{word-spacing:-1.164800pt;}
.ws6{word-spacing:-1.149867pt;}
.ws29{word-spacing:-1.123200pt;}
.ws84{word-spacing:-1.097600pt;}
.ws1a{word-spacing:-0.940800pt;}
.ws88{word-spacing:-0.888533pt;}
.wsb0{word-spacing:-0.851200pt;}
.ws2f{word-spacing:-0.784000pt;}
.ws5f{word-spacing:-0.731733pt;}
.wsa0{word-spacing:-0.608000pt;}
.ws35{word-spacing:-0.574933pt;}
.wsac{word-spacing:-0.526933pt;}
.ws87{word-spacing:-0.470400pt;}
.ws8b{word-spacing:-0.445867pt;}
.wsa2{word-spacing:-0.324267pt;}
.ws8d{word-spacing:-0.283733pt;}
.ws2e{word-spacing:-0.261333pt;}
.ws5a{word-spacing:-0.209067pt;}
.wsb3{word-spacing:-0.202667pt;}
.ws3a{word-spacing:-0.166400pt;}
.ws5{word-spacing:-0.156800pt;}
.ws2b{word-spacing:-0.152400pt;}
.ws85{word-spacing:-0.104533pt;}
.ws41{word-spacing:-0.052267pt;}
.ws8c{word-spacing:-0.040533pt;}
.ws1{word-spacing:0.000000pt;}
.ws8a{word-spacing:0.040533pt;}
.ws7b{word-spacing:0.052267pt;}
.ws3b{word-spacing:0.208000pt;}
.wsd{word-spacing:0.261333pt;}
.ws76{word-spacing:0.291200pt;}
.wsf{word-spacing:0.313600pt;}
.ws4c{word-spacing:0.418133pt;}
.ws74{word-spacing:0.470400pt;}
.ws9d{word-spacing:0.526933pt;}
.ws4f{word-spacing:0.574933pt;}
.ws9a{word-spacing:0.627200pt;}
.wsae{word-spacing:0.648533pt;}
.ws67{word-spacing:0.679467pt;}
.wsad{word-spacing:0.689067pt;}
.ws52{word-spacing:0.731733pt;}
.ws27{word-spacing:0.832000pt;}
.ws46{word-spacing:0.836267pt;}
.ws47{word-spacing:0.940800pt;}
.ws66{word-spacing:1.081600pt;}
.ws83{word-spacing:1.149867pt;}
.ws95{word-spacing:1.164800pt;}
.ws12{word-spacing:1.175467pt;}
.ws4{word-spacing:1.202133pt;}
.ws64{word-spacing:1.297067pt;}
.ws44{word-spacing:1.306667pt;}
.ws7a{word-spacing:1.456000pt;}
.ws8{word-spacing:1.515733pt;}
.ws13{word-spacing:1.540267pt;}
.ws21{word-spacing:1.568000pt;}
.ws42{word-spacing:1.620267pt;}
.ws2d{word-spacing:1.672533pt;}
.ws11{word-spacing:1.724800pt;}
.ws1b{word-spacing:1.777067pt;}
.ws90{word-spacing:1.829333pt;}
.ws43{word-spacing:1.986133pt;}
.wsa6{word-spacing:2.026667pt;}
.ws1d{word-spacing:2.038400pt;}
.wsa5{word-spacing:2.067200pt;}
.ws3f{word-spacing:2.080000pt;}
.ws4a{word-spacing:2.142933pt;}
.ws96{word-spacing:2.195200pt;}
.ws79{word-spacing:2.204800pt;}
.ws72{word-spacing:2.247467pt;}
.ws5d{word-spacing:2.352000pt;}
.ws92{word-spacing:2.404267pt;}
.ws91{word-spacing:2.456533pt;}
.ws9e{word-spacing:2.513067pt;}
.ws97{word-spacing:2.665600pt;}
.wsb2{word-spacing:2.756267pt;}
.ws7e{word-spacing:2.770133pt;}
.ws37{word-spacing:2.877867pt;}
.ws50{word-spacing:2.926933pt;}
.ws39{word-spacing:2.953600pt;}
.wsa1{word-spacing:2.958933pt;}
.ws69{word-spacing:3.031467pt;}
.ws9b{word-spacing:3.040000pt;}
.ws5e{word-spacing:3.083733pt;}
.ws1f{word-spacing:3.136000pt;}
.ws45{word-spacing:3.240533pt;}
.ws5b{word-spacing:3.345067pt;}
.ws9c{word-spacing:3.364267pt;}
.ws2c{word-spacing:3.397333pt;}
.wsb5{word-spacing:3.526400pt;}
.wsb{word-spacing:3.554133pt;}
.ws14{word-spacing:3.607467pt;}
.ws36{word-spacing:3.688533pt;}
.ws55{word-spacing:3.763200pt;}
.ws30{word-spacing:3.815467pt;}
.ws25{word-spacing:3.891200pt;}
.wsb1{word-spacing:3.972267pt;}
.wsa{word-spacing:4.076800pt;}
.ws99{word-spacing:4.129067pt;}
.ws3d{word-spacing:4.160000pt;}
.ws3c{word-spacing:4.243200pt;}
.ws31{word-spacing:4.285867pt;}
.ws4e{word-spacing:4.442667pt;}
.ws7f{word-spacing:4.494933pt;}
.ws20{word-spacing:4.547200pt;}
.ws6a{word-spacing:4.808533pt;}
.ws65{word-spacing:4.867200pt;}
.ws80{word-spacing:4.965333pt;}
.wsa4{word-spacing:4.985600pt;}
.ws82{word-spacing:5.017600pt;}
.ws9f{word-spacing:5.066667pt;}
.ws89{word-spacing:5.069867pt;}
.ws2a{word-spacing:5.158400pt;}
.wsa3{word-spacing:5.188267pt;}
.ws51{word-spacing:5.331200pt;}
.ws34{word-spacing:5.383467pt;}
.ws38{word-spacing:5.390933pt;}
.ws10{word-spacing:5.488000pt;}
.ws62{word-spacing:5.540267pt;}
.ws23{word-spacing:5.553067pt;}
.ws1e{word-spacing:5.592533pt;}
.ws4b{word-spacing:6.115200pt;}
.ws70{word-spacing:6.428800pt;}
.ws5c{word-spacing:6.481067pt;}
.wsb4{word-spacing:6.647467pt;}
.ws3{word-spacing:6.794667pt;}
.ws68{word-spacing:7.108267pt;}
.ws33{word-spacing:7.369600pt;}
.ws3e{word-spacing:7.612800pt;}
.ws9{word-spacing:7.683200pt;}
.ws48{word-spacing:8.205867pt;}
.ws71{word-spacing:8.258133pt;}
.ws32{word-spacing:8.467200pt;}
.ws7d{word-spacing:8.571733pt;}
.ws4d{word-spacing:8.624000pt;}
.ws24{word-spacing:8.714667pt;}
.wsc{word-spacing:9.042133pt;}
.ws28{word-spacing:9.193600pt;}
.ws78{word-spacing:10.524800pt;}
.ws61{word-spacing:12.857600pt;}
.ws26{word-spacing:19.052800pt;}
.ws6e{word-spacing:892.245333pt;}
.ws6d{word-spacing:922.240000pt;}
.ws19{word-spacing:1429.448533pt;}
._a{margin-left:-1429.433600pt;}
._10{margin-left:-31.203840pt;}
._b{margin-left:-7.384000pt;}
._7{margin-left:-6.177067pt;}
._6{margin-left:-4.931840pt;}
._8{margin-left:-4.039787pt;}
._9{margin-left:-2.715733pt;}
._3{margin-left:-1.667733pt;}
._1{width:0.991467pt;}
._2{width:1.953600pt;}
._0{width:3.109333pt;}
._4{width:4.097067pt;}
._5{width:5.366400pt;}
._c{width:8.706560pt;}
._18{width:25.252267pt;}
._f{width:41.496320pt;}
._19{width:43.259200pt;}
._12{width:44.262269pt;}
._13{width:45.842961pt;}
._e{width:46.784000pt;}
._d{width:57.946880pt;}
._11{width:505.472000pt;}
._14{width:708.374400pt;}
._15{width:718.273067pt;}
._16{width:735.947200pt;}
._17{width:931.317867pt;}
.fs11{font-size:20.840412pt;}
.fsd{font-size:21.272860pt;}
.fs12{font-size:21.300893pt;}
.fsf{font-size:21.490544pt;}
.fsb{font-size:21.555347pt;}
.fs8{font-size:21.588267pt;}
.fsc{font-size:21.636100pt;}
.fs10{font-size:21.723244pt;}
.fsa{font-size:21.760000pt;}
.fs9{font-size:21.771200pt;}
.fs19{font-size:23.630933pt;}
.fse{font-size:25.400000pt;}
.fs4{font-size:30.471467pt;}
.fs5{font-size:39.466667pt;}
.fs0{font-size:40.533333pt;}
.fs7{font-size:41.600000pt;}
.fs17{font-size:42.666667pt;}
.fs13{font-size:43.542933pt;}
.fs15{font-size:47.174400pt;}
.fs3{font-size:52.266667pt;}
.fs18{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs14{font-size:58.867200pt;}
.fs16{font-size:70.761600pt;}
.fs6{font-size:72.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:17.942000pt;}
.y51{bottom:20.661067pt;}
.y4f{bottom:21.470000pt;}
.y4e{bottom:29.090000pt;}
.y53{bottom:39.236133pt;}
.y52{bottom:49.608400pt;}
.y1{bottom:69.065600pt;}
.y50{bottom:76.267733pt;}
.y59{bottom:79.633200pt;}
.y56{bottom:81.674362pt;}
.yac{bottom:127.049600pt;}
.y35{bottom:127.052933pt;}
.y8e{bottom:127.054933pt;}
.ydc{bottom:127.061467pt;}
.yad{bottom:127.065600pt;}
.y20{bottom:127.065733pt;}
.y4d{bottom:129.706667pt;}
.y34{bottom:141.057200pt;}
.ydb{bottom:141.060533pt;}
.y1f{bottom:141.061467pt;}
.y62{bottom:141.065733pt;}
.y10c{bottom:141.726933pt;}
.y10b{bottom:141.764400pt;}
.yab{bottom:146.388267pt;}
.y8d{bottom:146.393600pt;}
.y1e{bottom:155.060533pt;}
.y33{bottom:155.061467pt;}
.y10a{bottom:156.427333pt;}
.y5a{bottom:156.864800pt;}
.y98{bottom:159.959200pt;}
.y8c{bottom:165.716267pt;}
.yaa{bottom:165.726933pt;}
.y55{bottom:168.934400pt;}
.y32{bottom:169.065733pt;}
.y109{bottom:171.090267pt;}
.y57{bottom:171.619467pt;}
.y1d{bottom:173.959200pt;}
.yda{bottom:173.962667pt;}
.y97{bottom:173.963467pt;}
.y54{bottom:181.716400pt;}
.y8b{bottom:185.054933pt;}
.ya9{bottom:185.065600pt;}
.y108{bottom:185.753200pt;}
.y1c{bottom:187.963467pt;}
.y41{bottom:188.696509pt;}
.yd9{bottom:192.856133pt;}
.y40{bottom:197.040321pt;}
.y4c{bottom:199.640533pt;}
.y107{bottom:200.416133pt;}
.ye2{bottom:204.356267pt;}
.y31{bottom:204.382933pt;}
.ya8{bottom:204.388267pt;}
.y8a{bottom:204.393600pt;}
.y3f{bottom:205.384133pt;}
.ye3{bottom:208.750133pt;}
.yd8{bottom:211.754800pt;}
.y44{bottom:212.077867pt;}
.y48{bottom:214.031832pt;}
.y106{bottom:215.079067pt;}
.y47{bottom:220.563192pt;}
.y3e{bottom:222.077602pt;}
.y4b{bottom:222.418000pt;}
.ye1{bottom:223.694933pt;}
.y1b{bottom:223.710933pt;}
.y96{bottom:223.716267pt;}
.y30{bottom:223.721600pt;}
.y88{bottom:223.726933pt;}
.y89{bottom:223.732267pt;}
.yd7{bottom:225.753867pt;}
.y46{bottom:227.094552pt;}
.ya4{bottom:228.083467pt;}
.y105{bottom:229.742000pt;}
.y3d{bottom:230.421467pt;}
.y45{bottom:233.625912pt;}
.y58{bottom:234.624000pt;}
.y43{bottom:237.823221pt;}
.y49{bottom:239.406165pt;}
.y5b{bottom:239.487516pt;}
.ye0{bottom:243.033600pt;}
.y1a{bottom:243.049600pt;}
.y95{bottom:243.054933pt;}
.y2f{bottom:243.060267pt;}
.y86{bottom:243.065600pt;}
.y42{bottom:244.354581pt;}
.y104{bottom:244.404933pt;}
.yd6{bottom:244.652533pt;}
.y87{bottom:247.416800pt;}
.yd5{bottom:258.656800pt;}
.y103{bottom:259.067867pt;}
.ydf{bottom:262.372267pt;}
.ya7{bottom:262.382933pt;}
.y19{bottom:262.388267pt;}
.y94{bottom:262.393600pt;}
.y2e{bottom:262.398933pt;}
.y102{bottom:273.730800pt;}
.yde{bottom:281.710933pt;}
.y2c{bottom:281.721600pt;}
.y18{bottom:281.726933pt;}
.y2d{bottom:281.732267pt;}
.y101{bottom:288.393733pt;}
.yd4{bottom:301.038933pt;}
.y15{bottom:301.044267pt;}
.ydd{bottom:301.049600pt;}
.y2b{bottom:301.060267pt;}
.y17{bottom:301.065600pt;}
.y16{bottom:305.416800pt;}
.y100{bottom:306.839867pt;}
.y60{bottom:320.366933pt;}
.yd3{bottom:320.377600pt;}
.y14{bottom:320.382933pt;}
.ya3{bottom:320.388267pt;}
.y2a{bottom:320.398933pt;}
.y61{bottom:324.750133pt;}
.y29{bottom:339.705600pt;}
.yd2{bottom:339.716267pt;}
.y13{bottom:339.721600pt;}
.ya2{bottom:339.726933pt;}
.yff{bottom:339.952667pt;}
.yfe{bottom:339.967600pt;}
.yfd{bottom:354.630533pt;}
.y85{bottom:359.033600pt;}
.y28{bottom:359.044267pt;}
.yd1{bottom:359.054933pt;}
.y12{bottom:359.060267pt;}
.ya1{bottom:359.065600pt;}
.yfc{bottom:369.293467pt;}
.y84{bottom:378.372267pt;}
.y93{bottom:378.377600pt;}
.y27{bottom:378.382933pt;}
.yf{bottom:378.393600pt;}
.y11{bottom:378.398933pt;}
.y10{bottom:382.750133pt;}
.yfb{bottom:383.956400pt;}
.y83{bottom:397.710933pt;}
.y92{bottom:397.716267pt;}
.y26{bottom:397.721600pt;}
.ye{bottom:397.732267pt;}
.yfa{bottom:398.619333pt;}
.yd{bottom:417.049600pt;}
.y91{bottom:417.054933pt;}
.y25{bottom:417.060267pt;}
.yf9{bottom:417.064667pt;}
.ya6{bottom:417.540667pt;}
.ybb{bottom:418.682400pt;}
.yd0{bottom:421.416800pt;}
.ya5{bottom:431.944667pt;}
.yba{bottom:433.086400pt;}
.yce{bottom:436.361600pt;}
.yc{bottom:436.388267pt;}
.y90{bottom:436.393600pt;}
.y24{bottom:436.398933pt;}
.ycf{bottom:440.750133pt;}
.yf8{bottom:445.286000pt;}
.yf7{bottom:445.323333pt;}
.yb9{bottom:447.490400pt;}
.ycd{bottom:455.700267pt;}
.y5f{bottom:455.716267pt;}
.y8f{bottom:455.721600pt;}
.yb{bottom:455.726933pt;}
.yf6{bottom:459.986267pt;}
.yf5{bottom:474.649200pt;}
.ycc{bottom:475.038933pt;}
.y5e{bottom:475.054933pt;}
.y9{bottom:475.060267pt;}
.ya{bottom:475.065600pt;}
.yb8{bottom:479.675867pt;}
.yf4{bottom:489.312133pt;}
.ycb{bottom:494.377600pt;}
.y82{bottom:494.388267pt;}
.y5d{bottom:494.393600pt;}
.y8{bottom:494.398933pt;}
.yb7{bottom:498.577200pt;}
.yf3{bottom:503.975067pt;}
.yca{bottom:513.716267pt;}
.y81{bottom:513.726933pt;}
.y7{bottom:513.732267pt;}
.yb6{bottom:517.478533pt;}
.yf2{bottom:518.638000pt;}
.yc9{bottom:533.054933pt;}
.y22{bottom:533.060267pt;}
.y5c{bottom:533.065600pt;}
.yf1{bottom:533.300933pt;}
.yb5{bottom:536.379867pt;}
.y23{bottom:537.416800pt;}
.yf0{bottom:547.963867pt;}
.ye6{bottom:551.483067pt;}
.ye7{bottom:551.491067pt;}
.y80{bottom:552.366933pt;}
.yc8{bottom:552.393600pt;}
.y21{bottom:552.398933pt;}
.y9b{bottom:552.428000pt;}
.yb4{bottom:555.281200pt;}
.yef{bottom:562.626800pt;}
.ye5{bottom:565.887067pt;}
.y9a{bottom:566.832000pt;}
.y7f{bottom:571.705600pt;}
.yc5{bottom:571.721600pt;}
.yc6{bottom:571.732267pt;}
.yb3{bottom:574.182533pt;}
.yc7{bottom:576.083467pt;}
.yee{bottom:577.289733pt;}
.ye4{bottom:580.291067pt;}
.y99{bottom:581.236000pt;}
.y7e{bottom:591.044267pt;}
.yc4{bottom:591.060267pt;}
.yed{bottom:591.952667pt;}
.yb2{bottom:593.083867pt;}
.y6a{bottom:610.370933pt;}
.y3b{bottom:610.378933pt;}
.y7d{bottom:610.382933pt;}
.y3c{bottom:610.398667pt;}
.yc3{bottom:610.398933pt;}
.y9e{bottom:620.181733pt;}
.y69{bottom:624.774933pt;}
.y3a{bottom:624.782933pt;}
.yc2{bottom:629.716267pt;}
.y7c{bottom:629.721600pt;}
.y118{bottom:633.293467pt;}
.yb1{bottom:634.131733pt;}
.y68{bottom:639.178933pt;}
.y39{bottom:639.186933pt;}
.y117{bottom:647.956400pt;}
.yb0{bottom:648.535733pt;}
.yc1{bottom:649.054933pt;}
.y7b{bottom:649.060267pt;}
.yec{bottom:649.065600pt;}
.y6{bottom:653.065600pt;}
.y67{bottom:653.582933pt;}
.y38{bottom:653.590933pt;}
.y116{bottom:662.619333pt;}
.y115{bottom:662.623067pt;}
.yaf{bottom:662.939733pt;}
.y66{bottom:667.986933pt;}
.y37{bottom:667.994933pt;}
.y78{bottom:668.393600pt;}
.y7a{bottom:668.398933pt;}
.y79{bottom:672.750133pt;}
.y114{bottom:673.911600pt;}
.yae{bottom:677.343733pt;}
.y65{bottom:682.390933pt;}
.y36{bottom:682.398933pt;}
.y75{bottom:687.726933pt;}
.y77{bottom:687.732267pt;}
.y5{bottom:690.398933pt;}
.y76{bottom:692.083467pt;}
.y64{bottom:696.794933pt;}
.y72{bottom:707.060267pt;}
.y74{bottom:707.065600pt;}
.y63{bottom:711.198933pt;}
.y73{bottom:711.416800pt;}
.yeb{bottom:726.366933pt;}
.y6f{bottom:726.377600pt;}
.y71{bottom:726.398933pt;}
.y4{bottom:727.732267pt;}
.y70{bottom:730.750133pt;}
.yea{bottom:745.705600pt;}
.y6e{bottom:745.716267pt;}
.y113{bottom:750.619333pt;}
.y112{bottom:750.626800pt;}
.ya0{bottom:752.984877pt;}
.ye9{bottom:765.044267pt;}
.y6d{bottom:765.054933pt;}
.y3{bottom:765.065600pt;}
.y111{bottom:765.289733pt;}
.y110{bottom:779.952667pt;}
.ye8{bottom:784.382933pt;}
.y6c{bottom:784.393600pt;}
.yc0{bottom:784.398933pt;}
.ybf{bottom:788.750133pt;}
.y10f{bottom:794.630400pt;}
.ybd{bottom:803.721600pt;}
.y6b{bottom:803.732267pt;}
.y9d{bottom:804.998533pt;}
.ybe{bottom:808.083467pt;}
.y10e{bottom:809.293333pt;}
.y9f{bottom:816.086533pt;}
.y9c{bottom:817.497733pt;}
.ybc{bottom:823.060267pt;}
.y10d{bottom:823.956267pt;}
.y2{bottom:842.398933pt;}
.hb{height:14.420288pt;}
.hd{height:14.542481pt;}
.hc{height:14.882656pt;}
.he{height:15.052744pt;}
.h16{height:15.172390pt;}
.hf{height:15.449600pt;}
.h12{height:15.487224pt;}
.h17{height:15.507632pt;}
.h14{height:15.645703pt;}
.h10{height:15.692882pt;}
.h11{height:15.751673pt;}
.h15{height:15.815115pt;}
.h1a{height:18.034000pt;}
.h13{height:18.491895pt;}
.h6{height:22.061342pt;}
.h1b{height:25.870275pt;}
.h28{height:29.346133pt;}
.h29{height:29.349867pt;}
.h18{height:30.480053pt;}
.h1e{height:30.534400pt;}
.h19{height:30.915483pt;}
.h23{height:31.317333pt;}
.h2{height:36.398933pt;}
.h24{height:36.402133pt;}
.h7{height:36.419733pt;}
.h9{height:37.356800pt;}
.h26{height:38.314667pt;}
.h25{height:38.346667pt;}
.h22{height:38.442667pt;}
.h27{height:39.146667pt;}
.h1f{height:39.235219pt;}
.h5{height:44.374400pt;}
.h1c{height:44.417067pt;}
.h1d{height:44.438400pt;}
.h21{height:47.162883pt;}
.h2a{height:49.896533pt;}
.h8{height:52.128000pt;}
.h20{height:52.609922pt;}
.h3{height:52.858667pt;}
.h4{height:77.226667pt;}
.ha{height:252.278667pt;}
.h1{height:944.666667pt;}
.h0{height:944.881333pt;}
.w2{width:332.409333pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.x20{left:5.494400pt;}
.x15{left:7.824667pt;}
.x10{left:97.322667pt;}
.x1{left:98.267733pt;}
.x12{left:102.147321pt;}
.x4b{left:103.446240pt;}
.x1d{left:104.794630pt;}
.x11{left:111.763733pt;}
.x5{left:117.165333pt;}
.x2{left:128.504000pt;}
.x6{left:130.115600pt;}
.x56{left:132.001733pt;}
.x7{left:134.188000pt;}
.x14{left:135.249713pt;}
.x45{left:149.448800pt;}
.x13{left:152.006690pt;}
.x3d{left:155.118800pt;}
.x46{left:162.563067pt;}
.x1b{left:181.825467pt;}
.xb{left:187.066000pt;}
.x29{left:194.890267pt;}
.x41{left:197.404133pt;}
.x40{left:199.476798pt;}
.x2a{left:202.624400pt;}
.x1c{left:206.229733pt;}
.x1f{left:210.473534pt;}
.x4f{left:215.089867pt;}
.x33{left:218.674400pt;}
.x8{left:219.936000pt;}
.x9{left:224.008400pt;}
.x34{left:226.408533pt;}
.x54{left:228.342000pt;}
.x1a{left:245.464667pt;}
.x59{left:255.809467pt;}
.x18{left:267.779467pt;}
.x52{left:271.566533pt;}
.x43{left:275.989733pt;}
.x57{left:278.344133pt;}
.x53{left:279.629200pt;}
.x16{left:280.832000pt;}
.x19{left:282.614749pt;}
.x2d{left:285.198933pt;}
.xd{left:286.311733pt;}
.x1e{left:290.261467pt;}
.x2e{left:292.933067pt;}
.x17{left:298.195867pt;}
.xa{left:306.534267pt;}
.x21{left:315.374895pt;}
.x27{left:322.635867pt;}
.xe{left:323.799467pt;}
.x3e{left:325.370133pt;}
.x44{left:329.044667pt;}
.x3c{left:333.182133pt;}
.x3a{left:345.377333pt;}
.x4c{left:349.540667pt;}
.x4d{left:353.613067pt;}
.x2f{left:359.979067pt;}
.x4a{left:364.236000pt;}
.x30{left:367.713200pt;}
.x50{left:389.779333pt;}
.x28{left:393.070933pt;}
.x51{left:397.841867pt;}
.x49{left:404.409467pt;}
.x42{left:427.179867pt;}
.xf{left:437.291333pt;}
.x47{left:462.925067pt;}
.x3f{left:465.381200pt;}
.xc{left:481.704000pt;}
.x48{left:510.668133pt;}
.x2b{left:518.546267pt;}
.x2c{left:526.280267pt;}
.x38{left:546.151467pt;}
.x35{left:549.182933pt;}
.x3{left:551.145467pt;}
.x3b{left:553.806667pt;}
.x31{left:576.238133pt;}
.x55{left:578.070267pt;}
.x32{left:583.972267pt;}
.x22{left:586.698133pt;}
.x4{left:588.596000pt;}
.x23{left:590.606000pt;}
.x4e{left:597.428800pt;}
.x24{left:598.350933pt;}
.x25{left:602.063867pt;}
.x36{left:602.983867pt;}
.x26{left:606.012800pt;}
.x37{left:610.560133pt;}
.x39{left:616.090933pt;}
.x58{left:619.842533pt;}
}




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