
    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_bb6dfd1029626f5f3489a2d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.049805;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_2a4d18d2937a4fc2d2c84f99.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_d255342e79fe7685413a88bc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_11b2c7f655aed1b9ab0ef9e4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_9666d3d53453ad524216b65e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.006836;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_84ba5a6d97bd697cea886c63.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_c6f4e7d414de7bc6c77439c6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_b3eaf074b8e9ad0f4398dd9c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.049805;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_bb1c4c80fb5e81ea8d56aec4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.049805;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_e26204c52cd42dcc11e7a331.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_8081538ea7921c267a02a054.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.692871;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_309dd6930683d6d852a442bb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893066;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;}
.ma{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.247632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247632,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248111,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248314,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248418,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.248568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248568,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.249011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249011,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249232,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249257,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249564,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249657,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,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);}
.m37{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250193,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250691,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250709,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250739,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250791,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250841,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250893,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251318,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.251511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251511,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.251632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251632,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251868,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252036,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.252159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252159,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252214,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.252461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252461,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m9{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:-23.975400px;}
.v3{vertical-align:-21.978600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.975400px;}
.lsb{letter-spacing:-7.326000px;}
.ls12{letter-spacing:-0.396000px;}
.lse{letter-spacing:-0.330000px;}
.ls1a{letter-spacing:-0.264000px;}
.lsd{letter-spacing:-0.198000px;}
.ls1c{letter-spacing:-0.132000px;}
.ls10{letter-spacing:-0.066000px;}
.lsa{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.000600px;}
.ls15{letter-spacing:0.010200px;}
.ls14{letter-spacing:0.010800px;}
.ls18{letter-spacing:0.066000px;}
.lsf{letter-spacing:0.132000px;}
.ls13{letter-spacing:0.198000px;}
.ls9{letter-spacing:0.264000px;}
.ls21{letter-spacing:0.281578px;}
.ls25{letter-spacing:0.330000px;}
.ls11{letter-spacing:0.396000px;}
.ls17{letter-spacing:0.445200px;}
.ls1e{letter-spacing:0.456416px;}
.ls8{letter-spacing:0.462000px;}
.ls1d{letter-spacing:0.467168px;}
.ls3{letter-spacing:0.528000px;}
.ls20{letter-spacing:0.584436px;}
.lsc{letter-spacing:0.594000px;}
.ls19{letter-spacing:0.660000px;}
.ls5{letter-spacing:0.726000px;}
.ls16{letter-spacing:0.792000px;}
.ls7{letter-spacing:0.840000px;}
.ls26{letter-spacing:0.843030px;}
.ls24{letter-spacing:0.858000px;}
.ls1b{letter-spacing:1.272000px;}
.ls29{letter-spacing:3.400576px;}
.ls23{letter-spacing:3.554006px;}
.ls22{letter-spacing:3.554601px;}
.ls1f{letter-spacing:5.025149px;}
.ls4{letter-spacing:5.654851px;}
.ls2{letter-spacing:6.143168px;}
.ls6{letter-spacing:7.993663px;}
.ls27{letter-spacing:8.196832px;}
.ls0{letter-spacing:13.200000px;}
.ls1{letter-spacing:35.220600px;}
.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;}
}
.wsa{word-spacing:-37.950000px;}
.ws8{word-spacing:-37.752000px;}
.ws20{word-spacing:-37.620000px;}
.ws57{word-spacing:-37.554000px;}
.ws37{word-spacing:-37.422000px;}
.ws47{word-spacing:-37.356000px;}
.ws59{word-spacing:-37.290000px;}
.ws10{word-spacing:-37.224000px;}
.ws48{word-spacing:-37.158000px;}
.ws56{word-spacing:-37.092000px;}
.ws39{word-spacing:-36.960000px;}
.ws5a{word-spacing:-36.828000px;}
.ws2{word-spacing:-22.500000px;}
.wsd{word-spacing:-19.500000px;}
.ws1{word-spacing:-18.000000px;}
.ws54{word-spacing:-17.358000px;}
.ws65{word-spacing:-17.292000px;}
.ws9{word-spacing:-17.226000px;}
.ws6{word-spacing:-17.094000px;}
.ws7{word-spacing:-17.028000px;}
.ws55{word-spacing:-16.830000px;}
.ws38{word-spacing:-16.698000px;}
.ws1f{word-spacing:-16.632000px;}
.ws58{word-spacing:-16.566000px;}
.ws0{word-spacing:-16.500000px;}
.ws49{word-spacing:-16.434000px;}
.wse{word-spacing:-16.302000px;}
.wsf{word-spacing:-16.170000px;}
.ws5b{word-spacing:-16.104000px;}
.wsb{word-spacing:-15.840000px;}
.wsc{word-spacing:-15.000000px;}
.ws2a{word-spacing:-11.550000px;}
.ws3{word-spacing:-10.494000px;}
.ws5{word-spacing:-9.619500px;}
.ws45{word-spacing:-4.752000px;}
.ws36{word-spacing:-1.980000px;}
.ws6c{word-spacing:-1.188000px;}
.ws22{word-spacing:-1.056000px;}
.ws2c{word-spacing:-0.990000px;}
.ws18{word-spacing:-0.858000px;}
.ws19{word-spacing:-0.792000px;}
.ws3a{word-spacing:-0.660000px;}
.ws13{word-spacing:-0.594000px;}
.ws15{word-spacing:-0.528000px;}
.ws23{word-spacing:-0.462000px;}
.ws4e{word-spacing:-0.396000px;}
.ws3f{word-spacing:-0.330000px;}
.ws1e{word-spacing:-0.264000px;}
.ws6b{word-spacing:-0.132000px;}
.ws29{word-spacing:-0.066000px;}
.ws11{word-spacing:0.000000px;}
.ws1b{word-spacing:0.066000px;}
.ws35{word-spacing:0.198000px;}
.ws44{word-spacing:0.264000px;}
.ws2d{word-spacing:0.330000px;}
.ws34{word-spacing:0.462000px;}
.ws5e{word-spacing:0.528000px;}
.ws1d{word-spacing:0.594000px;}
.ws62{word-spacing:0.660000px;}
.ws2f{word-spacing:0.990000px;}
.ws42{word-spacing:1.122000px;}
.ws46{word-spacing:1.254000px;}
.ws24{word-spacing:1.320000px;}
.ws43{word-spacing:1.386000px;}
.ws2b{word-spacing:1.518000px;}
.ws4a{word-spacing:1.650000px;}
.ws67{word-spacing:1.716000px;}
.ws52{word-spacing:1.782000px;}
.ws31{word-spacing:1.848000px;}
.ws66{word-spacing:1.914000px;}
.ws3c{word-spacing:2.046000px;}
.ws53{word-spacing:2.112000px;}
.ws27{word-spacing:2.244000px;}
.ws21{word-spacing:2.310000px;}
.ws63{word-spacing:2.508000px;}
.ws2e{word-spacing:2.640000px;}
.ws4c{word-spacing:2.706000px;}
.ws61{word-spacing:2.772000px;}
.ws40{word-spacing:2.838000px;}
.ws30{word-spacing:2.970000px;}
.ws1c{word-spacing:3.234000px;}
.ws16{word-spacing:3.300000px;}
.ws5d{word-spacing:3.366000px;}
.ws60{word-spacing:3.498000px;}
.ws25{word-spacing:3.828000px;}
.ws41{word-spacing:3.960000px;}
.ws3b{word-spacing:4.224000px;}
.ws4f{word-spacing:4.290000px;}
.ws26{word-spacing:4.356000px;}
.ws6a{word-spacing:4.488000px;}
.ws4b{word-spacing:4.554000px;}
.ws1a{word-spacing:4.950000px;}
.ws32{word-spacing:5.016000px;}
.ws14{word-spacing:5.544000px;}
.ws50{word-spacing:5.742000px;}
.ws3d{word-spacing:6.204000px;}
.ws3e{word-spacing:6.600000px;}
.ws64{word-spacing:6.798000px;}
.ws68{word-spacing:6.864000px;}
.ws6d{word-spacing:6.930000px;}
.ws51{word-spacing:6.996000px;}
.ws4d{word-spacing:7.194000px;}
.ws12{word-spacing:7.326000px;}
.ws69{word-spacing:7.458000px;}
.ws5f{word-spacing:7.590000px;}
.ws33{word-spacing:8.052000px;}
.ws17{word-spacing:8.220000px;}
.ws5c{word-spacing:8.316000px;}
.ws4{word-spacing:20.566728px;}
.ws28{word-spacing:199.518000px;}
._e{margin-left:-200.640000px;}
._d{margin-left:-199.531200px;}
._20{margin-left:-8.547000px;}
._4{margin-left:-7.359300px;}
._1{margin-left:-6.078600px;}
._3{margin-left:-4.375800px;}
._0{margin-left:-2.448600px;}
._2{margin-left:-1.247400px;}
._8{width:1.056000px;}
._1f{width:2.197800px;}
._9{width:3.340812px;}
._6{width:4.519610px;}
._5{width:5.835921px;}
._7{width:7.241531px;}
._a{width:27.502200px;}
._16{width:47.645400px;}
._12{width:52.846200px;}
._1b{width:63.802200px;}
._f{width:71.194200px;}
._1d{width:80.645400px;}
._1a{width:82.150200px;}
._18{width:90.796200px;}
._13{width:95.634000px;}
._1c{width:101.752200px;}
._15{width:107.824200px;}
._17{width:113.975400px;}
._1e{width:116.219400px;}
._14{width:117.618600px;}
._19{width:124.938000px;}
._c{width:158.994000px;}
._11{width:162.294000px;}
._b{width:196.171800px;}
._10{width:199.471800px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:38.478000px;}
.fs5{font-size:41.976000px;}
.fs8{font-size:46.200000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:86.354850px;}
.y79{bottom:129.560700px;}
.y7d{bottom:132.281250px;}
.ya8{bottom:136.575750px;}
.ycb{bottom:140.822550px;}
.yd7{bottom:143.487150px;}
.yff{bottom:145.746300px;}
.y78{bottom:149.360850px;}
.yd0{bottom:151.280550px;}
.y2a{bottom:151.368300px;}
.y7c{bottom:152.081250px;}
.ya7{bottom:156.375750px;}
.yca{bottom:160.622550px;}
.ya3{bottom:162.422550px;}
.yd6{bottom:163.287150px;}
.yfe{bottom:165.546450px;}
.y77{bottom:169.160850px;}
.ycf{bottom:171.080550px;}
.y29{bottom:171.168300px;}
.y7b{bottom:171.881250px;}
.ya6{bottom:176.175750px;}
.yc9{bottom:180.422550px;}
.ya2{bottom:182.222550px;}
.y126{bottom:183.000300px;}
.yd5{bottom:183.087150px;}
.yce{bottom:190.880550px;}
.y28{bottom:190.968300px;}
.y7a{bottom:191.681250px;}
.yfd{bottom:193.850400px;}
.ya5{bottom:195.975750px;}
.yc8{bottom:200.222550px;}
.ya1{bottom:202.022400px;}
.y125{bottom:202.800300px;}
.y76{bottom:205.968600px;}
.ycd{bottom:210.680550px;}
.y27{bottom:210.768150px;}
.yfc{bottom:213.650250px;}
.ya4{bottom:215.775750px;}
.yc7{bottom:220.022400px;}
.ya0{bottom:221.822550px;}
.y124{bottom:222.600300px;}
.y75{bottom:225.768600px;}
.ycc{bottom:230.480550px;}
.y26{bottom:230.568300px;}
.yfb{bottom:233.450250px;}
.yc6{bottom:239.822550px;}
.y9f{bottom:241.622550px;}
.y123{bottom:242.400300px;}
.y74{bottom:245.568600px;}
.y25{bottom:250.368300px;}
.yfa{bottom:261.754350px;}
.y122{bottom:262.200300px;}
.y73{bottom:265.368600px;}
.yc5{bottom:266.000400px;}
.y9e{bottom:267.800400px;}
.y24{bottom:270.168300px;}
.yf9{bottom:281.554200px;}
.y121{bottom:282.000300px;}
.y72{bottom:285.168600px;}
.y23{bottom:289.968300px;}
.y120{bottom:301.800300px;}
.yc4{bottom:302.808300px;}
.y9d{bottom:304.608300px;}
.y71{bottom:304.968600px;}
.y22{bottom:309.768150px;}
.yf8{bottom:309.858150px;}
.y11f{bottom:321.600300px;}
.yc3{bottom:322.608300px;}
.y9c{bottom:324.408300px;}
.y70{bottom:324.768600px;}
.y21{bottom:329.568300px;}
.yf7{bottom:329.658300px;}
.y4e{bottom:336.483900px;}
.yc2{bottom:342.408300px;}
.y6f{bottom:344.568600px;}
.y20{bottom:349.368300px;}
.yf6{bottom:349.458150px;}
.y4d{bottom:356.283900px;}
.y9b{bottom:361.216200px;}
.yc1{bottom:368.586300px;}
.y1f{bottom:369.168300px;}
.y6e{bottom:370.746600px;}
.y4c{bottom:376.083900px;}
.yf5{bottom:377.762100px;}
.y9a{bottom:381.016200px;}
.y4b{bottom:395.883900px;}
.y1e{bottom:397.472100px;}
.yf4{bottom:397.562100px;}
.y99{bottom:400.816200px;}
.yc0{bottom:405.394200px;}
.y11e{bottom:406.512150px;}
.y6d{bottom:407.554500px;}
.y4a{bottom:415.683900px;}
.ybf{bottom:425.194200px;}
.yf3{bottom:425.866050px;}
.y11d{bottom:426.312150px;}
.y98{bottom:426.994200px;}
.y6c{bottom:427.354500px;}
.y49{bottom:435.483900px;}
.ybe{bottom:451.372050px;}
.yf2{bottom:454.170000px;}
.y11c{bottom:454.615950px;}
.y1d{bottom:454.887900px;}
.y48{bottom:455.283900px;}
.y97{bottom:463.802100px;}
.y6b{bottom:464.162400px;}
.y1c{bottom:472.887900px;}
.y11b{bottom:474.415950px;}
.y47{bottom:475.083900px;}
.y96{bottom:483.602100px;}
.y6a{bottom:483.962250px;}
.ybd{bottom:489.979950px;}
.yf1{bottom:494.577900px;}
.y46{bottom:494.883900px;}
.y11a{bottom:502.719900px;}
.y69{bottom:503.762400px;}
.y1b{bottom:507.895800px;}
.y95{bottom:509.779950px;}
.yf0{bottom:514.377900px;}
.y45{bottom:514.683900px;}
.y119{bottom:522.519900px;}
.ybc{bottom:529.579950px;}
.y68{bottom:529.940250px;}
.yef{bottom:534.177900px;}
.y44{bottom:534.483900px;}
.y1a{bottom:544.703700px;}
.y94{bottom:546.587850px;}
.ybb{bottom:549.379950px;}
.y118{bottom:550.823850px;}
.y43{bottom:554.283900px;}
.yee{bottom:562.481850px;}
.y19{bottom:564.503700px;}
.y93{bottom:566.387850px;}
.y67{bottom:566.748150px;}
.yba{bottom:569.179950px;}
.y117{bottom:570.623850px;}
.y42{bottom:574.083900px;}
.y18{bottom:584.303700px;}
.y92{bottom:586.187850px;}
.y66{bottom:586.548150px;}
.yb9{bottom:588.979950px;}
.y116{bottom:590.423850px;}
.y41{bottom:593.883900px;}
.yed{bottom:602.889750px;}
.y17{bottom:604.103700px;}
.y91{bottom:605.987850px;}
.yb8{bottom:608.779950px;}
.y65{bottom:612.726150px;}
.y40{bottom:613.683900px;}
.y115{bottom:618.727800px;}
.yec{bottom:622.689750px;}
.y16{bottom:623.903700px;}
.y90{bottom:625.787850px;}
.y3f{bottom:633.483900px;}
.yb7{bottom:634.957950px;}
.y114{bottom:638.527800px;}
.y8f{bottom:645.587850px;}
.y64{bottom:649.533900px;}
.yeb{bottom:659.497500px;}
.y8e{bottom:665.387850px;}
.y15{bottom:666.206100px;}
.y113{bottom:666.831750px;}
.y63{bottom:669.334050px;}
.y3e{bottom:670.291800px;}
.yb6{bottom:671.765850px;}
.yea{bottom:679.297650px;}
.y8d{bottom:685.187850px;}
.y14{bottom:686.006100px;}
.y112{bottom:686.631750px;}
.y62{bottom:689.133900px;}
.y3d{bottom:690.091800px;}
.yb5{bottom:691.565850px;}
.ye9{bottom:699.097650px;}
.y8c{bottom:704.987850px;}
.y61{bottom:708.934050px;}
.y3c{bottom:709.891800px;}
.yb4{bottom:711.365850px;}
.y111{bottom:714.935700px;}
.y13{bottom:717.319500px;}
.ye8{bottom:718.897500px;}
.y8b{bottom:724.787850px;}
.y60{bottom:728.734050px;}
.y110{bottom:734.735700px;}
.y3b{bottom:736.069800px;}
.ye7{bottom:738.697650px;}
.y12{bottom:742.614000px;}
.y8a{bottom:744.587850px;}
.yb3{bottom:748.173750px;}
.y5f{bottom:748.533900px;}
.y10f{bottom:754.535700px;}
.y11{bottom:756.919350px;}
.ye6{bottom:758.497500px;}
.y89{bottom:764.387850px;}
.y5e{bottom:768.334050px;}
.y3a{bottom:772.877550px;}
.yb2{bottom:774.351600px;}
.ye5{bottom:778.297650px;}
.y10{bottom:782.214000px;}
.y10e{bottom:782.839650px;}
.y88{bottom:784.187850px;}
.y5d{bottom:788.134050px;}
.y39{bottom:792.677700px;}
.ye4{bottom:798.097650px;}
.yf{bottom:802.014000px;}
.y10d{bottom:802.639650px;}
.y5c{bottom:807.934050px;}
.y87{bottom:810.365850px;}
.yb1{bottom:811.159500px;}
.y38{bottom:812.477550px;}
.ye3{bottom:817.897500px;}
.yd4{bottom:827.373750px;}
.y5b{bottom:827.733900px;}
.ye{bottom:829.075350px;}
.y10c{bottom:830.943600px;}
.yb0{bottom:830.959500px;}
.y37{bottom:832.277550px;}
.ye2{bottom:837.697650px;}
.y86{bottom:847.173750px;}
.y10b{bottom:850.743600px;}
.yaf{bottom:850.759500px;}
.yd3{bottom:853.551600px;}
.y5a{bottom:853.912050px;}
.ye1{bottom:857.497500px;}
.y85{bottom:866.973600px;}
.y36{bottom:869.085450px;}
.y10a{bottom:870.543600px;}
.yae{bottom:870.559500px;}
.ye0{bottom:877.297650px;}
.y84{bottom:886.773600px;}
.y35{bottom:888.885450px;}
.yad{bottom:890.359500px;}
.y59{bottom:890.719800px;}
.ydf{bottom:897.097650px;}
.y109{bottom:898.847550px;}
.yd{bottom:901.698900px;}
.y34{bottom:908.685450px;}
.yac{bottom:910.159500px;}
.y58{bottom:910.519800px;}
.y108{bottom:918.647400px;}
.y83{bottom:923.581650px;}
.y33{bottom:928.485600px;}
.yc{bottom:928.698900px;}
.yd2{bottom:929.959500px;}
.y57{bottom:930.319800px;}
.yde{bottom:933.905400px;}
.y107{bottom:946.951350px;}
.yab{bottom:946.967400px;}
.y32{bottom:948.285450px;}
.y82{bottom:949.759500px;}
.ydd{bottom:953.705400px;}
.y106{bottom:966.751350px;}
.yaa{bottom:966.767400px;}
.y56{bottom:967.127700px;}
.yd1{bottom:969.559500px;}
.ydc{bottom:973.505550px;}
.y31{bottom:974.463450px;}
.y105{bottom:986.551350px;}
.y81{bottom:986.567400px;}
.y55{bottom:986.927700px;}
.ydb{bottom:993.305550px;}
.y30{bottom:1002.767400px;}
.y80{bottom:1006.367400px;}
.y54{bottom:1006.727700px;}
.yda{bottom:1013.105550px;}
.y104{bottom:1014.855300px;}
.yb{bottom:1021.339650px;}
.y7f{bottom:1026.167400px;}
.y53{bottom:1026.527700px;}
.yd9{bottom:1032.905550px;}
.y103{bottom:1034.655300px;}
.y2f{bottom:1043.175300px;}
.y7e{bottom:1045.967400px;}
.y52{bottom:1046.327700px;}
.ya{bottom:1049.643600px;}
.yd8{bottom:1052.705550px;}
.y102{bottom:1054.455300px;}
.y2e{bottom:1062.975150px;}
.ya9{bottom:1062.975300px;}
.y51{bottom:1072.505550px;}
.y9{bottom:1080.451500px;}
.y101{bottom:1082.759250px;}
.y2d{bottom:1082.775300px;}
.y50{bottom:1100.809500px;}
.y100{bottom:1102.559250px;}
.y2c{bottom:1102.575300px;}
.y8{bottom:1105.155450px;}
.y7{bottom:1142.615250px;}
.y4f{bottom:1142.771700px;}
.y2b{bottom:1143.779550px;}
.y6{bottom:1158.970650px;}
.y3{bottom:1180.554450px;}
.y5{bottom:1180.570650px;}
.y2{bottom:1200.354450px;}
.y4{bottom:1200.370650px;}
.hf{height:31.288770px;}
.h8{height:33.064369px;}
.h9{height:33.064969px;}
.h5{height:37.494141px;}
.hd{height:44.698242px;}
.h6{height:44.730469px;}
.h4{height:45.035156px;}
.he{height:48.796875px;}
.hb{height:50.039062px;}
.ha{height:52.207031px;}
.hc{height:52.863281px;}
.h2{height:55.042969px;}
.h3{height:60.046875px;}
.h7{height:60.996094px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:104.347200px;}
.x6{left:106.299150px;}
.x21{left:108.000000px;}
.x22{left:116.793900px;}
.xe{left:121.992750px;}
.x15{left:131.811000px;}
.x1f{left:133.299300px;}
.xf{left:137.987400px;}
.xb{left:140.447400px;}
.x2{left:157.786800px;}
.x8{left:175.344000px;}
.x23{left:184.177200px;}
.x24{left:188.058300px;}
.x7{left:199.898400px;}
.x1e{left:206.215800px;}
.xa{left:207.456450px;}
.x20{left:209.430300px;}
.x1c{left:213.877650px;}
.x11{left:220.142700px;}
.x25{left:228.874950px;}
.x10{left:261.624300px;}
.xd{left:273.050550px;}
.x13{left:283.844550px;}
.x16{left:308.333100px;}
.x1a{left:314.638050px;}
.x14{left:322.232550px;}
.x12{left:324.856800px;}
.x19{left:333.268950px;}
.xc{left:334.493400px;}
.x17{left:347.803200px;}
.x1b{left:351.436650px;}
.x18{left:353.454900px;}
.x9{left:364.822800px;}
.x1d{left:417.803250px;}
.x1{left:434.081700px;}
.x3{left:580.623750px;}
.x5{left:593.749500px;}
.x4{left:675.418200px;}
@media print{
.v2{vertical-align:-21.311467pt;}
.v3{vertical-align:-19.536533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.311467pt;}
.lsb{letter-spacing:-6.512000pt;}
.ls12{letter-spacing:-0.352000pt;}
.lse{letter-spacing:-0.293333pt;}
.ls1a{letter-spacing:-0.234667pt;}
.lsd{letter-spacing:-0.176000pt;}
.ls1c{letter-spacing:-0.117333pt;}
.ls10{letter-spacing:-0.058667pt;}
.lsa{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.000533pt;}
.ls15{letter-spacing:0.009067pt;}
.ls14{letter-spacing:0.009600pt;}
.ls18{letter-spacing:0.058667pt;}
.lsf{letter-spacing:0.117333pt;}
.ls13{letter-spacing:0.176000pt;}
.ls9{letter-spacing:0.234667pt;}
.ls21{letter-spacing:0.250292pt;}
.ls25{letter-spacing:0.293333pt;}
.ls11{letter-spacing:0.352000pt;}
.ls17{letter-spacing:0.395733pt;}
.ls1e{letter-spacing:0.405703pt;}
.ls8{letter-spacing:0.410667pt;}
.ls1d{letter-spacing:0.415261pt;}
.ls3{letter-spacing:0.469333pt;}
.ls20{letter-spacing:0.519498pt;}
.lsc{letter-spacing:0.528000pt;}
.ls19{letter-spacing:0.586667pt;}
.ls5{letter-spacing:0.645333pt;}
.ls16{letter-spacing:0.704000pt;}
.ls7{letter-spacing:0.746667pt;}
.ls26{letter-spacing:0.749360pt;}
.ls24{letter-spacing:0.762667pt;}
.ls1b{letter-spacing:1.130667pt;}
.ls29{letter-spacing:3.022734pt;}
.ls23{letter-spacing:3.159117pt;}
.ls22{letter-spacing:3.159645pt;}
.ls1f{letter-spacing:4.466799pt;}
.ls4{letter-spacing:5.026535pt;}
.ls2{letter-spacing:5.460594pt;}
.ls6{letter-spacing:7.105479pt;}
.ls27{letter-spacing:7.286073pt;}
.ls0{letter-spacing:11.733333pt;}
.ls1{letter-spacing:31.307200pt;}
.wsa{word-spacing:-33.733333pt;}
.ws8{word-spacing:-33.557333pt;}
.ws20{word-spacing:-33.440000pt;}
.ws57{word-spacing:-33.381333pt;}
.ws37{word-spacing:-33.264000pt;}
.ws47{word-spacing:-33.205333pt;}
.ws59{word-spacing:-33.146667pt;}
.ws10{word-spacing:-33.088000pt;}
.ws48{word-spacing:-33.029333pt;}
.ws56{word-spacing:-32.970667pt;}
.ws39{word-spacing:-32.853333pt;}
.ws5a{word-spacing:-32.736000pt;}
.ws2{word-spacing:-20.000000pt;}
.wsd{word-spacing:-17.333333pt;}
.ws1{word-spacing:-16.000000pt;}
.ws54{word-spacing:-15.429333pt;}
.ws65{word-spacing:-15.370667pt;}
.ws9{word-spacing:-15.312000pt;}
.ws6{word-spacing:-15.194667pt;}
.ws7{word-spacing:-15.136000pt;}
.ws55{word-spacing:-14.960000pt;}
.ws38{word-spacing:-14.842667pt;}
.ws1f{word-spacing:-14.784000pt;}
.ws58{word-spacing:-14.725333pt;}
.ws0{word-spacing:-14.666667pt;}
.ws49{word-spacing:-14.608000pt;}
.wse{word-spacing:-14.490667pt;}
.wsf{word-spacing:-14.373333pt;}
.ws5b{word-spacing:-14.314667pt;}
.wsb{word-spacing:-14.080000pt;}
.wsc{word-spacing:-13.333333pt;}
.ws2a{word-spacing:-10.266667pt;}
.ws3{word-spacing:-9.328000pt;}
.ws5{word-spacing:-8.550667pt;}
.ws45{word-spacing:-4.224000pt;}
.ws36{word-spacing:-1.760000pt;}
.ws6c{word-spacing:-1.056000pt;}
.ws22{word-spacing:-0.938667pt;}
.ws2c{word-spacing:-0.880000pt;}
.ws18{word-spacing:-0.762667pt;}
.ws19{word-spacing:-0.704000pt;}
.ws3a{word-spacing:-0.586667pt;}
.ws13{word-spacing:-0.528000pt;}
.ws15{word-spacing:-0.469333pt;}
.ws23{word-spacing:-0.410667pt;}
.ws4e{word-spacing:-0.352000pt;}
.ws3f{word-spacing:-0.293333pt;}
.ws1e{word-spacing:-0.234667pt;}
.ws6b{word-spacing:-0.117333pt;}
.ws29{word-spacing:-0.058667pt;}
.ws11{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.058667pt;}
.ws35{word-spacing:0.176000pt;}
.ws44{word-spacing:0.234667pt;}
.ws2d{word-spacing:0.293333pt;}
.ws34{word-spacing:0.410667pt;}
.ws5e{word-spacing:0.469333pt;}
.ws1d{word-spacing:0.528000pt;}
.ws62{word-spacing:0.586667pt;}
.ws2f{word-spacing:0.880000pt;}
.ws42{word-spacing:0.997333pt;}
.ws46{word-spacing:1.114667pt;}
.ws24{word-spacing:1.173333pt;}
.ws43{word-spacing:1.232000pt;}
.ws2b{word-spacing:1.349333pt;}
.ws4a{word-spacing:1.466667pt;}
.ws67{word-spacing:1.525333pt;}
.ws52{word-spacing:1.584000pt;}
.ws31{word-spacing:1.642667pt;}
.ws66{word-spacing:1.701333pt;}
.ws3c{word-spacing:1.818667pt;}
.ws53{word-spacing:1.877333pt;}
.ws27{word-spacing:1.994667pt;}
.ws21{word-spacing:2.053333pt;}
.ws63{word-spacing:2.229333pt;}
.ws2e{word-spacing:2.346667pt;}
.ws4c{word-spacing:2.405333pt;}
.ws61{word-spacing:2.464000pt;}
.ws40{word-spacing:2.522667pt;}
.ws30{word-spacing:2.640000pt;}
.ws1c{word-spacing:2.874667pt;}
.ws16{word-spacing:2.933333pt;}
.ws5d{word-spacing:2.992000pt;}
.ws60{word-spacing:3.109333pt;}
.ws25{word-spacing:3.402667pt;}
.ws41{word-spacing:3.520000pt;}
.ws3b{word-spacing:3.754667pt;}
.ws4f{word-spacing:3.813333pt;}
.ws26{word-spacing:3.872000pt;}
.ws6a{word-spacing:3.989333pt;}
.ws4b{word-spacing:4.048000pt;}
.ws1a{word-spacing:4.400000pt;}
.ws32{word-spacing:4.458667pt;}
.ws14{word-spacing:4.928000pt;}
.ws50{word-spacing:5.104000pt;}
.ws3d{word-spacing:5.514667pt;}
.ws3e{word-spacing:5.866667pt;}
.ws64{word-spacing:6.042667pt;}
.ws68{word-spacing:6.101333pt;}
.ws6d{word-spacing:6.160000pt;}
.ws51{word-spacing:6.218667pt;}
.ws4d{word-spacing:6.394667pt;}
.ws12{word-spacing:6.512000pt;}
.ws69{word-spacing:6.629333pt;}
.ws5f{word-spacing:6.746667pt;}
.ws33{word-spacing:7.157333pt;}
.ws17{word-spacing:7.306667pt;}
.ws5c{word-spacing:7.392000pt;}
.ws4{word-spacing:18.281536pt;}
.ws28{word-spacing:177.349333pt;}
._e{margin-left:-178.346667pt;}
._d{margin-left:-177.361067pt;}
._20{margin-left:-7.597333pt;}
._4{margin-left:-6.541600pt;}
._1{margin-left:-5.403200pt;}
._3{margin-left:-3.889600pt;}
._0{margin-left:-2.176533pt;}
._2{margin-left:-1.108800pt;}
._8{width:0.938667pt;}
._1f{width:1.953600pt;}
._9{width:2.969611pt;}
._6{width:4.017431pt;}
._5{width:5.187485pt;}
._7{width:6.436916pt;}
._a{width:24.446400pt;}
._16{width:42.351467pt;}
._12{width:46.974400pt;}
._1b{width:56.713067pt;}
._f{width:63.283733pt;}
._1d{width:71.684800pt;}
._1a{width:73.022400pt;}
._18{width:80.707733pt;}
._13{width:85.008000pt;}
._1c{width:90.446400pt;}
._15{width:95.843733pt;}
._17{width:101.311467pt;}
._1e{width:103.306133pt;}
._14{width:104.549867pt;}
._19{width:111.056000pt;}
._c{width:141.328000pt;}
._11{width:144.261333pt;}
._b{width:174.374933pt;}
._10{width:177.308267pt;}
.fs6{font-size:34.202667pt;}
.fs5{font-size:37.312000pt;}
.fs8{font-size:41.066667pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:76.759867pt;}
.y79{bottom:115.165067pt;}
.y7d{bottom:117.583333pt;}
.ya8{bottom:121.400667pt;}
.ycb{bottom:125.175600pt;}
.yd7{bottom:127.544133pt;}
.yff{bottom:129.552267pt;}
.y78{bottom:132.765200pt;}
.yd0{bottom:134.471600pt;}
.y2a{bottom:134.549600pt;}
.y7c{bottom:135.183333pt;}
.ya7{bottom:139.000667pt;}
.yca{bottom:142.775600pt;}
.ya3{bottom:144.375600pt;}
.yd6{bottom:145.144133pt;}
.yfe{bottom:147.152400pt;}
.y77{bottom:150.365200pt;}
.ycf{bottom:152.071600pt;}
.y29{bottom:152.149600pt;}
.y7b{bottom:152.783333pt;}
.ya6{bottom:156.600667pt;}
.yc9{bottom:160.375600pt;}
.ya2{bottom:161.975600pt;}
.y126{bottom:162.666933pt;}
.yd5{bottom:162.744133pt;}
.yce{bottom:169.671600pt;}
.y28{bottom:169.749600pt;}
.y7a{bottom:170.383333pt;}
.yfd{bottom:172.311467pt;}
.ya5{bottom:174.200667pt;}
.yc8{bottom:177.975600pt;}
.ya1{bottom:179.575467pt;}
.y125{bottom:180.266933pt;}
.y76{bottom:183.083200pt;}
.ycd{bottom:187.271600pt;}
.y27{bottom:187.349467pt;}
.yfc{bottom:189.911333pt;}
.ya4{bottom:191.800667pt;}
.yc7{bottom:195.575467pt;}
.ya0{bottom:197.175600pt;}
.y124{bottom:197.866933pt;}
.y75{bottom:200.683200pt;}
.ycc{bottom:204.871600pt;}
.y26{bottom:204.949600pt;}
.yfb{bottom:207.511333pt;}
.yc6{bottom:213.175600pt;}
.y9f{bottom:214.775600pt;}
.y123{bottom:215.466933pt;}
.y74{bottom:218.283200pt;}
.y25{bottom:222.549600pt;}
.yfa{bottom:232.670533pt;}
.y122{bottom:233.066933pt;}
.y73{bottom:235.883200pt;}
.yc5{bottom:236.444800pt;}
.y9e{bottom:238.044800pt;}
.y24{bottom:240.149600pt;}
.yf9{bottom:250.270400pt;}
.y121{bottom:250.666933pt;}
.y72{bottom:253.483200pt;}
.y23{bottom:257.749600pt;}
.y120{bottom:268.266933pt;}
.yc4{bottom:269.162933pt;}
.y9d{bottom:270.762933pt;}
.y71{bottom:271.083200pt;}
.y22{bottom:275.349467pt;}
.yf8{bottom:275.429467pt;}
.y11f{bottom:285.866933pt;}
.yc3{bottom:286.762933pt;}
.y9c{bottom:288.362933pt;}
.y70{bottom:288.683200pt;}
.y21{bottom:292.949600pt;}
.yf7{bottom:293.029600pt;}
.y4e{bottom:299.096800pt;}
.yc2{bottom:304.362933pt;}
.y6f{bottom:306.283200pt;}
.y20{bottom:310.549600pt;}
.yf6{bottom:310.629467pt;}
.y4d{bottom:316.696800pt;}
.y9b{bottom:321.081067pt;}
.yc1{bottom:327.632267pt;}
.y1f{bottom:328.149600pt;}
.y6e{bottom:329.552533pt;}
.y4c{bottom:334.296800pt;}
.yf5{bottom:335.788533pt;}
.y9a{bottom:338.681067pt;}
.y4b{bottom:351.896800pt;}
.y1e{bottom:353.308533pt;}
.yf4{bottom:353.388533pt;}
.y99{bottom:356.281067pt;}
.yc0{bottom:360.350400pt;}
.y11e{bottom:361.344133pt;}
.y6d{bottom:362.270667pt;}
.y4a{bottom:369.496800pt;}
.ybf{bottom:377.950400pt;}
.yf3{bottom:378.547600pt;}
.y11d{bottom:378.944133pt;}
.y98{bottom:379.550400pt;}
.y6c{bottom:379.870667pt;}
.y49{bottom:387.096800pt;}
.ybe{bottom:401.219600pt;}
.yf2{bottom:403.706667pt;}
.y11c{bottom:404.103067pt;}
.y1d{bottom:404.344800pt;}
.y48{bottom:404.696800pt;}
.y97{bottom:412.268533pt;}
.y6b{bottom:412.588800pt;}
.y1c{bottom:420.344800pt;}
.y11b{bottom:421.703067pt;}
.y47{bottom:422.296800pt;}
.y96{bottom:429.868533pt;}
.y6a{bottom:430.188667pt;}
.ybd{bottom:435.537733pt;}
.yf1{bottom:439.624800pt;}
.y46{bottom:439.896800pt;}
.y11a{bottom:446.862133pt;}
.y69{bottom:447.788800pt;}
.y1b{bottom:451.462933pt;}
.y95{bottom:453.137733pt;}
.yf0{bottom:457.224800pt;}
.y45{bottom:457.496800pt;}
.y119{bottom:464.462133pt;}
.ybc{bottom:470.737733pt;}
.y68{bottom:471.058000pt;}
.yef{bottom:474.824800pt;}
.y44{bottom:475.096800pt;}
.y1a{bottom:484.181067pt;}
.y94{bottom:485.855867pt;}
.ybb{bottom:488.337733pt;}
.y118{bottom:489.621200pt;}
.y43{bottom:492.696800pt;}
.yee{bottom:499.983867pt;}
.y19{bottom:501.781067pt;}
.y93{bottom:503.455867pt;}
.y67{bottom:503.776133pt;}
.yba{bottom:505.937733pt;}
.y117{bottom:507.221200pt;}
.y42{bottom:510.296800pt;}
.y18{bottom:519.381067pt;}
.y92{bottom:521.055867pt;}
.y66{bottom:521.376133pt;}
.yb9{bottom:523.537733pt;}
.y116{bottom:524.821200pt;}
.y41{bottom:527.896800pt;}
.yed{bottom:535.902000pt;}
.y17{bottom:536.981067pt;}
.y91{bottom:538.655867pt;}
.yb8{bottom:541.137733pt;}
.y65{bottom:544.645467pt;}
.y40{bottom:545.496800pt;}
.y115{bottom:549.980267pt;}
.yec{bottom:553.502000pt;}
.y16{bottom:554.581067pt;}
.y90{bottom:556.255867pt;}
.y3f{bottom:563.096800pt;}
.yb7{bottom:564.407067pt;}
.y114{bottom:567.580267pt;}
.y8f{bottom:573.855867pt;}
.y64{bottom:577.363467pt;}
.yeb{bottom:586.220000pt;}
.y8e{bottom:591.455867pt;}
.y15{bottom:592.183200pt;}
.y113{bottom:592.739333pt;}
.y63{bottom:594.963600pt;}
.y3e{bottom:595.814933pt;}
.yb6{bottom:597.125200pt;}
.yea{bottom:603.820133pt;}
.y8d{bottom:609.055867pt;}
.y14{bottom:609.783200pt;}
.y112{bottom:610.339333pt;}
.y62{bottom:612.563467pt;}
.y3d{bottom:613.414933pt;}
.yb5{bottom:614.725200pt;}
.ye9{bottom:621.420133pt;}
.y8c{bottom:626.655867pt;}
.y61{bottom:630.163600pt;}
.y3c{bottom:631.014933pt;}
.yb4{bottom:632.325200pt;}
.y111{bottom:635.498400pt;}
.y13{bottom:637.617333pt;}
.ye8{bottom:639.020000pt;}
.y8b{bottom:644.255867pt;}
.y60{bottom:647.763600pt;}
.y110{bottom:653.098400pt;}
.y3b{bottom:654.284267pt;}
.ye7{bottom:656.620133pt;}
.y12{bottom:660.101333pt;}
.y8a{bottom:661.855867pt;}
.yb3{bottom:665.043333pt;}
.y5f{bottom:665.363467pt;}
.y10f{bottom:670.698400pt;}
.y11{bottom:672.817200pt;}
.ye6{bottom:674.220000pt;}
.y89{bottom:679.455867pt;}
.y5e{bottom:682.963600pt;}
.y3a{bottom:687.002267pt;}
.yb2{bottom:688.312533pt;}
.ye5{bottom:691.820133pt;}
.y10{bottom:695.301333pt;}
.y10e{bottom:695.857467pt;}
.y88{bottom:697.055867pt;}
.y5d{bottom:700.563600pt;}
.y39{bottom:704.602400pt;}
.ye4{bottom:709.420133pt;}
.yf{bottom:712.901333pt;}
.y10d{bottom:713.457467pt;}
.y5c{bottom:718.163600pt;}
.y87{bottom:720.325200pt;}
.yb1{bottom:721.030667pt;}
.y38{bottom:722.202267pt;}
.ye3{bottom:727.020000pt;}
.yd4{bottom:735.443333pt;}
.y5b{bottom:735.763467pt;}
.ye{bottom:736.955867pt;}
.y10c{bottom:738.616533pt;}
.yb0{bottom:738.630667pt;}
.y37{bottom:739.802267pt;}
.ye2{bottom:744.620133pt;}
.y86{bottom:753.043333pt;}
.y10b{bottom:756.216533pt;}
.yaf{bottom:756.230667pt;}
.yd3{bottom:758.712533pt;}
.y5a{bottom:759.032933pt;}
.ye1{bottom:762.220000pt;}
.y85{bottom:770.643200pt;}
.y36{bottom:772.520400pt;}
.y10a{bottom:773.816533pt;}
.yae{bottom:773.830667pt;}
.ye0{bottom:779.820133pt;}
.y84{bottom:788.243200pt;}
.y35{bottom:790.120400pt;}
.yad{bottom:791.430667pt;}
.y59{bottom:791.750933pt;}
.ydf{bottom:797.420133pt;}
.y109{bottom:798.975600pt;}
.yd{bottom:801.510133pt;}
.y34{bottom:807.720400pt;}
.yac{bottom:809.030667pt;}
.y58{bottom:809.350933pt;}
.y108{bottom:816.575467pt;}
.y83{bottom:820.961467pt;}
.y33{bottom:825.320533pt;}
.yc{bottom:825.510133pt;}
.yd2{bottom:826.630667pt;}
.y57{bottom:826.950933pt;}
.yde{bottom:830.138133pt;}
.y107{bottom:841.734533pt;}
.yab{bottom:841.748800pt;}
.y32{bottom:842.920400pt;}
.y82{bottom:844.230667pt;}
.ydd{bottom:847.738133pt;}
.y106{bottom:859.334533pt;}
.yaa{bottom:859.348800pt;}
.y56{bottom:859.669067pt;}
.yd1{bottom:861.830667pt;}
.ydc{bottom:865.338267pt;}
.y31{bottom:866.189733pt;}
.y105{bottom:876.934533pt;}
.y81{bottom:876.948800pt;}
.y55{bottom:877.269067pt;}
.ydb{bottom:882.938267pt;}
.y30{bottom:891.348800pt;}
.y80{bottom:894.548800pt;}
.y54{bottom:894.869067pt;}
.yda{bottom:900.538267pt;}
.y104{bottom:902.093600pt;}
.yb{bottom:907.857467pt;}
.y7f{bottom:912.148800pt;}
.y53{bottom:912.469067pt;}
.yd9{bottom:918.138267pt;}
.y103{bottom:919.693600pt;}
.y2f{bottom:927.266933pt;}
.y7e{bottom:929.748800pt;}
.y52{bottom:930.069067pt;}
.ya{bottom:933.016533pt;}
.yd8{bottom:935.738267pt;}
.y102{bottom:937.293600pt;}
.y2e{bottom:944.866800pt;}
.ya9{bottom:944.866933pt;}
.y51{bottom:953.338267pt;}
.y9{bottom:960.401333pt;}
.y101{bottom:962.452667pt;}
.y2d{bottom:962.466933pt;}
.y50{bottom:978.497333pt;}
.y100{bottom:980.052667pt;}
.y2c{bottom:980.066933pt;}
.y8{bottom:982.360400pt;}
.y7{bottom:1015.658000pt;}
.y4f{bottom:1015.797067pt;}
.y2b{bottom:1016.692933pt;}
.y6{bottom:1030.196133pt;}
.y3{bottom:1049.381733pt;}
.y5{bottom:1049.396133pt;}
.y2{bottom:1066.981733pt;}
.y4{bottom:1066.996133pt;}
.hf{height:27.812240pt;}
.h8{height:29.390550pt;}
.h9{height:29.391083pt;}
.h5{height:33.328125pt;}
.hd{height:39.731771pt;}
.h6{height:39.760417pt;}
.h4{height:40.031250pt;}
.he{height:43.375000pt;}
.hb{height:44.479167pt;}
.ha{height:46.406250pt;}
.hc{height:46.989583pt;}
.h2{height:48.927083pt;}
.h3{height:53.375000pt;}
.h7{height:54.218750pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:92.753067pt;}
.x6{left:94.488133pt;}
.x21{left:96.000000pt;}
.x22{left:103.816800pt;}
.xe{left:108.438000pt;}
.x15{left:117.165333pt;}
.x1f{left:118.488267pt;}
.xf{left:122.655467pt;}
.xb{left:124.842133pt;}
.x2{left:140.254933pt;}
.x8{left:155.861333pt;}
.x23{left:163.713067pt;}
.x24{left:167.162933pt;}
.x7{left:177.687467pt;}
.x1e{left:183.302933pt;}
.xa{left:184.405733pt;}
.x20{left:186.160267pt;}
.x1c{left:190.113467pt;}
.x11{left:195.682400pt;}
.x25{left:203.444400pt;}
.x10{left:232.554933pt;}
.xd{left:242.711600pt;}
.x13{left:252.306267pt;}
.x16{left:274.073867pt;}
.x1a{left:279.678267pt;}
.x14{left:286.428933pt;}
.x12{left:288.761600pt;}
.x19{left:296.239067pt;}
.xc{left:297.327467pt;}
.x17{left:309.158400pt;}
.x1b{left:312.388133pt;}
.x18{left:314.182133pt;}
.x9{left:324.286933pt;}
.x1d{left:371.380667pt;}
.x1{left:385.850400pt;}
.x3{left:516.110000pt;}
.x5{left:527.777333pt;}
.x4{left:600.371733pt;}
}




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