
    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_03eb504558286b15abd6eacc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_292ad7e92468755cd400c001.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_40a003cefb0c4a024c9a1ae8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_8bd6c0573d8b8c4c4febf05c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_7bc4214b2cc555503d37f937.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.364746;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_b675e946d0d2157cbe950d2e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_6c687873127740a3c96511f9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_b77fbe632353dcca86f6b30d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_0e79f9aec8902937d38fc018.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.364746;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_fe210d0aedaf3373cc6b93f6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_71231c0a9acb12874323df7c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;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_14829f2b6fd42a117d4d3eb7.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_0e79f9aec8902937d38fc018.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.364746;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_316a437d1bdb5b350b6b7634.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.311035;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_35e2f7918327df6115b3f440.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;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_f371fdbb500c92e726d89d5f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284668;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_96ab601b25a74e8e51d39e4e.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.311035;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_2022f2202897ee071e1c770a.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;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_6d8dec386ec3da486e46de24.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.284180;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_652201743ed56d8757ccda13.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284668;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_9a10ef414333c24374394623.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.432129;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_071fb58401b8027386151e49.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.311035;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;}
.m1f{transform:matrix(0.136957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136957,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152174,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.171196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171196,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.182609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182609,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.190217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190217,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200521,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.208955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208955,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226027,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233108,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.233696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233696,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236667,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m1{transform:matrix(0.252137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252137,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256667,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.258427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258427,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260135,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260274,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.267606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267606,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.268987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268987,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.269663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269663,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.270926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270926,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273333,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274306,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.274648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274648,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280822,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.280899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280899,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.289286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289286,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.305147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305147,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.306338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306338,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.308219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308219,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.417457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417457,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.706522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.706522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.706522,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.725543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725543,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.916667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.916667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.916667,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-1.443000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-8.577900px;}
.ls2d{letter-spacing:-8.366100px;}
.ls1f{letter-spacing:-5.463450px;}
.ls2c{letter-spacing:-4.323450px;}
.ls26{letter-spacing:-3.969375px;}
.ls40{letter-spacing:-3.701100px;}
.ls36{letter-spacing:-3.699000px;}
.ls32{letter-spacing:-3.651825px;}
.ls30{letter-spacing:-3.413325px;}
.ls13{letter-spacing:-2.960700px;}
.ls43{letter-spacing:-2.958150px;}
.ls1d{letter-spacing:-2.875500px;}
.ls34{letter-spacing:-2.724750px;}
.ls38{letter-spacing:-2.340000px;}
.ls16{letter-spacing:-2.156625px;}
.ls27{letter-spacing:-1.587750px;}
.ls3a{letter-spacing:-1.586250px;}
.ls23{letter-spacing:-1.565100px;}
.lse{letter-spacing:-1.542900px;}
.ls4a{letter-spacing:-1.501650px;}
.ls12{letter-spacing:-1.501200px;}
.ls17{letter-spacing:-1.500150px;}
.lsd{letter-spacing:-1.480350px;}
.ls41{letter-spacing:-1.478250px;}
.ls3f{letter-spacing:-1.462500px;}
.ls33{letter-spacing:-1.443000px;}
.ls1e{letter-spacing:-1.437750px;}
.ls14{letter-spacing:-1.400475px;}
.ls35{letter-spacing:-1.384500px;}
.ls2b{letter-spacing:-1.372500px;}
.ls24{letter-spacing:-1.366200px;}
.ls25{letter-spacing:-0.793875px;}
.ls3c{letter-spacing:-0.761475px;}
.ls2f{letter-spacing:-0.761400px;}
.ls10{letter-spacing:-0.761025px;}
.ls8{letter-spacing:-0.750600px;}
.lsb{letter-spacing:-0.740175px;}
.ls28{letter-spacing:-0.739800px;}
.ls3d{letter-spacing:-0.739125px;}
.ls21{letter-spacing:-0.738150px;}
.ls3b{letter-spacing:-0.728175px;}
.ls1c{letter-spacing:-0.718875px;}
.ls22{letter-spacing:-0.714375px;}
.ls31{letter-spacing:-0.667950px;}
.ls9{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.645750px;}
.ls15{letter-spacing:0.678300px;}
.ls18{letter-spacing:0.718875px;}
.ls37{letter-spacing:0.722700px;}
.ls1{letter-spacing:0.740175px;}
.lsf{letter-spacing:0.749250px;}
.ls45{letter-spacing:0.750825px;}
.ls20{letter-spacing:0.793875px;}
.ls4b{letter-spacing:0.804750px;}
.ls11{letter-spacing:0.815625px;}
.ls1a{letter-spacing:1.437750px;}
.ls2{letter-spacing:1.480350px;}
.ls46{letter-spacing:1.501650px;}
.ls3e{letter-spacing:1.522500px;}
.ls29{letter-spacing:1.522800px;}
.lsa{letter-spacing:1.565850px;}
.ls19{letter-spacing:2.156625px;}
.ls39{letter-spacing:2.217375px;}
.ls4{letter-spacing:2.220525px;}
.ls47{letter-spacing:2.252475px;}
.ls1b{letter-spacing:2.875500px;}
.ls3{letter-spacing:2.960700px;}
.ls44{letter-spacing:2.997975px;}
.ls49{letter-spacing:3.000900px;}
.ls0{letter-spacing:3.002400px;}
.ls48{letter-spacing:3.748800px;}
.ls2a{letter-spacing:3.801600px;}
.ls5{letter-spacing:4.435725px;}
.ls42{letter-spacing:4.440225px;}
.ls6{letter-spacing:21.441000px;}
.ls7{letter-spacing:26.772525px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
._17{margin-left:-7.827750px;}
._16{margin-left:-5.472720px;}
._f{margin-left:-3.528750px;}
._15{margin-left:-1.480350px;}
._d{width:1.680750px;}
._0{width:3.504600px;}
._2{width:4.860000px;}
._1{width:5.864400px;}
._14{width:6.889125px;}
._5{width:7.987500px;}
._9{width:8.993925px;}
._6{width:10.096200px;}
._4{width:11.129250px;}
._a{width:12.620250px;}
._e{width:14.084625px;}
._3{width:15.123000px;}
._8{width:16.378950px;}
._b{width:18.051750px;}
._c{width:19.234650px;}
._7{width:20.767500px;}
._10{width:22.652550px;}
._11{width:23.728200px;}
._13{width:24.940525px;}
._12{width:26.145750px;}
._18{width:53.063625px;}
.fc0{color:transparent;}
.fs15{font-size:21.000000px;}
.fs13{font-size:38.649000px;}
.fs11{font-size:50.250000px;}
.fsb{font-size:51.000000px;}
.fs7{font-size:51.750000px;}
.fs14{font-size:51.847800px;}
.fsa{font-size:52.500000px;}
.fs3{font-size:53.250000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:54.750000px;}
.fs6{font-size:55.500000px;}
.fs8{font-size:56.250000px;}
.fse{font-size:57.750000px;}
.fsf{font-size:58.500000px;}
.fs12{font-size:59.250000px;}
.fs5{font-size:60.750000px;}
.fsd{font-size:66.750000px;}
.fs9{font-size:69.000000px;}
.fsc{font-size:72.000000px;}
.fs10{font-size:86.250000px;}
.fs1{font-size:87.750000px;}
.fs0{font-size:105.000000px;}
.y0{bottom:0.000000px;}
.yb9{bottom:96.615450px;}
.yb8{bottom:96.616087px;}
.yf4{bottom:97.337250px;}
.y39{bottom:99.856950px;}
.y78{bottom:103.092150px;}
.y79{bottom:103.095150px;}
.yf2{bottom:111.733012px;}
.yf3{bottom:111.736950px;}
.y38{bottom:113.536500px;}
.y37{bottom:113.542237px;}
.yb6{bottom:114.254550px;}
.yb7{bottom:114.255150px;}
.y77{bottom:118.215150px;}
.yb5{bottom:130.815300px;}
.yb4{bottom:130.817587px;}
.y36{bottom:134.056800px;}
.yf1{bottom:134.776950px;}
.yb2{bottom:148.452862px;}
.yb3{bottom:148.456650px;}
.yf0{bottom:152.416650px;}
.yef{bottom:152.417288px;}
.y75{bottom:153.491587px;}
.y76{bottom:153.496050px;}
.yb1{bottom:166.091925px;}
.y34{bottom:168.247013px;}
.y74{bottom:168.255150px;}
.y35{bottom:168.256800px;}
.yee{bottom:170.056350px;}
.yb0{bottom:180.496050px;}
.y73{bottom:182.295600px;}
.y33{bottom:183.010575px;}
.yed{bottom:186.975750px;}
.y72{bottom:195.255150px;}
.y32{bottom:195.983287px;}
.yae{bottom:208.199325px;}
.yaf{bottom:208.216200px;}
.y31{bottom:208.936350px;}
.y71{bottom:210.008513px;}
.y30{bottom:222.253912px;}
.yad{bottom:222.962887px;}
.yec{bottom:223.336200px;}
.y70{bottom:224.412637px;}
.y2f{bottom:235.206975px;}
.yac{bottom:237.367012px;}
.yeb{bottom:238.089563px;}
.y6f{bottom:239.157262px;}
.y2e{bottom:248.173350px;}
.yab{bottom:251.771137px;}
.yea{bottom:252.493687px;}
.y6e{bottom:253.561387px;}
.y2d{bottom:261.126413px;}
.yaa{bottom:266.534700px;}
.ye9{bottom:267.257250px;}
.y6d{bottom:267.965512px;}
.y2c{bottom:274.452225px;}
.ya9{bottom:281.298263px;}
.ye8{bottom:281.648400px;}
.y6c{bottom:282.729075px;}
.y2b{bottom:287.045850px;}
.ya8{bottom:293.891887px;}
.ye7{bottom:296.052525px;}
.y6b{bottom:297.492638px;}
.y2a{bottom:300.371663px;}
.ya7{bottom:308.655450px;}
.ye6{bottom:310.456650px;}
.y6a{bottom:312.256200px;}
.y29{bottom:313.338038px;}
.ya6{bottom:323.775300px;}
.ye4{bottom:324.836325px;}
.ye5{bottom:324.856350px;}
.y69{bottom:327.012338px;}
.y28{bottom:327.023288px;}
.ya5{bottom:338.167912px;}
.ye3{bottom:339.240450px;}
.y26{bottom:339.969112px;}
.y27{bottom:339.976350px;}
.y68{bottom:341.768813px;}
.ya4{bottom:352.931475px;}
.ye2{bottom:353.285138px;}
.y25{bottom:354.373238px;}
.y67{bottom:356.172938px;}
.ya2{bottom:367.307025px;}
.ya3{bottom:367.335600px;}
.ye1{bottom:368.048700px;}
.y24{bottom:369.136800px;}
.y65{bottom:379.931475px;}
.y66{bottom:379.935750px;}
.ya1{bottom:381.711150px;}
.ye0{bottom:382.452825px;}
.y23{bottom:393.256200px;}
.y64{bottom:394.335600px;}
.ya0{bottom:396.115275px;}
.ydf{bottom:396.836737px;}
.y63{bottom:409.096200px;}
.y9f{bottom:410.519400px;}
.y21{bottom:410.889900px;}
.y22{bottom:410.895750px;}
.yde{bottom:411.240862px;}
.y61{bottom:423.492263px;}
.y62{bottom:423.496050px;}
.y9e{bottom:424.923525px;}
.ydd{bottom:426.004425px;}
.y20{bottom:428.355900px;}
.y1f{bottom:428.368650px;}
.y9d{bottom:437.889900px;}
.y60{bottom:437.896388px;}
.ydc{bottom:440.408550px;}
.y1e{bottom:444.383588px;}
.ydb{bottom:454.812675px;}
.y5f{bottom:455.535450px;}
.y1d{bottom:457.331775px;}
.y9c{bottom:460.933838px;}
.yda{bottom:469.209375px;}
.y1c{bottom:474.970838px;}
.y9a{bottom:477.134700px;}
.y9b{bottom:477.135150px;}
.yd9{bottom:483.972938px;}
.y1b{bottom:488.296650px;}
.y5e{bottom:490.816350px;}
.y99{bottom:493.695450px;}
.yd8{bottom:498.732075px;}
.y5d{bottom:503.765475px;}
.yd7{bottom:513.136200px;}
.y5c{bottom:518.888475px;}
.y98{bottom:522.862237px;}
.y18{bottom:526.452750px;}
.y19{bottom:526.456650px;}
.y1a{bottom:526.815900px;}
.yd6{bottom:527.892525px;}
.y5b{bottom:533.652038px;}
.y97{bottom:535.809525px;}
.y17{bottom:539.405812px;}
.yd4{bottom:542.274862px;}
.yd5{bottom:542.296650px;}
.y59{bottom:548.412637px;}
.y5a{bottom:548.415600px;}
.y96{bottom:550.573087px;}
.y16{bottom:554.528812px;}
.yd3{bottom:557.397862px;}
.y58{bottom:563.176200px;}
.y57{bottom:563.176725px;}
.y95{bottom:565.309800px;}
.y15{bottom:568.932937px;}
.yd2{bottom:571.801987px;}
.y56{bottom:575.770350px;}
.y94{bottom:580.073362px;}
.y14{bottom:583.696500px;}
.yd1{bottom:586.206112px;}
.y55{bottom:591.252787px;}
.y93{bottom:594.836925px;}
.y13{bottom:598.089112px;}
.yd0{bottom:600.610237px;}
.y54{bottom:606.016350px;}
.y92{bottom:607.789987px;}
.y12{bottom:612.852675px;}
.ycf{bottom:615.373800px;}
.y53{bottom:619.150425px;}
.y91{bottom:622.553550px;}
.y10{bottom:627.220387px;}
.y11{bottom:627.256800px;}
.y52{bottom:633.727612px;}
.y90{bottom:636.957675px;}
.yce{bottom:639.495788px;}
.yf{bottom:641.983950px;}
.y10d{bottom:642.012937px;}
.y10e{bottom:642.015750px;}
.y51{bottom:648.131737px;}
.y8f{bottom:651.721237px;}
.ycd{bottom:655.697100px;}
.ye{bottom:656.388075px;}
.y10c{bottom:656.776500px;}
.y50{bottom:662.892337px;}
.y8e{bottom:664.687612px;}
.y10a{bottom:669.728662px;}
.y10b{bottom:669.735900px;}
.yd{bottom:671.151637px;}
.ycc{bottom:672.257250px;}
.y4f{bottom:677.655900px;}
.y8d{bottom:679.091737px;}
.y109{bottom:684.132787px;}
.yc{bottom:685.915200px;}
.y8b{bottom:693.852487px;}
.y8c{bottom:693.855300px;}
.y108{bottom:698.896350px;}
.yb{bottom:700.319325px;}
.y4e{bottom:701.416050px;}
.y8a{bottom:708.616050px;}
.ycb{bottom:709.697100px;}
.y107{bottom:713.296200px;}
.ya{bottom:714.723450px;}
.y4c{bottom:716.172375px;}
.y4d{bottom:716.175150px;}
.y89{bottom:722.999437px;}
.yca{bottom:723.010387px;}
.y106{bottom:727.691625px;}
.y9{bottom:729.487012px;}
.y4a{bottom:730.572037px;}
.y4b{bottom:730.576500px;}
.y88{bottom:735.952500px;}
.yc9{bottom:736.336200px;}
.y104{bottom:742.088512px;}
.y105{bottom:742.095750px;}
.y8{bottom:743.891137px;}
.y49{bottom:745.335600px;}
.y87{bottom:750.716062px;}
.yc8{bottom:751.088287px;}
.y103{bottom:756.852075px;}
.y47{bottom:757.932937px;}
.y48{bottom:757.935750px;}
.y7{bottom:758.654700px;}
.y86{bottom:765.120187px;}
.yc7{bottom:766.211287px;}
.y102{bottom:771.256200px;}
.y46{bottom:772.696500px;}
.y45{bottom:772.697137px;}
.yc5{bottom:779.532825px;}
.yc6{bottom:779.537100px;}
.y85{bottom:779.883750px;}
.y6{bottom:782.776950px;}
.y101{bottom:786.016800px;}
.y44{bottom:790.336200px;}
.yc3{bottom:793.931437px;}
.yc4{bottom:793.936950px;}
.y84{bottom:794.647312px;}
.y5{bottom:797.541787px;}
.y100{bottom:800.764200px;}
.yc2{bottom:807.257250px;}
.y83{bottom:809.410875px;}
.yff{bottom:815.527763px;}
.y3{bottom:818.053387px;}
.y4{bottom:818.056350px;}
.yc1{bottom:822.016350px;}
.y82{bottom:823.815000px;}
.y42{bottom:825.968925px;}
.y43{bottom:825.976350px;}
.yfe{bottom:829.931888px;}
.y2{bottom:832.816950px;}
.yc0{bottom:836.776950px;}
.y41{bottom:840.732488px;}
.yfd{bottom:844.688213px;}
.y81{bottom:847.937250px;}
.ybf{bottom:849.377250px;}
.y40{bottom:855.496050px;}
.yfc{bottom:859.092338px;}
.ybe{bottom:864.128775px;}
.y80{bottom:865.935750px;}
.y3f{bottom:868.445025px;}
.y1{bottom:872.417250px;}
.yfb{bottom:873.851475px;}
.ybd{bottom:878.892337px;}
.y3e{bottom:883.208587px;}
.y7f{bottom:883.936350px;}
.yf9{bottom:888.248550px;}
.yfa{bottom:888.255600px;}
.ybc{bottom:893.655338px;}
.y3d{bottom:898.331588px;}
.y7d{bottom:901.214550px;}
.y7e{bottom:901.215150px;}
.yf8{bottom:902.652675px;}
.y3c{bottom:913.095150px;}
.yf7{bottom:917.056800px;}
.y7c{bottom:917.775300px;}
.y7b{bottom:917.777400px;}
.ybb{bottom:917.777588px;}
.y3b{bottom:927.851475px;}
.yf6{bottom:931.452225px;}
.yba{bottom:935.416650px;}
.y7a{bottom:935.775900px;}
.y3a{bottom:942.255600px;}
.yf5{bottom:945.856350px;}
.h36{height:37.931880px;}
.hf{height:50.053711px;}
.h3a{height:50.885780px;}
.he{height:51.525879px;}
.h5{height:52.261963px;}
.h2f{height:52.263013px;}
.h2c{height:52.264213px;}
.h3b{height:52.273213px;}
.h1a{height:52.273813px;}
.h35{height:52.277713px;}
.h20{height:52.279063px;}
.h14{height:52.279663px;}
.h23{height:52.279813px;}
.hc{height:52.281463px;}
.h1b{height:52.282063px;}
.h2e{height:52.283413px;}
.h29{height:52.285063px;}
.h9{height:52.290313px;}
.h22{height:52.290913px;}
.h2d{height:52.291663px;}
.h32{height:52.296763px;}
.h15{height:52.303663px;}
.h39{height:52.308763px;}
.h21{height:52.337713px;}
.h31{height:52.342063px;}
.h30{height:52.342813px;}
.h28{height:52.369363px;}
.h24{height:52.409180px;}
.h19{height:52.625977px;}
.h16{height:52.910156px;}
.h1e{height:52.998047px;}
.h2b{height:53.191406px;}
.h2a{height:53.666016px;}
.h33{height:53.707397px;}
.h6{height:53.734131px;}
.ha{height:53.973633px;}
.h4{height:54.421875px;}
.h8{height:54.470215px;}
.h18{height:55.177734px;}
.h1c{height:55.206299px;}
.h34{height:55.538086px;}
.h1d{height:55.933594px;}
.h12{height:56.678467px;}
.hb{height:56.689453px;}
.h17{height:57.414551px;}
.h27{height:58.555664px;}
.h7{height:60.038086px;}
.h11{height:69.618164px;}
.hd{height:71.964844px;}
.h10{height:75.093750px;}
.h1f{height:89.956055px;}
.h3{height:91.520508px;}
.h2{height:109.511719px;}
.h26{height:1008.000000px;}
.h25{height:1008.272550px;}
.h0{height:1010.792550px;}
.h1{height:1011.000000px;}
.h13{height:1011.152550px;}
.h38{height:1012.500000px;}
.h37{height:1012.592550px;}
.w4{width:662.672550px;}
.w5{width:663.000000px;}
.w7{width:665.250000px;}
.w6{width:665.552550px;}
.w3{width:668.250000px;}
.w2{width:668.434050px;}
.w1{width:671.250000px;}
.w0{width:671.312550px;}
.w8{width:674.192550px;}
.w9{width:674.250000px;}
.x0{left:0.000000px;}
.x24{left:59.558325px;}
.x22{left:60.965025px;}
.x32{left:62.418450px;}
.x47{left:63.478875px;}
.x1a{left:64.576050px;}
.xa{left:66.030300px;}
.x3{left:67.097400px;}
.x80{left:75.737550px;}
.x7f{left:76.816950px;}
.x1f{left:81.497100px;}
.x56{left:85.456050px;}
.x21{left:86.536650px;}
.x41{left:87.616050px;}
.x6d{left:89.052900px;}
.x13{left:90.857550px;}
.x7{left:91.936950px;}
.x83{left:100.213012px;}
.x4f{left:103.096800px;}
.x2a{left:104.537100px;}
.x20{left:106.697550px;}
.x3d{left:107.776950px;}
.x31{left:109.937400px;}
.x12{left:113.897550px;}
.x52{left:118.935300px;}
.x8{left:121.097400px;}
.x3b{left:122.896950px;}
.x7c{left:125.055750px;}
.x51{left:126.855300px;}
.x75{left:131.176200px;}
.xb{left:132.257250px;}
.x42{left:133.336650px;}
.x53{left:136.935750px;}
.x2b{left:138.016800px;}
.x2e{left:139.096200px;}
.x9{left:140.897550px;}
.x50{left:143.056350px;}
.x71{left:146.296200px;}
.xc{left:148.456650px;}
.x54{left:152.055750px;}
.x7e{left:153.855300px;}
.x43{left:159.257250px;}
.x3c{left:161.056800px;}
.x23{left:162.136200px;}
.x2f{left:163.576500px;}
.x5{left:167.897550px;}
.x2c{left:169.336200px;}
.x3e{left:170.776500px;}
.x7d{left:172.216800px;}
.xd{left:173.657100px;}
.x44{left:174.736500px;}
.x11{left:175.817550px;}
.x2d{left:177.617100px;}
.x55{left:179.416650px;}
.x30{left:181.936350px;}
.x74{left:183.015750px;}
.x6c{left:184.456050px;}
.x57{left:185.535450px;}
.x33{left:186.977400px;}
.xe{left:189.136200px;}
.x6{left:190.217250px;}
.x58{left:198.855900px;}
.x87{left:202.097400px;}
.x45{left:207.856950px;}
.x34{left:209.297250px;}
.xf{left:215.776950px;}
.x63{left:219.376050px;}
.x28{left:220.457100px;}
.x14{left:223.697100px;}
.x76{left:231.976350px;}
.x15{left:237.737550px;}
.x64{left:239.535450px;}
.x1{left:240.616500px;}
.x29{left:247.096200px;}
.x3f{left:252.857550px;}
.x65{left:258.615450px;}
.x40{left:261.136800px;}
.x5a{left:263.656500px;}
.x84{left:266.537100px;}
.x1b{left:267.977400px;}
.x5b{left:271.215600px;}
.x77{left:273.735300px;}
.x6e{left:277.695450px;}
.x85{left:279.857550px;}
.x6f{left:289.575450px;}
.x35{left:292.456050px;}
.x78{left:295.695900px;}
.x36{left:305.776500px;}
.x81{left:314.777550px;}
.x59{left:316.216200px;}
.x66{left:321.616500px;}
.x4d{left:323.416050px;}
.x82{left:327.736950px;}
.x68{left:331.695450px;}
.x2{left:337.456650px;}
.x67{left:341.055750px;}
.x8c{left:343.216200px;}
.x7a{left:345.735900px;}
.x69{left:348.255600px;}
.x4e{left:349.697550px;}
.x4{left:359.056350px;}
.x88{left:365.536050px;}
.x89{left:366.617100px;}
.x46{left:371.656500px;}
.x8a{left:378.497100px;}
.x10{left:380.296650px;}
.x7b{left:384.975300px;}
.x6a{left:411.975300px;}
.x6b{left:420.615450px;}
.x5d{left:427.815300px;}
.x37{left:432.856350px;}
.x5e{left:445.095750px;}
.x48{left:448.337250px;}
.x38{left:456.616500px;}
.x79{left:460.576500px;}
.x72{left:464.895750px;}
.x49{left:469.216800px;}
.x16{left:473.176800px;}
.x60{left:482.896350px;}
.x1c{left:485.056800px;}
.x5f{left:488.296650px;}
.x39{left:490.096200px;}
.x73{left:494.056350px;}
.x17{left:496.576050px;}
.x1d{left:507.737550px;}
.x3a{left:509.896350px;}
.x8b{left:512.776950px;}
.x4a{left:518.536650px;}
.x18{left:521.056350px;}
.x25{left:526.097400px;}
.x5c{left:527.176800px;}
.x4b{left:534.737550px;}
.x19{left:536.537100px;}
.x26{left:540.856350px;}
.x61{left:543.016800px;}
.x62{left:564.255600px;}
.x27{left:566.056800px;}
.x1e{left:567.136200px;}
.x4c{left:570.016950px;}
.x70{left:576.496650px;}
.x86{left:606.736500px;}
@media print{
.v1{vertical-align:-1.282667pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-7.624800pt;}
.ls2d{letter-spacing:-7.436533pt;}
.ls1f{letter-spacing:-4.856400pt;}
.ls2c{letter-spacing:-3.843067pt;}
.ls26{letter-spacing:-3.528333pt;}
.ls40{letter-spacing:-3.289867pt;}
.ls36{letter-spacing:-3.288000pt;}
.ls32{letter-spacing:-3.246067pt;}
.ls30{letter-spacing:-3.034067pt;}
.ls13{letter-spacing:-2.631733pt;}
.ls43{letter-spacing:-2.629467pt;}
.ls1d{letter-spacing:-2.556000pt;}
.ls34{letter-spacing:-2.422000pt;}
.ls38{letter-spacing:-2.080000pt;}
.ls16{letter-spacing:-1.917000pt;}
.ls27{letter-spacing:-1.411333pt;}
.ls3a{letter-spacing:-1.410000pt;}
.ls23{letter-spacing:-1.391200pt;}
.lse{letter-spacing:-1.371467pt;}
.ls4a{letter-spacing:-1.334800pt;}
.ls12{letter-spacing:-1.334400pt;}
.ls17{letter-spacing:-1.333467pt;}
.lsd{letter-spacing:-1.315867pt;}
.ls41{letter-spacing:-1.314000pt;}
.ls3f{letter-spacing:-1.300000pt;}
.ls33{letter-spacing:-1.282667pt;}
.ls1e{letter-spacing:-1.278000pt;}
.ls14{letter-spacing:-1.244867pt;}
.ls35{letter-spacing:-1.230667pt;}
.ls2b{letter-spacing:-1.220000pt;}
.ls24{letter-spacing:-1.214400pt;}
.ls25{letter-spacing:-0.705667pt;}
.ls3c{letter-spacing:-0.676867pt;}
.ls2f{letter-spacing:-0.676800pt;}
.ls10{letter-spacing:-0.676467pt;}
.ls8{letter-spacing:-0.667200pt;}
.lsb{letter-spacing:-0.657933pt;}
.ls28{letter-spacing:-0.657600pt;}
.ls3d{letter-spacing:-0.657000pt;}
.ls21{letter-spacing:-0.656133pt;}
.ls3b{letter-spacing:-0.647267pt;}
.ls1c{letter-spacing:-0.639000pt;}
.ls22{letter-spacing:-0.635000pt;}
.ls31{letter-spacing:-0.593733pt;}
.ls9{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.574000pt;}
.ls15{letter-spacing:0.602933pt;}
.ls18{letter-spacing:0.639000pt;}
.ls37{letter-spacing:0.642400pt;}
.ls1{letter-spacing:0.657933pt;}
.lsf{letter-spacing:0.666000pt;}
.ls45{letter-spacing:0.667400pt;}
.ls20{letter-spacing:0.705667pt;}
.ls4b{letter-spacing:0.715333pt;}
.ls11{letter-spacing:0.725000pt;}
.ls1a{letter-spacing:1.278000pt;}
.ls2{letter-spacing:1.315867pt;}
.ls46{letter-spacing:1.334800pt;}
.ls3e{letter-spacing:1.353333pt;}
.ls29{letter-spacing:1.353600pt;}
.lsa{letter-spacing:1.391867pt;}
.ls19{letter-spacing:1.917000pt;}
.ls39{letter-spacing:1.971000pt;}
.ls4{letter-spacing:1.973800pt;}
.ls47{letter-spacing:2.002200pt;}
.ls1b{letter-spacing:2.556000pt;}
.ls3{letter-spacing:2.631733pt;}
.ls44{letter-spacing:2.664867pt;}
.ls49{letter-spacing:2.667467pt;}
.ls0{letter-spacing:2.668800pt;}
.ls48{letter-spacing:3.332267pt;}
.ls2a{letter-spacing:3.379200pt;}
.ls5{letter-spacing:3.942867pt;}
.ls42{letter-spacing:3.946867pt;}
.ls6{letter-spacing:19.058667pt;}
.ls7{letter-spacing:23.797800pt;}
.ws0{word-spacing:0.000000pt;}
._17{margin-left:-6.958000pt;}
._16{margin-left:-4.864640pt;}
._f{margin-left:-3.136667pt;}
._15{margin-left:-1.315867pt;}
._d{width:1.494000pt;}
._0{width:3.115200pt;}
._2{width:4.320000pt;}
._1{width:5.212800pt;}
._14{width:6.123667pt;}
._5{width:7.100000pt;}
._9{width:7.994600pt;}
._6{width:8.974400pt;}
._4{width:9.892667pt;}
._a{width:11.218000pt;}
._e{width:12.519667pt;}
._3{width:13.442667pt;}
._8{width:14.559067pt;}
._b{width:16.046000pt;}
._c{width:17.097467pt;}
._7{width:18.460000pt;}
._10{width:20.135600pt;}
._11{width:21.091733pt;}
._13{width:22.169356pt;}
._12{width:23.240667pt;}
._18{width:47.167667pt;}
.fs15{font-size:18.666667pt;}
.fs13{font-size:34.354667pt;}
.fs11{font-size:44.666667pt;}
.fsb{font-size:45.333333pt;}
.fs7{font-size:46.000000pt;}
.fs14{font-size:46.086933pt;}
.fsa{font-size:46.666667pt;}
.fs3{font-size:47.333333pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:48.666667pt;}
.fs6{font-size:49.333333pt;}
.fs8{font-size:50.000000pt;}
.fse{font-size:51.333333pt;}
.fsf{font-size:52.000000pt;}
.fs12{font-size:52.666667pt;}
.fs5{font-size:54.000000pt;}
.fsd{font-size:59.333333pt;}
.fs9{font-size:61.333333pt;}
.fsc{font-size:64.000000pt;}
.fs10{font-size:76.666667pt;}
.fs1{font-size:78.000000pt;}
.fs0{font-size:93.333333pt;}
.y0{bottom:0.000000pt;}
.yb9{bottom:85.880400pt;}
.yb8{bottom:85.880967pt;}
.yf4{bottom:86.522000pt;}
.y39{bottom:88.761733pt;}
.y78{bottom:91.637467pt;}
.y79{bottom:91.640133pt;}
.yf2{bottom:99.318233pt;}
.yf3{bottom:99.321733pt;}
.y38{bottom:100.921333pt;}
.y37{bottom:100.926433pt;}
.yb6{bottom:101.559600pt;}
.yb7{bottom:101.560133pt;}
.y77{bottom:105.080133pt;}
.yb5{bottom:116.280267pt;}
.yb4{bottom:116.282300pt;}
.y36{bottom:119.161600pt;}
.yf1{bottom:119.801733pt;}
.yb2{bottom:131.958100pt;}
.yb3{bottom:131.961467pt;}
.yf0{bottom:135.481467pt;}
.yef{bottom:135.482033pt;}
.y75{bottom:136.436967pt;}
.y76{bottom:136.440933pt;}
.yb1{bottom:147.637267pt;}
.y34{bottom:149.552900pt;}
.y74{bottom:149.560133pt;}
.y35{bottom:149.561600pt;}
.yee{bottom:151.161200pt;}
.yb0{bottom:160.440933pt;}
.y73{bottom:162.040533pt;}
.y33{bottom:162.676067pt;}
.yed{bottom:166.200667pt;}
.y72{bottom:173.560133pt;}
.y32{bottom:174.207367pt;}
.yae{bottom:185.066067pt;}
.yaf{bottom:185.081067pt;}
.y31{bottom:185.721200pt;}
.y71{bottom:186.674233pt;}
.y30{bottom:197.559033pt;}
.yad{bottom:198.189233pt;}
.yec{bottom:198.521067pt;}
.y70{bottom:199.477900pt;}
.y2f{bottom:209.072867pt;}
.yac{bottom:210.992900pt;}
.yeb{bottom:211.635167pt;}
.y6f{bottom:212.584233pt;}
.y2e{bottom:220.598533pt;}
.yab{bottom:223.796567pt;}
.yea{bottom:224.438833pt;}
.y6e{bottom:225.387900pt;}
.y2d{bottom:232.112367pt;}
.yaa{bottom:236.919733pt;}
.ye9{bottom:237.562000pt;}
.y6d{bottom:238.191567pt;}
.y2c{bottom:243.957533pt;}
.ya9{bottom:250.042900pt;}
.ye8{bottom:250.354133pt;}
.y6c{bottom:251.314733pt;}
.y2b{bottom:255.151867pt;}
.ya8{bottom:261.237233pt;}
.ye7{bottom:263.157800pt;}
.y6b{bottom:264.437900pt;}
.y2a{bottom:266.997033pt;}
.ya7{bottom:274.360400pt;}
.ye6{bottom:275.961467pt;}
.y6a{bottom:277.561067pt;}
.y29{bottom:278.522700pt;}
.ya6{bottom:287.800267pt;}
.ye4{bottom:288.743400pt;}
.ye5{bottom:288.761200pt;}
.y69{bottom:290.677633pt;}
.y28{bottom:290.687367pt;}
.ya5{bottom:300.593700pt;}
.ye3{bottom:301.547067pt;}
.y26{bottom:302.194767pt;}
.y27{bottom:302.201200pt;}
.y68{bottom:303.794500pt;}
.ya4{bottom:313.716867pt;}
.ye2{bottom:314.031233pt;}
.y25{bottom:314.998433pt;}
.y67{bottom:316.598167pt;}
.ya2{bottom:326.495133pt;}
.ya3{bottom:326.520533pt;}
.ye1{bottom:327.154400pt;}
.y24{bottom:328.121600pt;}
.y65{bottom:337.716867pt;}
.y66{bottom:337.720667pt;}
.ya1{bottom:339.298800pt;}
.ye0{bottom:339.958067pt;}
.y23{bottom:349.561067pt;}
.y64{bottom:350.520533pt;}
.ya0{bottom:352.102467pt;}
.ydf{bottom:352.743767pt;}
.y63{bottom:363.641067pt;}
.y9f{bottom:364.906133pt;}
.y21{bottom:365.235467pt;}
.y22{bottom:365.240667pt;}
.yde{bottom:365.547433pt;}
.y61{bottom:376.437567pt;}
.y62{bottom:376.440933pt;}
.y9e{bottom:377.709800pt;}
.ydd{bottom:378.670600pt;}
.y20{bottom:380.760800pt;}
.y1f{bottom:380.772133pt;}
.y9d{bottom:389.235467pt;}
.y60{bottom:389.241233pt;}
.ydc{bottom:391.474267pt;}
.y1e{bottom:395.007633pt;}
.ydb{bottom:404.277933pt;}
.y5f{bottom:404.920400pt;}
.y1d{bottom:406.517133pt;}
.y9c{bottom:409.718967pt;}
.yda{bottom:417.075000pt;}
.y1c{bottom:422.196300pt;}
.y9a{bottom:424.119733pt;}
.y9b{bottom:424.120133pt;}
.yd9{bottom:430.198167pt;}
.y1b{bottom:434.041467pt;}
.y5e{bottom:436.281200pt;}
.y99{bottom:438.840400pt;}
.yd8{bottom:443.317400pt;}
.y5d{bottom:447.791533pt;}
.yd7{bottom:456.121067pt;}
.y5c{bottom:461.234200pt;}
.y98{bottom:464.766433pt;}
.y18{bottom:467.958000pt;}
.y19{bottom:467.961467pt;}
.y1a{bottom:468.280800pt;}
.yd6{bottom:469.237800pt;}
.y5b{bottom:474.357367pt;}
.y97{bottom:476.275133pt;}
.y17{bottom:479.471833pt;}
.yd4{bottom:482.022100pt;}
.yd5{bottom:482.041467pt;}
.y59{bottom:487.477900pt;}
.y5a{bottom:487.480533pt;}
.y96{bottom:489.398300pt;}
.y16{bottom:492.914500pt;}
.yd3{bottom:495.464767pt;}
.y58{bottom:500.601067pt;}
.y57{bottom:500.601533pt;}
.y95{bottom:502.497600pt;}
.y15{bottom:505.718167pt;}
.yd2{bottom:508.268433pt;}
.y56{bottom:511.795867pt;}
.y94{bottom:515.620767pt;}
.y14{bottom:518.841333pt;}
.yd1{bottom:521.072100pt;}
.y55{bottom:525.558033pt;}
.y93{bottom:528.743933pt;}
.y13{bottom:531.634767pt;}
.yd0{bottom:533.875767pt;}
.y54{bottom:538.681200pt;}
.y92{bottom:540.257767pt;}
.y12{bottom:544.757933pt;}
.ycf{bottom:546.998933pt;}
.y53{bottom:550.355933pt;}
.y91{bottom:553.380933pt;}
.y10{bottom:557.529233pt;}
.y11{bottom:557.561600pt;}
.y52{bottom:563.313433pt;}
.y90{bottom:566.184600pt;}
.yce{bottom:568.440700pt;}
.yf{bottom:570.652400pt;}
.y10d{bottom:570.678167pt;}
.y10e{bottom:570.680667pt;}
.y51{bottom:576.117100pt;}
.y8f{bottom:579.307767pt;}
.ycd{bottom:582.841867pt;}
.ye{bottom:583.456067pt;}
.y10c{bottom:583.801333pt;}
.y50{bottom:589.237633pt;}
.y8e{bottom:590.833433pt;}
.y10a{bottom:595.314367pt;}
.y10b{bottom:595.320800pt;}
.yd{bottom:596.579233pt;}
.ycc{bottom:597.562000pt;}
.y4f{bottom:602.360800pt;}
.y8d{bottom:603.637100pt;}
.y109{bottom:608.118033pt;}
.yc{bottom:609.702400pt;}
.y8b{bottom:616.757767pt;}
.y8c{bottom:616.760267pt;}
.y108{bottom:621.241200pt;}
.yb{bottom:622.506067pt;}
.y4e{bottom:623.480933pt;}
.y8a{bottom:629.880933pt;}
.ycb{bottom:630.841867pt;}
.y107{bottom:634.041067pt;}
.ya{bottom:635.309733pt;}
.y4c{bottom:636.597667pt;}
.y4d{bottom:636.600133pt;}
.y89{bottom:642.666167pt;}
.yca{bottom:642.675900pt;}
.y106{bottom:646.837000pt;}
.y9{bottom:648.432900pt;}
.y4a{bottom:649.397367pt;}
.y4b{bottom:649.401333pt;}
.y88{bottom:654.180000pt;}
.yc9{bottom:654.521067pt;}
.y104{bottom:659.634233pt;}
.y105{bottom:659.640667pt;}
.y8{bottom:661.236567pt;}
.y49{bottom:662.520533pt;}
.y87{bottom:667.303167pt;}
.yc8{bottom:667.634033pt;}
.y103{bottom:672.757400pt;}
.y47{bottom:673.718167pt;}
.y48{bottom:673.720667pt;}
.y7{bottom:674.359733pt;}
.y86{bottom:680.106833pt;}
.yc7{bottom:681.076700pt;}
.y102{bottom:685.561067pt;}
.y46{bottom:686.841333pt;}
.y45{bottom:686.841900pt;}
.yc5{bottom:692.918067pt;}
.yc6{bottom:692.921867pt;}
.y85{bottom:693.230000pt;}
.y6{bottom:695.801733pt;}
.y101{bottom:698.681600pt;}
.y44{bottom:702.521067pt;}
.yc3{bottom:705.716833pt;}
.yc4{bottom:705.721733pt;}
.y84{bottom:706.353167pt;}
.y5{bottom:708.926033pt;}
.y100{bottom:711.790400pt;}
.yc2{bottom:717.562000pt;}
.y83{bottom:719.476333pt;}
.yff{bottom:724.913567pt;}
.y3{bottom:727.158567pt;}
.y4{bottom:727.161200pt;}
.yc1{bottom:730.681200pt;}
.y82{bottom:732.280000pt;}
.y42{bottom:734.194600pt;}
.y43{bottom:734.201200pt;}
.yfe{bottom:737.717233pt;}
.y2{bottom:740.281733pt;}
.yc0{bottom:743.801733pt;}
.y41{bottom:747.317767pt;}
.yfd{bottom:750.833967pt;}
.y81{bottom:753.722000pt;}
.ybf{bottom:755.002000pt;}
.y40{bottom:760.440933pt;}
.yfc{bottom:763.637633pt;}
.ybe{bottom:768.114467pt;}
.y80{bottom:769.720667pt;}
.y3f{bottom:771.951133pt;}
.y1{bottom:775.482000pt;}
.yfb{bottom:776.756867pt;}
.ybd{bottom:781.237633pt;}
.y3e{bottom:785.074300pt;}
.y7f{bottom:785.721200pt;}
.yf9{bottom:789.554267pt;}
.yfa{bottom:789.560533pt;}
.ybc{bottom:794.360300pt;}
.y3d{bottom:798.516967pt;}
.y7d{bottom:801.079600pt;}
.y7e{bottom:801.080133pt;}
.yf8{bottom:802.357933pt;}
.y3c{bottom:811.640133pt;}
.yf7{bottom:815.161600pt;}
.y7c{bottom:815.800267pt;}
.y7b{bottom:815.802133pt;}
.ybb{bottom:815.802300pt;}
.y3b{bottom:824.756867pt;}
.yf6{bottom:827.957533pt;}
.yba{bottom:831.481467pt;}
.y7a{bottom:831.800800pt;}
.y3a{bottom:837.560533pt;}
.yf5{bottom:840.761200pt;}
.h36{height:33.717227pt;}
.hf{height:44.492188pt;}
.h3a{height:45.231805pt;}
.he{height:45.800781pt;}
.h5{height:46.455078pt;}
.h2f{height:46.456011pt;}
.h2c{height:46.457078pt;}
.h3b{height:46.465078pt;}
.h1a{height:46.465611pt;}
.h35{height:46.469078pt;}
.h20{height:46.470278pt;}
.h14{height:46.470811pt;}
.h23{height:46.470945pt;}
.hc{height:46.472411pt;}
.h1b{height:46.472945pt;}
.h2e{height:46.474145pt;}
.h29{height:46.475611pt;}
.h9{height:46.480278pt;}
.h22{height:46.480811pt;}
.h2d{height:46.481478pt;}
.h32{height:46.486011pt;}
.h15{height:46.492145pt;}
.h39{height:46.496678pt;}
.h21{height:46.522411pt;}
.h31{height:46.526278pt;}
.h30{height:46.526945pt;}
.h28{height:46.550545pt;}
.h24{height:46.585938pt;}
.h19{height:46.778646pt;}
.h16{height:47.031250pt;}
.h1e{height:47.109375pt;}
.h2b{height:47.281250pt;}
.h2a{height:47.703125pt;}
.h33{height:47.739909pt;}
.h6{height:47.763672pt;}
.ha{height:47.976562pt;}
.h4{height:48.375000pt;}
.h8{height:48.417969pt;}
.h18{height:49.046875pt;}
.h1c{height:49.072266pt;}
.h34{height:49.367188pt;}
.h1d{height:49.718750pt;}
.h12{height:50.380859pt;}
.hb{height:50.390625pt;}
.h17{height:51.035156pt;}
.h27{height:52.049479pt;}
.h7{height:53.367188pt;}
.h11{height:61.882812pt;}
.hd{height:63.968750pt;}
.h10{height:66.750000pt;}
.h1f{height:79.960938pt;}
.h3{height:81.351562pt;}
.h2{height:97.343750pt;}
.h26{height:896.000000pt;}
.h25{height:896.242267pt;}
.h0{height:898.482267pt;}
.h1{height:898.666667pt;}
.h13{height:898.802267pt;}
.h38{height:900.000000pt;}
.h37{height:900.082267pt;}
.w4{width:589.042267pt;}
.w5{width:589.333333pt;}
.w7{width:591.333333pt;}
.w6{width:591.602267pt;}
.w3{width:594.000000pt;}
.w2{width:594.163600pt;}
.w1{width:596.666667pt;}
.w0{width:596.722267pt;}
.w8{width:599.282267pt;}
.w9{width:599.333333pt;}
.x0{left:0.000000pt;}
.x24{left:52.940733pt;}
.x22{left:54.191133pt;}
.x32{left:55.483067pt;}
.x47{left:56.425667pt;}
.x1a{left:57.400933pt;}
.xa{left:58.693600pt;}
.x3{left:59.642133pt;}
.x80{left:67.322267pt;}
.x7f{left:68.281733pt;}
.x1f{left:72.441867pt;}
.x56{left:75.960933pt;}
.x21{left:76.921467pt;}
.x41{left:77.880933pt;}
.x6d{left:79.158133pt;}
.x13{left:80.762267pt;}
.x7{left:81.721733pt;}
.x83{left:89.078233pt;}
.x4f{left:91.641600pt;}
.x2a{left:92.921867pt;}
.x20{left:94.842267pt;}
.x3d{left:95.801733pt;}
.x31{left:97.722133pt;}
.x12{left:101.242267pt;}
.x52{left:105.720267pt;}
.x8{left:107.642133pt;}
.x3b{left:109.241733pt;}
.x7c{left:111.160667pt;}
.x51{left:112.760267pt;}
.x75{left:116.601067pt;}
.xb{left:117.562000pt;}
.x42{left:118.521467pt;}
.x53{left:121.720667pt;}
.x2b{left:122.681600pt;}
.x2e{left:123.641067pt;}
.x9{left:125.242267pt;}
.x50{left:127.161200pt;}
.x71{left:130.041067pt;}
.xc{left:131.961467pt;}
.x54{left:135.160667pt;}
.x7e{left:136.760267pt;}
.x43{left:141.562000pt;}
.x3c{left:143.161600pt;}
.x23{left:144.121067pt;}
.x2f{left:145.401333pt;}
.x5{left:149.242267pt;}
.x2c{left:150.521067pt;}
.x3e{left:151.801333pt;}
.x7d{left:153.081600pt;}
.xd{left:154.361867pt;}
.x44{left:155.321333pt;}
.x11{left:156.282267pt;}
.x2d{left:157.881867pt;}
.x55{left:159.481467pt;}
.x30{left:161.721200pt;}
.x74{left:162.680667pt;}
.x6c{left:163.960933pt;}
.x57{left:164.920400pt;}
.x33{left:166.202133pt;}
.xe{left:168.121067pt;}
.x6{left:169.082000pt;}
.x58{left:176.760800pt;}
.x87{left:179.642133pt;}
.x45{left:184.761733pt;}
.x34{left:186.042000pt;}
.xf{left:191.801733pt;}
.x63{left:195.000933pt;}
.x28{left:195.961867pt;}
.x14{left:198.841867pt;}
.x76{left:206.201200pt;}
.x15{left:211.322267pt;}
.x64{left:212.920400pt;}
.x1{left:213.881333pt;}
.x29{left:219.641067pt;}
.x3f{left:224.762267pt;}
.x65{left:229.880400pt;}
.x40{left:232.121600pt;}
.x5a{left:234.361333pt;}
.x84{left:236.921867pt;}
.x1b{left:238.202133pt;}
.x5b{left:241.080533pt;}
.x77{left:243.320267pt;}
.x6e{left:246.840400pt;}
.x85{left:248.762267pt;}
.x6f{left:257.400400pt;}
.x35{left:259.960933pt;}
.x78{left:262.840800pt;}
.x36{left:271.801333pt;}
.x81{left:279.802267pt;}
.x59{left:281.081067pt;}
.x66{left:285.881333pt;}
.x4d{left:287.480933pt;}
.x82{left:291.321733pt;}
.x68{left:294.840400pt;}
.x2{left:299.961467pt;}
.x67{left:303.160667pt;}
.x8c{left:305.081067pt;}
.x7a{left:307.320800pt;}
.x69{left:309.560533pt;}
.x4e{left:310.842267pt;}
.x4{left:319.161200pt;}
.x88{left:324.920933pt;}
.x89{left:325.881867pt;}
.x46{left:330.361333pt;}
.x8a{left:336.441867pt;}
.x10{left:338.041467pt;}
.x7b{left:342.200267pt;}
.x6a{left:366.200267pt;}
.x6b{left:373.880400pt;}
.x5d{left:380.280267pt;}
.x37{left:384.761200pt;}
.x5e{left:395.640667pt;}
.x48{left:398.522000pt;}
.x38{left:405.881333pt;}
.x79{left:409.401333pt;}
.x72{left:413.240667pt;}
.x49{left:417.081600pt;}
.x16{left:420.601600pt;}
.x60{left:429.241200pt;}
.x1c{left:431.161600pt;}
.x5f{left:434.041467pt;}
.x39{left:435.641067pt;}
.x73{left:439.161200pt;}
.x17{left:441.400933pt;}
.x1d{left:451.322267pt;}
.x3a{left:453.241200pt;}
.x8b{left:455.801733pt;}
.x4a{left:460.921467pt;}
.x18{left:463.161200pt;}
.x25{left:467.642133pt;}
.x5c{left:468.601600pt;}
.x4b{left:475.322267pt;}
.x19{left:476.921867pt;}
.x26{left:480.761200pt;}
.x61{left:482.681600pt;}
.x62{left:501.560533pt;}
.x27{left:503.161600pt;}
.x1e{left:504.121067pt;}
.x4c{left:506.681733pt;}
.x70{left:512.441467pt;}
.x86{left:539.321333pt;}
}




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