
    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_08f7de1e5ca3fb1b7922ac9e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1557ef74563627c26f80fd65.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_552eb78f96e1af201b019bfb.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7c5d87716ce17fe687c14660.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_07819ea24f0c8d2cdb20fc5b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f46b01dfad938c21bb8dec67.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9a339c48b975da1b6668cb87.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1313fb32f307ee3af4e8d734.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_6e008a9ecbc4cf809c490672.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m50{transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3f{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);}
.m44{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m28{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);}
.m1f{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3d{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);}
.m21{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.500000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
.fc0{color:transparent;}
.fse{font-size:24.000000px;}
.fsa{font-size:36.000000px;}
.fsf{font-size:42.000000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs3{font-size:84.000000px;}
.fsd{font-size:102.000000px;}
.fs10{font-size:108.000000px;}
.fs1{font-size:126.000000px;}
.fs0{font-size:132.000000px;}
.fsb{font-size:138.000000px;}
.fsc{font-size:144.000000px;}
.fs8{font-size:168.000000px;}
.fs9{font-size:228.000000px;}
.y0{bottom:0.000000px;}
.y35{bottom:67.317585px;}
.y36{bottom:68.817585px;}
.yb9{bottom:127.032585px;}
.yb8{bottom:127.092585px;}
.yba{bottom:128.157585px;}
.ybb{bottom:128.532585px;}
.ybc{bottom:129.942585px;}
.y34{bottom:130.632585px;}
.y33{bottom:131.757585px;}
.y32{bottom:132.132585px;}
.y31{bottom:132.417585px;}
.y30{bottom:132.507585px;}
.y1c{bottom:133.542585px;}
.y15c{bottom:137.532585px;}
.y2f{bottom:148.692585px;}
.y2e{bottom:151.167585px;}
.y1b{bottom:152.967585px;}
.y107{bottom:158.007585px;}
.y49{bottom:160.167585px;}
.y108{bottom:160.917585px;}
.y109{bottom:161.292585px;}
.yb1{bottom:163.032585px;}
.y10a{bottom:163.467585px;}
.y10b{bottom:164.532585px;}
.y2d{bottom:169.167585px;}
.yb4{bottom:170.292585px;}
.yb5{bottom:170.592585px;}
.yb6{bottom:171.342585px;}
.y1a{bottom:171.717585px;}
.yb7{bottom:172.842585px;}
.y15b{bottom:174.567585px;}
.y15a{bottom:174.942585px;}
.y104{bottom:178.167585px;}
.y48{bottom:178.917585px;}
.y105{bottom:179.967585px;}
.yb0{bottom:181.782585px;}
.y106{bottom:183.942585px;}
.y132{bottom:185.007585px;}
.y133{bottom:185.067585px;}
.y134{bottom:185.382585px;}
.y2c{bottom:188.667585px;}
.yd0{bottom:189.417585px;}
.y19{bottom:189.717585px;}
.yb3{bottom:190.407585px;}
.y158{bottom:194.067585px;}
.y159{bottom:194.442585px;}
.y101{bottom:197.217585px;}
.y46{bottom:197.592585px;}
.y102{bottom:199.092585px;}
.yaf{bottom:200.217585px;}
.y103{bottom:202.692585px;}
.y131{bottom:203.757585px;}
.y148{bottom:204.132585px;}
.y2b{bottom:207.717585px;}
.y18{bottom:208.842585px;}
.yb2{bottom:209.817585px;}
.y17{bottom:210.192585px;}
.y157{bottom:212.757585px;}
.y156{bottom:213.132585px;}
.yfc{bottom:213.507585px;}
.yfd{bottom:215.292585px;}
.y45{bottom:216.042585px;}
.y47{bottom:216.342585px;}
.yfe{bottom:216.717585px;}
.yff{bottom:217.092585px;}
.yac{bottom:219.567585px;}
.y100{bottom:221.382585px;}
.y130{bottom:222.417585px;}
.y147{bottom:222.882585px;}
.yad{bottom:223.167585px;}
.y2a{bottom:226.092585px;}
.yae{bottom:226.767585px;}
.y16{bottom:227.142585px;}
.y155{bottom:231.882585px;}
.y44{bottom:235.092585px;}
.yfa{bottom:236.892585px;}
.ya6{bottom:238.317585px;}
.yfb{bottom:239.817585px;}
.y12f{bottom:241.167585px;}
.ya8{bottom:243.042585px;}
.ya7{bottom:243.717585px;}
.y29{bottom:244.767585px;}
.ycf{bottom:245.517585px;}
.ya9{bottom:245.817585px;}
.y15{bottom:246.192585px;}
.yaa{bottom:246.267585px;}
.yab{bottom:247.692585px;}
.y154{bottom:249.882585px;}
.yf7{bottom:251.667585px;}
.y43{bottom:253.467585px;}
.yf8{bottom:254.892585px;}
.ya4{bottom:256.017585px;}
.yf9{bottom:258.417585px;}
.ya5{bottom:259.257585px;}
.y12e{bottom:259.917585px;}
.y26{bottom:262.767585px;}
.y28{bottom:263.142585px;}
.y27{bottom:263.517585px;}
.yce{bottom:264.192585px;}
.y14{bottom:264.942585px;}
.y151{bottom:268.167585px;}
.y153{bottom:268.257585px;}
.y152{bottom:268.632585px;}
.yf4{bottom:270.717585px;}
.y42{bottom:271.842585px;}
.yf5{bottom:273.267585px;}
.yf6{bottom:277.257585px;}
.y12b{bottom:278.292585px;}
.y12c{bottom:278.592585px;}
.y146{bottom:278.667585px;}
.y12d{bottom:278.967585px;}
.ya3{bottom:280.092585px;}
.y25{bottom:282.567585px;}
.ycd{bottom:282.942585px;}
.y13{bottom:283.317585px;}
.y14f{bottom:287.217585px;}
.y150{bottom:287.667585px;}
.yf1{bottom:288.717585px;}
.y41{bottom:290.517585px;}
.yf2{bottom:291.267585px;}
.ya0{bottom:293.817585px;}
.yf3{bottom:295.917585px;}
.ya1{bottom:296.667585px;}
.y12a{bottom:297.342585px;}
.y24{bottom:301.317585px;}
.y12{bottom:301.692585px;}
.ycc{bottom:302.007585px;}
.ya2{bottom:302.442585px;}
.y14e{bottom:306.342585px;}
.yec{bottom:306.417585px;}
.yed{bottom:308.517585px;}
.y40{bottom:308.817585px;}
.yee{bottom:308.892585px;}
.y9b{bottom:311.442585px;}
.yef{bottom:312.132585px;}
.y9c{bottom:313.917585px;}
.yf0{bottom:314.292585px;}
.y9d{bottom:315.717585px;}
.y129{bottom:316.092585px;}
.y9e{bottom:316.467585px;}
.y23{bottom:319.632585px;}
.y11{bottom:320.067585px;}
.ycb{bottom:320.382585px;}
.y9f{bottom:321.417585px;}
.y9{bottom:323.217585px;}
.y14d{bottom:325.467585px;}
.ye9{bottom:326.217585px;}
.y3f{bottom:327.642585px;}
.yea{bottom:328.692585px;}
.y98{bottom:331.542585px;}
.yeb{bottom:332.667585px;}
.y99{bottom:333.042585px;}
.y128{bottom:334.767585px;}
.y22{bottom:338.382585px;}
.y10{bottom:339.132585px;}
.y9a{bottom:340.167585px;}
.y149{bottom:341.967585px;}
.y14a{bottom:342.417585px;}
.y14c{bottom:343.392585px;}
.y14b{bottom:343.467585px;}
.ye4{bottom:344.142585px;}
.y3e{bottom:345.942585px;}
.ye5{bottom:346.317585px;}
.y93{bottom:350.292585px;}
.ye6{bottom:350.967585px;}
.ye7{bottom:351.342585px;}
.ye8{bottom:352.092585px;}
.y94{bottom:352.842585px;}
.y127{bottom:353.142585px;}
.y21{bottom:356.817585px;}
.yca{bottom:357.132585px;}
.yf{bottom:357.507585px;}
.y95{bottom:358.167585px;}
.y96{bottom:359.967585px;}
.y97{bottom:360.042585px;}
.ye2{bottom:362.817585px;}
.y3d{bottom:364.317585px;}
.ye3{bottom:365.442585px;}
.y3a{bottom:367.167585px;}
.y90{bottom:369.717585px;}
.y126{bottom:371.892585px;}
.y91{bottom:372.642585px;}
.y20{bottom:375.792585px;}
.ye{bottom:376.167585px;}
.yd{bottom:376.542585px;}
.y92{bottom:376.917585px;}
.ydf{bottom:381.567585px;}
.y3c{bottom:382.632585px;}
.ye0{bottom:384.132585px;}
.ye1{bottom:388.392585px;}
.y8e{bottom:389.517585px;}
.y145{bottom:389.892585px;}
.y125{bottom:390.567585px;}
.y1f{bottom:394.542585px;}
.yc{bottom:394.917585px;}
.y8f{bottom:395.292585px;}
.ydd{bottom:400.317585px;}
.y3b{bottom:401.757585px;}
.yde{bottom:406.467585px;}
.y8b{bottom:408.567585px;}
.y144{bottom:408.942585px;}
.y8c{bottom:409.317585px;}
.y1e{bottom:413.217585px;}
.yb{bottom:413.292585px;}
.y8d{bottom:413.967585px;}
.yda{bottom:418.692585px;}
.ydb{bottom:420.132585px;}
.ydc{bottom:425.142585px;}
.y88{bottom:425.892585px;}
.y123{bottom:427.317585px;}
.y89{bottom:427.632585px;}
.y124{bottom:427.692585px;}
.y122{bottom:428.007585px;}
.ya{bottom:431.592585px;}
.y1d{bottom:431.667585px;}
.y8a{bottom:433.392585px;}
.y85{bottom:444.942585px;}
.y121{bottom:446.007585px;}
.y86{bottom:447.792585px;}
.yc9{bottom:449.292585px;}
.y87{bottom:451.092585px;}
.y82{bottom:462.567585px;}
.y143{bottom:464.382585px;}
.y120{bottom:464.757585px;}
.y83{bottom:465.792585px;}
.yd9{bottom:469.017585px;}
.y84{bottom:469.092585px;}
.y8{bottom:473.757585px;}
.y7f{bottom:481.632585px;}
.y11f{bottom:483.132585px;}
.y80{bottom:483.792585px;}
.yc8{bottom:487.467585px;}
.y81{bottom:488.217585px;}
.y39{bottom:491.067585px;}
.yd8{bottom:495.342585px;}
.y7{bottom:499.317585px;}
.y7c{bottom:501.417585px;}
.y11e{bottom:501.507585px;}
.y7d{bottom:502.917585px;}
.yc7{bottom:505.467585px;}
.y7e{bottom:507.207585px;}
.yd4{bottom:515.892585px;}
.y38{bottom:516.957585px;}
.y78{bottom:519.792585px;}
.y11d{bottom:520.167585px;}
.yd5{bottom:520.257585px;}
.y79{bottom:521.592585px;}
.yd6{bottom:522.717585px;}
.yd7{bottom:523.767585px;}
.y7a{bottom:524.217585px;}
.y6{bottom:524.517585px;}
.yc6{bottom:525.267585px;}
.y7b{bottom:526.707585px;}
.y74{bottom:538.257585px;}
.y142{bottom:538.542585px;}
.y11c{bottom:538.917585px;}
.y75{bottom:539.967585px;}
.y37{bottom:541.467585px;}
.y76{bottom:542.517585px;}
.yc5{bottom:543.207585px;}
.y77{bottom:544.632585px;}
.yd3{bottom:545.382585px;}
.y3{bottom:549.717585px;}
.y5{bottom:550.092585px;}
.y4{bottom:550.467585px;}
.y71{bottom:557.292585px;}
.y141{bottom:557.592585px;}
.y72{bottom:558.342585px;}
.yc4{bottom:562.332585px;}
.y73{bottom:563.757585px;}
.y6e{bottom:575.667585px;}
.y11b{bottom:575.967585px;}
.y6f{bottom:577.407585px;}
.y70{bottom:581.757585px;}
.yc3{bottom:582.132585px;}
.yd1{bottom:590.067585px;}
.yd2{bottom:593.967585px;}
.y11a{bottom:594.342585px;}
.y140{bottom:594.717585px;}
.y6c{bottom:595.467585px;}
.y2{bottom:597.567585px;}
.y1{bottom:597.657585px;}
.yc2{bottom:599.067585px;}
.y6d{bottom:600.507585px;}
.y13f{bottom:612.717585px;}
.y69{bottom:613.092585px;}
.y13e{bottom:613.782585px;}
.y119{bottom:614.157585px;}
.y6a{bottom:614.532585px;}
.yc1{bottom:616.692585px;}
.y6b{bottom:619.257585px;}
.y13d{bottom:631.407585px;}
.y118{bottom:631.782585px;}
.y67{bottom:632.817585px;}
.y68{bottom:637.167585px;}
.y13c{bottom:650.532585px;}
.y117{bottom:650.817585px;}
.y64{bottom:651.567585px;}
.y65{bottom:652.317585px;}
.y66{bottom:655.257585px;}
.y13b{bottom:668.907585px;}
.y116{bottom:669.282585px;}
.y61{bottom:669.942585px;}
.y62{bottom:670.692585px;}
.y63{bottom:674.667585px;}
.y13a{bottom:687.657585px;}
.y115{bottom:687.942585px;}
.y5e{bottom:688.317585px;}
.y5f{bottom:689.817585px;}
.y60{bottom:693.342585px;}
.y139{bottom:706.632585px;}
.y114{bottom:706.692585px;}
.y5b{bottom:708.507585px;}
.y5c{bottom:709.632585px;}
.y5d{bottom:712.032585px;}
.y138{bottom:725.382585px;}
.y113{bottom:725.442585px;}
.y58{bottom:727.167585px;}
.y59{bottom:727.632585px;}
.y5a{bottom:730.842585px;}
.y110{bottom:743.817585px;}
.y111{bottom:744.132585px;}
.y112{bottom:744.417585px;}
.y56{bottom:745.917585px;}
.yc0{bottom:748.092585px;}
.y57{bottom:749.907585px;}
.y10f{bottom:762.807585px;}
.y53{bottom:764.682585px;}
.y54{bottom:765.717585px;}
.ybf{bottom:766.782585px;}
.y55{bottom:768.567585px;}
.y137{bottom:781.257585px;}
.y10e{bottom:781.557585px;}
.y50{bottom:783.432585px;}
.y51{bottom:784.092585px;}
.ybe{bottom:785.532585px;}
.y52{bottom:787.692585px;}
.y10d{bottom:799.932585px;}
.y136{bottom:800.307585px;}
.y4d{bottom:802.407585px;}
.y4e{bottom:803.907585px;}
.y4f{bottom:806.382585px;}
.y10c{bottom:818.682585px;}
.y135{bottom:818.967585px;}
.y4a{bottom:821.217585px;}
.y4b{bottom:821.817585px;}
.ybd{bottom:822.282585px;}
.y4c{bottom:824.757585px;}
.h19{height:23.554688px;}
.h12{height:35.332031px;}
.h1a{height:41.220703px;}
.hb{height:52.971680px;}
.h18{height:52.998047px;}
.h17{height:54.421875px;}
.h8{height:58.857422px;}
.h7{height:58.886719px;}
.hd{height:60.468750px;}
.ha{height:61.670545px;}
.h15{height:62.578125px;}
.he{height:64.743164px;}
.h6{height:64.775391px;}
.h11{height:66.515625px;}
.h4{height:70.628906px;}
.h9{height:70.664062px;}
.hc{height:76.552734px;}
.h5{height:82.400391px;}
.h1b{height:100.057617px;}
.h16{height:100.107422px;}
.h1c{height:105.943359px;}
.h1d{height:107.443359px;}
.h3{height:126.984375px;}
.h2{height:133.031250px;}
.h13{height:135.439453px;}
.h14{height:141.328125px;}
.hf{height:175.218750px;}
.h10{height:223.769531px;}
.h1{height:923.250000px;}
.h0{height:923.279085px;}
.w1{width:632.250000px;}
.w0{width:632.330100px;}
.w4{width:649.216800px;}
.w5{width:649.500000px;}
.w3{width:653.250000px;}
.w2{width:653.467800px;}
.x57{left:-64.008900px;}
.x58{left:-61.833900px;}
.x1e{left:-58.983900px;}
.x5a{left:-57.573900px;}
.x59{left:-55.008900px;}
.x1f{left:-32.358900px;}
.x0{left:0.000000px;}
.x8{left:8.741100px;}
.x6{left:28.541100px;}
.x3{left:29.591100px;}
.x5c{left:44.366100px;}
.xa{left:45.416100px;}
.xd{left:46.541100px;}
.xe{left:47.591100px;}
.x64{left:61.991100px;}
.x6b{left:63.416100px;}
.x70{left:64.541100px;}
.x9{left:69.566100px;}
.x7b{left:78.357300px;}
.x7e{left:80.907300px;}
.x7a{left:82.707300px;}
.x76{left:83.757300px;}
.x61{left:86.141100px;}
.x27{left:90.582300px;}
.x2f{left:91.707300px;}
.x40{left:92.757300px;}
.x45{left:93.882300px;}
.x4d{left:94.932300px;}
.x51{left:96.732300px;}
.xb{left:99.041100px;}
.x71{left:100.166100px;}
.x79{left:102.132300px;}
.x78{left:103.182300px;}
.x1{left:107.741100px;}
.x2c{left:109.332300px;}
.x3d{left:111.132300px;}
.x4a{left:112.182300px;}
.x50{left:113.682300px;}
.x5b{left:118.166100px;}
.x7c{left:119.382300px;}
.x72{left:125.741100px;}
.xc{left:126.791100px;}
.x93{left:128.082300px;}
.x43{left:133.482300px;}
.x7{left:143.366100px;}
.x7d{left:147.507300px;}
.x60{left:150.566100px;}
.x6d{left:166.391100px;}
.x4b{left:172.332300px;}
.x81{left:181.332300px;}
.x7f{left:194.682300px;}
.x77{left:198.957300px;}
.x94{left:221.307300px;}
.x67{left:223.616100px;}
.x6e{left:225.416100px;}
.x82{left:232.107300px;}
.x80{left:235.707300px;}
.x73{left:239.141100px;}
.x62{left:245.216100px;}
.x6f{left:247.766100px;}
.x49{left:250.107300px;}
.x36{left:252.957300px;}
.x66{left:257.441100px;}
.x33{left:259.782300px;}
.x41{left:261.282300px;}
.x4c{left:262.707300px;}
.x65{left:264.341100px;}
.x2a{left:267.357300px;}
.x6c{left:273.641100px;}
.x39{left:275.307300px;}
.x2d{left:277.107300px;}
.x30{left:278.157300px;}
.x5d{left:280.841100px;}
.x44{left:283.557300px;}
.x16{left:286.991100px;}
.x12{left:288.416100px;}
.x2{left:289.541100px;}
.x11{left:290.591100px;}
.x17{left:291.641100px;}
.xf{left:292.766100px;}
.x32{left:295.482300px;}
.x3e{left:297.582300px;}
.x31{left:301.182300px;}
.x68{left:302.441100px;}
.x74{left:303.566100px;}
.x38{left:306.282300px;}
.x13{left:307.541100px;}
.x10{left:311.141100px;}
.x1a{left:315.791100px;}
.x63{left:318.641100px;}
.x28{left:320.307300px;}
.x3b{left:322.482300px;}
.x14{left:324.401100px;}
.x18{left:329.441100px;}
.x56{left:335.082300px;}
.x15{left:339.191100px;}
.x5e{left:340.241100px;}
.x84{left:341.532300px;}
.x83{left:342.957300px;}
.x1b{left:344.966100px;}
.x1c{left:350.366100px;}
.x35{left:352.332300px;}
.x46{left:353.757300px;}
.x29{left:355.932300px;}
.x2e{left:356.982300px;}
.x89{left:358.767300px;}
.x3f{left:360.267300px;}
.x34{left:361.332300px;}
.x95{left:373.182300px;}
.x2b{left:374.982300px;}
.x42{left:378.267300px;}
.x4{left:383.816100px;}
.x3a{left:388.707300px;}
.x85{left:392.982300px;}
.x75{left:400.391100px;}
.x37{left:401.982300px;}
.x96{left:409.932300px;}
.x5{left:418.016100px;}
.x54{left:424.332300px;}
.x1d{left:426.641100px;}
.x69{left:431.741100px;}
.x6a{left:433.166100px;}
.x3c{left:446.982300px;}
.x55{left:448.482300px;}
.x52{left:456.732300px;}
.x4e{left:474.357300px;}
.x19{left:482.141100px;}
.x53{left:491.982300px;}
.x4f{left:494.907300px;}
.x87{left:496.707300px;}
.x88{left:505.707300px;}
.x5f{left:523.841100px;}
.x47{left:526.557300px;}
.x86{left:528.357300px;}
.x48{left:577.332300px;}
.x21{left:615.132300px;}
.x8a{left:639.282300px;}
.x92{left:642.507300px;}
.x20{left:648.957300px;}
.x24{left:650.082300px;}
.x8d{left:656.907300px;}
.x26{left:657.957300px;}
.x90{left:659.757300px;}
.x8b{left:661.932300px;}
.x22{left:666.582300px;}
.x23{left:668.082300px;}
.x25{left:669.132300px;}
.x8c{left:673.782300px;}
.x91{left:677.382300px;}
.x8e{left:680.307300px;}
.x8f{left:683.907300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.333333pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
.fse{font-size:21.333333pt;}
.fsa{font-size:32.000000pt;}
.fsf{font-size:37.333333pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs3{font-size:74.666667pt;}
.fsd{font-size:90.666667pt;}
.fs10{font-size:96.000000pt;}
.fs1{font-size:112.000000pt;}
.fs0{font-size:117.333333pt;}
.fsb{font-size:122.666667pt;}
.fsc{font-size:128.000000pt;}
.fs8{font-size:149.333333pt;}
.fs9{font-size:202.666667pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:59.837853pt;}
.y36{bottom:61.171187pt;}
.yb9{bottom:112.917853pt;}
.yb8{bottom:112.971187pt;}
.yba{bottom:113.917853pt;}
.ybb{bottom:114.251187pt;}
.ybc{bottom:115.504520pt;}
.y34{bottom:116.117853pt;}
.y33{bottom:117.117853pt;}
.y32{bottom:117.451187pt;}
.y31{bottom:117.704520pt;}
.y30{bottom:117.784520pt;}
.y1c{bottom:118.704520pt;}
.y15c{bottom:122.251187pt;}
.y2f{bottom:132.171187pt;}
.y2e{bottom:134.371187pt;}
.y1b{bottom:135.971187pt;}
.y107{bottom:140.451187pt;}
.y49{bottom:142.371187pt;}
.y108{bottom:143.037853pt;}
.y109{bottom:143.371187pt;}
.yb1{bottom:144.917853pt;}
.y10a{bottom:145.304520pt;}
.y10b{bottom:146.251187pt;}
.y2d{bottom:150.371187pt;}
.yb4{bottom:151.371187pt;}
.yb5{bottom:151.637853pt;}
.yb6{bottom:152.304520pt;}
.y1a{bottom:152.637853pt;}
.yb7{bottom:153.637853pt;}
.y15b{bottom:155.171187pt;}
.y15a{bottom:155.504520pt;}
.y104{bottom:158.371187pt;}
.y48{bottom:159.037853pt;}
.y105{bottom:159.971187pt;}
.yb0{bottom:161.584520pt;}
.y106{bottom:163.504520pt;}
.y132{bottom:164.451187pt;}
.y133{bottom:164.504520pt;}
.y134{bottom:164.784520pt;}
.y2c{bottom:167.704520pt;}
.yd0{bottom:168.371187pt;}
.y19{bottom:168.637853pt;}
.yb3{bottom:169.251187pt;}
.y158{bottom:172.504520pt;}
.y159{bottom:172.837853pt;}
.y101{bottom:175.304520pt;}
.y46{bottom:175.637853pt;}
.y102{bottom:176.971187pt;}
.yaf{bottom:177.971187pt;}
.y103{bottom:180.171187pt;}
.y131{bottom:181.117853pt;}
.y148{bottom:181.451187pt;}
.y2b{bottom:184.637853pt;}
.y18{bottom:185.637853pt;}
.yb2{bottom:186.504520pt;}
.y17{bottom:186.837853pt;}
.y157{bottom:189.117853pt;}
.y156{bottom:189.451187pt;}
.yfc{bottom:189.784520pt;}
.yfd{bottom:191.371187pt;}
.y45{bottom:192.037853pt;}
.y47{bottom:192.304520pt;}
.yfe{bottom:192.637853pt;}
.yff{bottom:192.971187pt;}
.yac{bottom:195.171187pt;}
.y100{bottom:196.784520pt;}
.y130{bottom:197.704520pt;}
.y147{bottom:198.117853pt;}
.yad{bottom:198.371187pt;}
.y2a{bottom:200.971187pt;}
.yae{bottom:201.571187pt;}
.y16{bottom:201.904520pt;}
.y155{bottom:206.117853pt;}
.y44{bottom:208.971187pt;}
.yfa{bottom:210.571187pt;}
.ya6{bottom:211.837853pt;}
.yfb{bottom:213.171187pt;}
.y12f{bottom:214.371187pt;}
.ya8{bottom:216.037853pt;}
.ya7{bottom:216.637853pt;}
.y29{bottom:217.571187pt;}
.ycf{bottom:218.237853pt;}
.ya9{bottom:218.504520pt;}
.y15{bottom:218.837853pt;}
.yaa{bottom:218.904520pt;}
.yab{bottom:220.171187pt;}
.y154{bottom:222.117853pt;}
.yf7{bottom:223.704520pt;}
.y43{bottom:225.304520pt;}
.yf8{bottom:226.571187pt;}
.ya4{bottom:227.571187pt;}
.yf9{bottom:229.704520pt;}
.ya5{bottom:230.451187pt;}
.y12e{bottom:231.037853pt;}
.y26{bottom:233.571187pt;}
.y28{bottom:233.904520pt;}
.y27{bottom:234.237853pt;}
.yce{bottom:234.837853pt;}
.y14{bottom:235.504520pt;}
.y151{bottom:238.371187pt;}
.y153{bottom:238.451187pt;}
.y152{bottom:238.784520pt;}
.yf4{bottom:240.637853pt;}
.y42{bottom:241.637853pt;}
.yf5{bottom:242.904520pt;}
.yf6{bottom:246.451187pt;}
.y12b{bottom:247.371187pt;}
.y12c{bottom:247.637853pt;}
.y146{bottom:247.704520pt;}
.y12d{bottom:247.971187pt;}
.ya3{bottom:248.971187pt;}
.y25{bottom:251.171187pt;}
.ycd{bottom:251.504520pt;}
.y13{bottom:251.837853pt;}
.y14f{bottom:255.304520pt;}
.y150{bottom:255.704520pt;}
.yf1{bottom:256.637853pt;}
.y41{bottom:258.237853pt;}
.yf2{bottom:258.904520pt;}
.ya0{bottom:261.171187pt;}
.yf3{bottom:263.037853pt;}
.ya1{bottom:263.704520pt;}
.y12a{bottom:264.304520pt;}
.y24{bottom:267.837853pt;}
.y12{bottom:268.171187pt;}
.ycc{bottom:268.451187pt;}
.ya2{bottom:268.837853pt;}
.y14e{bottom:272.304520pt;}
.yec{bottom:272.371187pt;}
.yed{bottom:274.237853pt;}
.y40{bottom:274.504520pt;}
.yee{bottom:274.571187pt;}
.y9b{bottom:276.837853pt;}
.yef{bottom:277.451187pt;}
.y9c{bottom:279.037853pt;}
.yf0{bottom:279.371187pt;}
.y9d{bottom:280.637853pt;}
.y129{bottom:280.971187pt;}
.y9e{bottom:281.304520pt;}
.y23{bottom:284.117853pt;}
.y11{bottom:284.504520pt;}
.ycb{bottom:284.784520pt;}
.y9f{bottom:285.704520pt;}
.y9{bottom:287.304520pt;}
.y14d{bottom:289.304520pt;}
.ye9{bottom:289.971187pt;}
.y3f{bottom:291.237853pt;}
.yea{bottom:292.171187pt;}
.y98{bottom:294.704520pt;}
.yeb{bottom:295.704520pt;}
.y99{bottom:296.037853pt;}
.y128{bottom:297.571187pt;}
.y22{bottom:300.784520pt;}
.y10{bottom:301.451187pt;}
.y9a{bottom:302.371187pt;}
.y149{bottom:303.971187pt;}
.y14a{bottom:304.371187pt;}
.y14c{bottom:305.237853pt;}
.y14b{bottom:305.304520pt;}
.ye4{bottom:305.904520pt;}
.y3e{bottom:307.504520pt;}
.ye5{bottom:307.837853pt;}
.y93{bottom:311.371187pt;}
.ye6{bottom:311.971187pt;}
.ye7{bottom:312.304520pt;}
.ye8{bottom:312.971187pt;}
.y94{bottom:313.637853pt;}
.y127{bottom:313.904520pt;}
.y21{bottom:317.171187pt;}
.yca{bottom:317.451187pt;}
.yf{bottom:317.784520pt;}
.y95{bottom:318.371187pt;}
.y96{bottom:319.971187pt;}
.y97{bottom:320.037853pt;}
.ye2{bottom:322.504520pt;}
.y3d{bottom:323.837853pt;}
.ye3{bottom:324.837853pt;}
.y3a{bottom:326.371187pt;}
.y90{bottom:328.637853pt;}
.y126{bottom:330.571187pt;}
.y91{bottom:331.237853pt;}
.y20{bottom:334.037853pt;}
.ye{bottom:334.371187pt;}
.yd{bottom:334.704520pt;}
.y92{bottom:335.037853pt;}
.ydf{bottom:339.171187pt;}
.y3c{bottom:340.117853pt;}
.ye0{bottom:341.451187pt;}
.ye1{bottom:345.237853pt;}
.y8e{bottom:346.237853pt;}
.y145{bottom:346.571187pt;}
.y125{bottom:347.171187pt;}
.y1f{bottom:350.704520pt;}
.yc{bottom:351.037853pt;}
.y8f{bottom:351.371187pt;}
.ydd{bottom:355.837853pt;}
.y3b{bottom:357.117853pt;}
.yde{bottom:361.304520pt;}
.y8b{bottom:363.171187pt;}
.y144{bottom:363.504520pt;}
.y8c{bottom:363.837853pt;}
.y1e{bottom:367.304520pt;}
.yb{bottom:367.371187pt;}
.y8d{bottom:367.971187pt;}
.yda{bottom:372.171187pt;}
.ydb{bottom:373.451187pt;}
.ydc{bottom:377.904520pt;}
.y88{bottom:378.571187pt;}
.y123{bottom:379.837853pt;}
.y89{bottom:380.117853pt;}
.y124{bottom:380.171187pt;}
.y122{bottom:380.451187pt;}
.ya{bottom:383.637853pt;}
.y1d{bottom:383.704520pt;}
.y8a{bottom:385.237853pt;}
.y85{bottom:395.504520pt;}
.y121{bottom:396.451187pt;}
.y86{bottom:398.037853pt;}
.yc9{bottom:399.371187pt;}
.y87{bottom:400.971187pt;}
.y82{bottom:411.171187pt;}
.y143{bottom:412.784520pt;}
.y120{bottom:413.117853pt;}
.y83{bottom:414.037853pt;}
.yd9{bottom:416.904520pt;}
.y84{bottom:416.971187pt;}
.y8{bottom:421.117853pt;}
.y7f{bottom:428.117853pt;}
.y11f{bottom:429.451187pt;}
.y80{bottom:430.037853pt;}
.yc8{bottom:433.304520pt;}
.y81{bottom:433.971187pt;}
.y39{bottom:436.504520pt;}
.yd8{bottom:440.304520pt;}
.y7{bottom:443.837853pt;}
.y7c{bottom:445.704520pt;}
.y11e{bottom:445.784520pt;}
.y7d{bottom:447.037853pt;}
.yc7{bottom:449.304520pt;}
.y7e{bottom:450.851187pt;}
.yd4{bottom:458.571187pt;}
.y38{bottom:459.517853pt;}
.y78{bottom:462.037853pt;}
.y11d{bottom:462.371187pt;}
.yd5{bottom:462.451187pt;}
.y79{bottom:463.637853pt;}
.yd6{bottom:464.637853pt;}
.yd7{bottom:465.571187pt;}
.y7a{bottom:465.971187pt;}
.y6{bottom:466.237853pt;}
.yc6{bottom:466.904520pt;}
.y7b{bottom:468.184520pt;}
.y74{bottom:478.451187pt;}
.y142{bottom:478.704520pt;}
.y11c{bottom:479.037853pt;}
.y75{bottom:479.971187pt;}
.y37{bottom:481.304520pt;}
.y76{bottom:482.237853pt;}
.yc5{bottom:482.851187pt;}
.y77{bottom:484.117853pt;}
.yd3{bottom:484.784520pt;}
.y3{bottom:488.637853pt;}
.y5{bottom:488.971187pt;}
.y4{bottom:489.304520pt;}
.y71{bottom:495.371187pt;}
.y141{bottom:495.637853pt;}
.y72{bottom:496.304520pt;}
.yc4{bottom:499.851187pt;}
.y73{bottom:501.117853pt;}
.y6e{bottom:511.704520pt;}
.y11b{bottom:511.971187pt;}
.y6f{bottom:513.251187pt;}
.y70{bottom:517.117853pt;}
.yc3{bottom:517.451187pt;}
.yd1{bottom:524.504520pt;}
.yd2{bottom:527.971187pt;}
.y11a{bottom:528.304520pt;}
.y140{bottom:528.637853pt;}
.y6c{bottom:529.304520pt;}
.y2{bottom:531.171187pt;}
.y1{bottom:531.251187pt;}
.yc2{bottom:532.504520pt;}
.y6d{bottom:533.784520pt;}
.y13f{bottom:544.637853pt;}
.y69{bottom:544.971187pt;}
.y13e{bottom:545.584520pt;}
.y119{bottom:545.917853pt;}
.y6a{bottom:546.251187pt;}
.yc1{bottom:548.171187pt;}
.y6b{bottom:550.451187pt;}
.y13d{bottom:561.251187pt;}
.y118{bottom:561.584520pt;}
.y67{bottom:562.504520pt;}
.y68{bottom:566.371187pt;}
.y13c{bottom:578.251187pt;}
.y117{bottom:578.504520pt;}
.y64{bottom:579.171187pt;}
.y65{bottom:579.837853pt;}
.y66{bottom:582.451187pt;}
.y13b{bottom:594.584520pt;}
.y116{bottom:594.917853pt;}
.y61{bottom:595.504520pt;}
.y62{bottom:596.171187pt;}
.y63{bottom:599.704520pt;}
.y13a{bottom:611.251187pt;}
.y115{bottom:611.504520pt;}
.y5e{bottom:611.837853pt;}
.y5f{bottom:613.171187pt;}
.y60{bottom:616.304520pt;}
.y139{bottom:628.117853pt;}
.y114{bottom:628.171187pt;}
.y5b{bottom:629.784520pt;}
.y5c{bottom:630.784520pt;}
.y5d{bottom:632.917853pt;}
.y138{bottom:644.784520pt;}
.y113{bottom:644.837853pt;}
.y58{bottom:646.371187pt;}
.y59{bottom:646.784520pt;}
.y5a{bottom:649.637853pt;}
.y110{bottom:661.171187pt;}
.y111{bottom:661.451187pt;}
.y112{bottom:661.704520pt;}
.y56{bottom:663.037853pt;}
.yc0{bottom:664.971187pt;}
.y57{bottom:666.584520pt;}
.y10f{bottom:678.051187pt;}
.y53{bottom:679.717853pt;}
.y54{bottom:680.637853pt;}
.ybf{bottom:681.584520pt;}
.y55{bottom:683.171187pt;}
.y137{bottom:694.451187pt;}
.y10e{bottom:694.717853pt;}
.y50{bottom:696.384520pt;}
.y51{bottom:696.971187pt;}
.ybe{bottom:698.251187pt;}
.y52{bottom:700.171187pt;}
.y10d{bottom:711.051187pt;}
.y136{bottom:711.384520pt;}
.y4d{bottom:713.251187pt;}
.y4e{bottom:714.584520pt;}
.y4f{bottom:716.784520pt;}
.y10c{bottom:727.717853pt;}
.y135{bottom:727.971187pt;}
.y4a{bottom:729.971187pt;}
.y4b{bottom:730.504520pt;}
.ybd{bottom:730.917853pt;}
.y4c{bottom:733.117853pt;}
.h19{height:20.937500pt;}
.h12{height:31.406250pt;}
.h1a{height:36.640625pt;}
.hb{height:47.085938pt;}
.h18{height:47.109375pt;}
.h17{height:48.375000pt;}
.h8{height:52.317708pt;}
.h7{height:52.343750pt;}
.hd{height:53.750000pt;}
.ha{height:54.818262pt;}
.h15{height:55.625000pt;}
.he{height:57.549479pt;}
.h6{height:57.578125pt;}
.h11{height:59.125000pt;}
.h4{height:62.781250pt;}
.h9{height:62.812500pt;}
.hc{height:68.046875pt;}
.h5{height:73.244792pt;}
.h1b{height:88.940104pt;}
.h16{height:88.984375pt;}
.h1c{height:94.171875pt;}
.h1d{height:95.505208pt;}
.h3{height:112.875000pt;}
.h2{height:118.250000pt;}
.h13{height:120.390625pt;}
.h14{height:125.625000pt;}
.hf{height:155.750000pt;}
.h10{height:198.906250pt;}
.h1{height:820.666667pt;}
.h0{height:820.692520pt;}
.w1{width:562.000000pt;}
.w0{width:562.071200pt;}
.w4{width:577.081600pt;}
.w5{width:577.333333pt;}
.w3{width:580.666667pt;}
.w2{width:580.860267pt;}
.x57{left:-56.896800pt;}
.x58{left:-54.963467pt;}
.x1e{left:-52.430133pt;}
.x5a{left:-51.176800pt;}
.x59{left:-48.896800pt;}
.x1f{left:-28.763467pt;}
.x0{left:0.000000pt;}
.x8{left:7.769867pt;}
.x6{left:25.369867pt;}
.x3{left:26.303200pt;}
.x5c{left:39.436533pt;}
.xa{left:40.369867pt;}
.xd{left:41.369867pt;}
.xe{left:42.303200pt;}
.x64{left:55.103200pt;}
.x6b{left:56.369867pt;}
.x70{left:57.369867pt;}
.x9{left:61.836533pt;}
.x7b{left:69.650933pt;}
.x7e{left:71.917600pt;}
.x7a{left:73.517600pt;}
.x76{left:74.450933pt;}
.x61{left:76.569867pt;}
.x27{left:80.517600pt;}
.x2f{left:81.517600pt;}
.x40{left:82.450933pt;}
.x45{left:83.450933pt;}
.x4d{left:84.384267pt;}
.x51{left:85.984267pt;}
.xb{left:88.036533pt;}
.x71{left:89.036533pt;}
.x79{left:90.784267pt;}
.x78{left:91.717600pt;}
.x1{left:95.769867pt;}
.x2c{left:97.184267pt;}
.x3d{left:98.784267pt;}
.x4a{left:99.717600pt;}
.x50{left:101.050933pt;}
.x5b{left:105.036533pt;}
.x7c{left:106.117600pt;}
.x72{left:111.769867pt;}
.xc{left:112.703200pt;}
.x93{left:113.850933pt;}
.x43{left:118.650933pt;}
.x7{left:127.436533pt;}
.x7d{left:131.117600pt;}
.x60{left:133.836533pt;}
.x6d{left:147.903200pt;}
.x4b{left:153.184267pt;}
.x81{left:161.184267pt;}
.x7f{left:173.050933pt;}
.x77{left:176.850933pt;}
.x94{left:196.717600pt;}
.x67{left:198.769867pt;}
.x6e{left:200.369867pt;}
.x82{left:206.317600pt;}
.x80{left:209.517600pt;}
.x73{left:212.569867pt;}
.x62{left:217.969867pt;}
.x6f{left:220.236533pt;}
.x49{left:222.317600pt;}
.x36{left:224.850933pt;}
.x66{left:228.836533pt;}
.x33{left:230.917600pt;}
.x41{left:232.250933pt;}
.x4c{left:233.517600pt;}
.x65{left:234.969867pt;}
.x2a{left:237.650933pt;}
.x6c{left:243.236533pt;}
.x39{left:244.717600pt;}
.x2d{left:246.317600pt;}
.x30{left:247.250933pt;}
.x5d{left:249.636533pt;}
.x44{left:252.050933pt;}
.x16{left:255.103200pt;}
.x12{left:256.369867pt;}
.x2{left:257.369867pt;}
.x11{left:258.303200pt;}
.x17{left:259.236533pt;}
.xf{left:260.236533pt;}
.x32{left:262.650933pt;}
.x3e{left:264.517600pt;}
.x31{left:267.717600pt;}
.x68{left:268.836533pt;}
.x74{left:269.836533pt;}
.x38{left:272.250933pt;}
.x13{left:273.369867pt;}
.x10{left:276.569867pt;}
.x1a{left:280.703200pt;}
.x63{left:283.236533pt;}
.x28{left:284.717600pt;}
.x3b{left:286.650933pt;}
.x14{left:288.356533pt;}
.x18{left:292.836533pt;}
.x56{left:297.850933pt;}
.x15{left:301.503200pt;}
.x5e{left:302.436533pt;}
.x84{left:303.584267pt;}
.x83{left:304.850933pt;}
.x1b{left:306.636533pt;}
.x1c{left:311.436533pt;}
.x35{left:313.184267pt;}
.x46{left:314.450933pt;}
.x29{left:316.384267pt;}
.x2e{left:317.317600pt;}
.x89{left:318.904267pt;}
.x3f{left:320.237600pt;}
.x34{left:321.184267pt;}
.x95{left:331.717600pt;}
.x2b{left:333.317600pt;}
.x42{left:336.237600pt;}
.x4{left:341.169867pt;}
.x3a{left:345.517600pt;}
.x85{left:349.317600pt;}
.x75{left:355.903200pt;}
.x37{left:357.317600pt;}
.x96{left:364.384267pt;}
.x5{left:371.569867pt;}
.x54{left:377.184267pt;}
.x1d{left:379.236533pt;}
.x69{left:383.769867pt;}
.x6a{left:385.036533pt;}
.x3c{left:397.317600pt;}
.x55{left:398.650933pt;}
.x52{left:405.984267pt;}
.x4e{left:421.650933pt;}
.x19{left:428.569867pt;}
.x53{left:437.317600pt;}
.x4f{left:439.917600pt;}
.x87{left:441.517600pt;}
.x88{left:449.517600pt;}
.x5f{left:465.636533pt;}
.x47{left:468.050933pt;}
.x86{left:469.650933pt;}
.x48{left:513.184267pt;}
.x21{left:546.784267pt;}
.x8a{left:568.250933pt;}
.x92{left:571.117600pt;}
.x20{left:576.850933pt;}
.x24{left:577.850933pt;}
.x8d{left:583.917600pt;}
.x26{left:584.850933pt;}
.x90{left:586.450933pt;}
.x8b{left:588.384267pt;}
.x22{left:592.517600pt;}
.x23{left:593.850933pt;}
.x25{left:594.784267pt;}
.x8c{left:598.917600pt;}
.x91{left:602.117600pt;}
.x8e{left:604.717600pt;}
.x8f{left:607.917600pt;}
}




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