
    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_c651137151cc106bf1f1339c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.074036;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_023a5380420f20c5316c1f59.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.964789;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_dff84f829b283b68c4c8f686.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.024902;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_9fdc4e25b652294fc8c8d1b6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024902;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_7eb1cc380b3772b8eb24ae73.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.074000;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_4f02dbb7783b38fdc40e5078.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919000;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_766bcee7cccc159a6de41d94.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914000;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_b1c0dff08e85b67f8f9245d3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.041992;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_283d15e78d90bf5689e447fa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.964875;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_e8a630af1b8ac163ff588b27.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.989746;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;}
.m2e{transform:matrix(0.245127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245127,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.245183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245183,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.245190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245190,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245191,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.245584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245584,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246228,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.246361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246361,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.246570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246570,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.246620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246620,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.246683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246683,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.246810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246810,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.247007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247007,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.247089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247089,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.247257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247257,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247407,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247498,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247594,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.247649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247649,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.247974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247974,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248007,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248019,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248171,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248262,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248377,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.248433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248433,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.248478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248478,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248498,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.248659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248659,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248746,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248793,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248853,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.249178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249178,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249909,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249933,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249962,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);}
.m15{transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250304,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250437,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250649,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250763,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250803,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250817,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250892,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250921,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250995,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.251094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251094,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m4d{transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.251611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251611,0.000000,0.000000,0.250000,0,0);}
.m38{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);}
.m9{transform:matrix(0.251878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251878,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251887,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.252055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252055,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252060,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.252274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252274,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.252317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252317,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.252416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252416,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.253043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253043,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253132,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.253320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253320,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253481,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253610,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253990,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.254685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254685,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.062400px;}
.ls1{letter-spacing:0.062700px;}
.ls6{letter-spacing:0.124800px;}
.ls4{letter-spacing:0.125400px;}
.ls8{letter-spacing:0.187200px;}
.lsa{letter-spacing:0.188100px;}
.ls5{letter-spacing:0.249600px;}
.ls3{letter-spacing:0.250800px;}
.ls9{letter-spacing:0.312000px;}
.ls2{letter-spacing:0.376200px;}
.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;}
}
.ws41{word-spacing:-23.925000px;}
.ws3{word-spacing:-17.242500px;}
.ws1{word-spacing:-15.990000px;}
.ws48{word-spacing:-14.859900px;}
.ws40{word-spacing:-14.734500px;}
.ws28{word-spacing:-14.671800px;}
.ws54{word-spacing:-8.276400px;}
.ws10{word-spacing:-4.702500px;}
.ws25{word-spacing:-4.680000px;}
.ws15{word-spacing:-4.514400px;}
.ws47{word-spacing:-4.492800px;}
.ws19{word-spacing:-4.451700px;}
.ws2e{word-spacing:-4.430400px;}
.ws1f{word-spacing:-4.389000px;}
.ws2f{word-spacing:-4.305600px;}
.ws49{word-spacing:-4.243200px;}
.wse{word-spacing:-3.887400px;}
.ws1a{word-spacing:-3.824700px;}
.ws37{word-spacing:-3.744000px;}
.ws33{word-spacing:-3.619200px;}
.ws16{word-spacing:-3.573900px;}
.ws2d{word-spacing:-3.556800px;}
.ws3e{word-spacing:-3.494400px;}
.ws31{word-spacing:-3.182400px;}
.ws38{word-spacing:-3.120000px;}
.wsf{word-spacing:-3.072300px;}
.ws2a{word-spacing:-3.057600px;}
.ws5{word-spacing:-3.009600px;}
.ws3d{word-spacing:-2.932800px;}
.ws27{word-spacing:-2.870400px;}
.ws42{word-spacing:-2.808000px;}
.ws34{word-spacing:-2.683200px;}
.ws11{word-spacing:-2.633400px;}
.ws32{word-spacing:-2.625000px;}
.ws46{word-spacing:-2.620800px;}
.ws18{word-spacing:-2.570700px;}
.ws45{word-spacing:-2.496000px;}
.ws13{word-spacing:-2.445300px;}
.ws36{word-spacing:-2.433600px;}
.ws1b{word-spacing:-2.371200px;}
.ws12{word-spacing:-2.319900px;}
.ws20{word-spacing:-2.308800px;}
.ws29{word-spacing:-2.246400px;}
.ws24{word-spacing:-2.184000px;}
.ws50{word-spacing:-2.131800px;}
.ws23{word-spacing:-2.121600px;}
.ws43{word-spacing:-2.059200px;}
.ws2b{word-spacing:-1.996800px;}
.ws1e{word-spacing:-1.943700px;}
.ws5c{word-spacing:-1.920000px;}
.ws5b{word-spacing:-1.860000px;}
.ws21{word-spacing:-1.809600px;}
.ws4a{word-spacing:-1.747200px;}
.wsb{word-spacing:-1.630200px;}
.ws1c{word-spacing:-1.622400px;}
.ws3f{word-spacing:-1.560000px;}
.ws1d{word-spacing:-1.497600px;}
.ws35{word-spacing:-1.435200px;}
.ws4b{word-spacing:-1.379400px;}
.ws17{word-spacing:-1.003200px;}
.ws2c{word-spacing:-0.998400px;}
.wsd{word-spacing:-0.940500px;}
.ws7{word-spacing:-0.877800px;}
.ws3a{word-spacing:-0.686400px;}
.ws4{word-spacing:-0.627000px;}
.ws3c{word-spacing:-0.561600px;}
.ws44{word-spacing:-0.499200px;}
.ws3b{word-spacing:-0.436800px;}
.ws39{word-spacing:-0.312000px;}
.ws8{word-spacing:-0.188100px;}
.ws30{word-spacing:-0.187200px;}
.ws26{word-spacing:-0.124800px;}
.ws2{word-spacing:-0.066000px;}
.ws14{word-spacing:-0.062700px;}
.ws22{word-spacing:-0.062400px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:0.564300px;}
.ws4f{word-spacing:0.815100px;}
.ws4c{word-spacing:1.379400px;}
.ws4d{word-spacing:1.692900px;}
.ws5d{word-spacing:1.860000px;}
.ws5e{word-spacing:1.932000px;}
.ws4e{word-spacing:3.950100px;}
.ws5a{word-spacing:4.380000px;}
.ws56{word-spacing:5.016000px;}
.ws9{word-spacing:5.329500px;}
.ws57{word-spacing:5.580300px;}
.ws55{word-spacing:5.831100px;}
.ws52{word-spacing:5.956500px;}
.ws58{word-spacing:6.207300px;}
.ws51{word-spacing:6.708900px;}
.ws6{word-spacing:8.151000px;}
.wsa{word-spacing:11.286000px;}
.ws59{word-spacing:20.879100px;}
.ws53{word-spacing:25.456200px;}
._1{margin-left:-15.660000px;}
._12{margin-left:-9.373650px;}
._11{margin-left:-8.213700px;}
._4{margin-left:-6.111000px;}
._3{margin-left:-5.100600px;}
._b{margin-left:-4.049160px;}
._2{margin-left:-3.024000px;}
._0{margin-left:-1.740000px;}
._5{width:1.782000px;}
._8{width:2.906100px;}
._f{width:4.457970px;}
._e{width:6.282540px;}
._7{width:7.336800px;}
._15{width:11.222790px;}
._13{width:12.667260px;}
._18{width:14.345760px;}
._10{width:18.151650px;}
._19{width:20.565600px;}
._17{width:37.273530px;}
._1a{width:38.494770px;}
._14{width:41.175090px;}
._d{width:65.552850px;}
._16{width:475.794000px;}
._a{width:504.702000px;}
._9{width:506.880000px;}
._c{width:508.134000px;}
._6{width:520.146000px;}
.fc4{color:rgb(246,174,45);}
.fc2{color:rgb(74,114,132);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(251,251,251);}
.fc0{color:rgb(245,174,38);}
.fsa{font-size:42.000000px;}
.fs9{font-size:60.000000px;}
.fs5{font-size:61.500000px;}
.fs7{font-size:62.100000px;}
.fs6{font-size:62.400000px;}
.fs3{font-size:62.700000px;}
.fs4{font-size:66.000000px;}
.fs8{font-size:75.000000px;}
.fs2{font-size:87.000000px;}
.fs1{font-size:126.000000px;}
.fs0{font-size:174.000000px;}
.y0{bottom:0.000000px;}
.ya2{bottom:44.969400px;}
.y13{bottom:47.889150px;}
.y1d{bottom:48.837000px;}
.y7b{bottom:49.498950px;}
.y124{bottom:91.891350px;}
.y123{bottom:104.491350px;}
.y122{bottom:117.091350px;}
.yc7{bottom:125.583450px;}
.y57{bottom:126.981000px;}
.y77{bottom:130.283700px;}
.ya0{bottom:136.742100px;}
.y121{bottom:142.291350px;}
.yc6{bottom:151.089450px;}
.y56{bottom:152.487000px;}
.y31{bottom:153.319125px;}
.y120{bottom:154.891350px;}
.y76{bottom:155.784900px;}
.y10c{bottom:160.020300px;}
.y9f{bottom:162.219450px;}
.yc5{bottom:176.589450px;}
.y55{bottom:177.993000px;}
.y30{bottom:178.822350px;}
.y10b{bottom:182.513925px;}
.y7a{bottom:185.595300px;}
.y9e{bottom:187.725450px;}
.yc4{bottom:201.838950px;}
.y54{bottom:203.493000px;}
.y2f{bottom:204.325575px;}
.y10a{bottom:205.007550px;}
.y78{bottom:214.145550px;}
.y9d{bottom:226.647450px;}
.y53{bottom:228.993000px;}
.y2e{bottom:229.828800px;}
.y109{bottom:245.041500px;}
.y9c{bottom:252.153450px;}
.yc2{bottom:252.678750px;}
.y52{bottom:254.493000px;}
.y2d{bottom:255.328800px;}
.y108{bottom:267.541500px;}
.y75{bottom:271.068900px;}
.y9b{bottom:277.659450px;}
.yc1{bottom:278.184750px;}
.y51{bottom:279.987000px;}
.y2c{bottom:280.814775px;}
.y107{bottom:290.046900px;}
.y74{bottom:296.568900px;}
.y9a{bottom:303.159450px;}
.yc0{bottom:303.690750px;}
.y50{bottom:305.493000px;}
.y2b{bottom:306.318000px;}
.y73{bottom:322.056900px;}
.y99{bottom:328.659450px;}
.ybf{bottom:329.196750px;}
.y106{bottom:330.080850px;}
.y4f{bottom:330.993000px;}
.y2a{bottom:331.821225px;}
.y72{bottom:347.562900px;}
.y105{bottom:352.580850px;}
.y98{bottom:354.159450px;}
.ybe{bottom:354.696750px;}
.y4e{bottom:356.493000px;}
.y29{bottom:357.324450px;}
.ye5{bottom:372.047250px;}
.y71{bottom:373.068900px;}
.y104{bottom:375.086250px;}
.y97{bottom:379.659450px;}
.ybd{bottom:380.196750px;}
.y4d{bottom:381.993000px;}
.y28{bottom:396.135750px;}
.ye4{bottom:397.547250px;}
.y70{bottom:398.568900px;}
.y3{bottom:404.119350px;}
.ybc{bottom:405.696750px;}
.ya1{bottom:409.470900px;}
.y103{bottom:415.120200px;}
.y4c{bottom:420.331650px;}
.y27{bottom:421.635750px;}
.ye3{bottom:423.047250px;}
.y6f{bottom:436.617900px;}
.y102{bottom:437.654775px;}
.ybb{bottom:438.590550px;}
.y4b{bottom:445.831650px;}
.y26{bottom:447.135750px;}
.ye2{bottom:448.547250px;}
.y101{bottom:460.148400px;}
.y96{bottom:460.293150px;}
.y6e{bottom:462.123900px;}
.yba{bottom:464.090550px;}
.y4a{bottom:471.328425px;}
.y25{bottom:472.635750px;}
.ye1{bottom:474.047250px;}
.y95{bottom:485.799150px;}
.y6d{bottom:487.629900px;}
.yb9{bottom:489.590550px;}
.y49{bottom:496.831650px;}
.y24{bottom:498.135750px;}
.ye0{bottom:499.547250px;}
.y100{bottom:500.182350px;}
.y94{bottom:511.305150px;}
.y6c{bottom:513.129900px;}
.yb8{bottom:515.090550px;}
.y1a{bottom:520.091700px;}
.y48{bottom:522.331650px;}
.yff{bottom:522.675975px;}
.y23{bottom:523.632525px;}
.ydf{bottom:525.051750px;}
.y93{bottom:536.805150px;}
.y2{bottom:538.146150px;}
.y6b{bottom:538.629900px;}
.yb7{bottom:540.590550px;}
.yfe{bottom:545.169600px;}
.y47{bottom:547.825650px;}
.y22{bottom:549.135750px;}
.yde{bottom:558.513750px;}
.y19{bottom:560.589450px;}
.y92{bottom:562.293150px;}
.y6a{bottom:564.129900px;}
.yb6{bottom:566.090550px;}
.y46{bottom:573.331650px;}
.y21{bottom:574.635750px;}
.yfd{bottom:583.965225px;}
.ydd{bottom:584.013750px;}
.y1{bottom:587.649150px;}
.y91{bottom:587.799150px;}
.y69{bottom:589.623900px;}
.yb5{bottom:591.590550px;}
.y20{bottom:600.135750px;}
.y18{bottom:601.087200px;}
.y45{bottom:603.081150px;}
.yfc{bottom:606.458850px;}
.ydc{bottom:609.507750px;}
.y90{bottom:613.305150px;}
.y68{bottom:615.129900px;}
.y12{bottom:616.011600px;}
.yb4{bottom:617.090550px;}
.y17{bottom:620.582700px;}
.ye6{bottom:625.077450px;}
.y1f{bottom:625.635750px;}
.yfb{bottom:629.005875px;}
.ydb{bottom:635.013750px;}
.y8f{bottom:638.805150px;}
.y67{bottom:640.629900px;}
.y11{bottom:641.514825px;}
.yb3{bottom:642.590550px;}
.yfa{bottom:651.499500px;}
.y1e{bottom:656.963850px;}
.yda{bottom:660.513750px;}
.y16{bottom:662.587200px;}
.y44{bottom:664.270575px;}
.y8e{bottom:664.305150px;}
.y66{bottom:666.129900px;}
.yb2{bottom:668.090550px;}
.yd9{bottom:686.007750px;}
.y10{bottom:687.411225px;}
.y43{bottom:689.773800px;}
.y8d{bottom:689.798400px;}
.y65{bottom:691.636200px;}
.yf9{bottom:691.815600px;}
.yb1{bottom:693.590550px;}
.y15{bottom:703.084950px;}
.yd8{bottom:711.513750px;}
.yf{bottom:712.914450px;}
.yf8{bottom:714.309225px;}
.y42{bottom:715.273800px;}
.yb0{bottom:719.079900px;}
.y84{bottom:728.161350px;}
.y4{bottom:732.254850px;}
.yf7{bottom:736.802850px;}
.yd7{bottom:737.013750px;}
.ye{bottom:738.399375px;}
.y41{bottom:740.758350px;}
.y14{bottom:743.582700px;}
.yc3{bottom:745.902000px;}
.y83{bottom:753.667350px;}
.yf6{bottom:759.296475px;}
.yd6{bottom:762.513750px;}
.y40{bottom:766.261575px;}
.y1b{bottom:769.139250px;}
.y11f{bottom:770.073900px;}
.y64{bottom:778.746600px;}
.y82{bottom:779.167350px;}
.yf5{bottom:781.790100px;}
.yd{bottom:786.255150px;}
.yd5{bottom:788.013750px;}
.y11e{bottom:788.073900px;}
.y3f{bottom:791.764800px;}
.yaf{bottom:795.129900px;}
.y63{bottom:804.246600px;}
.yf4{bottom:804.283725px;}
.y81{bottom:804.667350px;}
.y11d{bottom:806.073900px;}
.yc{bottom:811.758375px;}
.yae{bottom:820.635900px;}
.y11c{bottom:824.073900px;}
.ycc{bottom:825.897600px;}
.y62{bottom:829.746600px;}
.y3e{bottom:830.105850px;}
.y80{bottom:830.167350px;}
.y116{bottom:844.569000px;}
.yf3{bottom:844.599825px;}
.yad{bottom:846.135900px;}
.ycb{bottom:851.403600px;}
.y61{bottom:855.246600px;}
.y3d{bottom:855.609075px;}
.y7f{bottom:855.661350px;}
.yb{bottom:856.604550px;}
.y115{bottom:867.079575px;}
.yf2{bottom:867.093450px;}
.yac{bottom:871.635900px;}
.yca{bottom:876.903600px;}
.y60{bottom:880.746600px;}
.y3c{bottom:881.112300px;}
.y7e{bottom:881.167350px;}
.ya{bottom:882.107775px;}
.y114{bottom:889.573200px;}
.yf1{bottom:889.587075px;}
.yc9{bottom:902.403600px;}
.y11b{bottom:904.053900px;}
.yab{bottom:906.088500px;}
.y5f{bottom:906.246600px;}
.y3b{bottom:906.609075px;}
.y7d{bottom:906.667350px;}
.y9{bottom:907.611000px;}
.yf0{bottom:912.080700px;}
.y11a{bottom:922.053900px;}
.yc8{bottom:927.903600px;}
.y113{bottom:930.500625px;}
.yaa{bottom:931.588500px;}
.y5e{bottom:931.746600px;}
.y3a{bottom:932.112300px;}
.y7c{bottom:932.167350px;}
.yef{bottom:934.592175px;}
.y119{bottom:940.053900px;}
.y8{bottom:952.033950px;}
.y112{bottom:952.994250px;}
.ya9{bottom:957.088500px;}
.y5d{bottom:957.246600px;}
.y39{bottom:957.612300px;}
.y118{bottom:958.053900px;}
.yd4{bottom:970.168950px;}
.y8c{bottom:970.192800px;}
.yee{bottom:974.532075px;}
.y111{bottom:975.498975px;}
.y117{bottom:976.053900px;}
.y7{bottom:977.537175px;}
.ya8{bottom:982.576500px;}
.y5c{bottom:982.746600px;}
.y38{bottom:983.118150px;}
.yd3{bottom:995.674950px;}
.y8b{bottom:995.692800px;}
.yed{bottom:997.025700px;}
.y110{bottom:997.992600px;}
.y6{bottom:1003.040400px;}
.ya7{bottom:1008.082500px;}
.y5b{bottom:1008.246600px;}
.yec{bottom:1019.546250px;}
.y37{bottom:1021.114350px;}
.yd2{bottom:1021.180950px;}
.y8a{bottom:1021.192800px;}
.ya6{bottom:1033.588500px;}
.y5a{bottom:1033.746600px;}
.y10f{bottom:1036.114200px;}
.yeb{bottom:1042.039875px;}
.y36{bottom:1046.614350px;}
.yd1{bottom:1046.686950px;}
.y89{bottom:1046.692800px;}
.y5{bottom:1050.854550px;}
.y10e{bottom:1058.614200px;}
.y59{bottom:1059.246600px;}
.yea{bottom:1064.533500px;}
.y35{bottom:1072.114350px;}
.ya5{bottom:1072.186800px;}
.y88{bottom:1072.192800px;}
.yd0{bottom:1072.192950px;}
.y10d{bottom:1081.133325px;}
.y58{bottom:1084.746600px;}
.y34{bottom:1097.614350px;}
.y87{bottom:1097.692800px;}
.ycf{bottom:1097.692950px;}
.ye9{bottom:1103.626950px;}
.y79{bottom:1117.559850px;}
.y33{bottom:1123.114350px;}
.ya4{bottom:1123.186800px;}
.y86{bottom:1123.192800px;}
.yce{bottom:1123.192950px;}
.ye8{bottom:1126.120575px;}
.ye7{bottom:1148.614200px;}
.y32{bottom:1148.614350px;}
.y85{bottom:1148.690550px;}
.ya3{bottom:1148.692800px;}
.ycd{bottom:1148.692950px;}
.y1c{bottom:1195.268550px;}
.h19{height:33.550781px;}
.h8{height:45.325500px;}
.hf{height:47.025000px;}
.h17{height:47.929688px;}
.h9{height:49.434000px;}
.hd{height:49.846875px;}
.h13{height:49.855875px;}
.h15{height:49.870875px;}
.h16{height:49.894875px;}
.h5{height:50.086523px;}
.hc{height:50.099423px;}
.h6{height:50.146823px;}
.he{height:50.700000px;}
.hb{height:50.943750px;}
.h10{height:50.967750px;}
.h14{height:50.991750px;}
.h18{height:51.770361px;}
.ha{height:52.921080px;}
.h7{height:55.704000px;}
.h12{height:60.937500px;}
.h11{height:63.302727px;}
.h4{height:73.431164px;}
.h3{height:94.374000px;}
.h2{height:146.862327px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:31.235325px;}
.x6{left:34.015800px;}
.xa{left:42.505200px;}
.x7{left:43.796700px;}
.x9{left:46.917825px;}
.x4{left:54.758100px;}
.x1{left:68.038500px;}
.x11{left:77.598450px;}
.x2{left:107.362500px;}
.x13{left:162.588450px;}
.xc{left:170.078700px;}
.x12{left:198.693450px;}
.x14{left:209.565300px;}
.xd{left:211.694100px;}
.x5{left:219.188850px;}
.x10{left:350.638650px;}
.xe{left:451.858800px;}
.xb{left:574.245450px;}
.x3{left:597.062100px;}
.xf{left:789.961800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.055467pt;}
.ls1{letter-spacing:0.055733pt;}
.ls6{letter-spacing:0.110933pt;}
.ls4{letter-spacing:0.111467pt;}
.ls8{letter-spacing:0.166400pt;}
.lsa{letter-spacing:0.167200pt;}
.ls5{letter-spacing:0.221867pt;}
.ls3{letter-spacing:0.222933pt;}
.ls9{letter-spacing:0.277333pt;}
.ls2{letter-spacing:0.334400pt;}
.ws41{word-spacing:-21.266667pt;}
.ws3{word-spacing:-15.326667pt;}
.ws1{word-spacing:-14.213333pt;}
.ws48{word-spacing:-13.208800pt;}
.ws40{word-spacing:-13.097333pt;}
.ws28{word-spacing:-13.041600pt;}
.ws54{word-spacing:-7.356800pt;}
.ws10{word-spacing:-4.180000pt;}
.ws25{word-spacing:-4.160000pt;}
.ws15{word-spacing:-4.012800pt;}
.ws47{word-spacing:-3.993600pt;}
.ws19{word-spacing:-3.957067pt;}
.ws2e{word-spacing:-3.938133pt;}
.ws1f{word-spacing:-3.901333pt;}
.ws2f{word-spacing:-3.827200pt;}
.ws49{word-spacing:-3.771733pt;}
.wse{word-spacing:-3.455467pt;}
.ws1a{word-spacing:-3.399733pt;}
.ws37{word-spacing:-3.328000pt;}
.ws33{word-spacing:-3.217067pt;}
.ws16{word-spacing:-3.176800pt;}
.ws2d{word-spacing:-3.161600pt;}
.ws3e{word-spacing:-3.106133pt;}
.ws31{word-spacing:-2.828800pt;}
.ws38{word-spacing:-2.773333pt;}
.wsf{word-spacing:-2.730933pt;}
.ws2a{word-spacing:-2.717867pt;}
.ws5{word-spacing:-2.675200pt;}
.ws3d{word-spacing:-2.606933pt;}
.ws27{word-spacing:-2.551467pt;}
.ws42{word-spacing:-2.496000pt;}
.ws34{word-spacing:-2.385067pt;}
.ws11{word-spacing:-2.340800pt;}
.ws32{word-spacing:-2.333333pt;}
.ws46{word-spacing:-2.329600pt;}
.ws18{word-spacing:-2.285067pt;}
.ws45{word-spacing:-2.218667pt;}
.ws13{word-spacing:-2.173600pt;}
.ws36{word-spacing:-2.163200pt;}
.ws1b{word-spacing:-2.107733pt;}
.ws12{word-spacing:-2.062133pt;}
.ws20{word-spacing:-2.052267pt;}
.ws29{word-spacing:-1.996800pt;}
.ws24{word-spacing:-1.941333pt;}
.ws50{word-spacing:-1.894933pt;}
.ws23{word-spacing:-1.885867pt;}
.ws43{word-spacing:-1.830400pt;}
.ws2b{word-spacing:-1.774933pt;}
.ws1e{word-spacing:-1.727733pt;}
.ws5c{word-spacing:-1.706667pt;}
.ws5b{word-spacing:-1.653333pt;}
.ws21{word-spacing:-1.608533pt;}
.ws4a{word-spacing:-1.553067pt;}
.wsb{word-spacing:-1.449067pt;}
.ws1c{word-spacing:-1.442133pt;}
.ws3f{word-spacing:-1.386667pt;}
.ws1d{word-spacing:-1.331200pt;}
.ws35{word-spacing:-1.275733pt;}
.ws4b{word-spacing:-1.226133pt;}
.ws17{word-spacing:-0.891733pt;}
.ws2c{word-spacing:-0.887467pt;}
.wsd{word-spacing:-0.836000pt;}
.ws7{word-spacing:-0.780267pt;}
.ws3a{word-spacing:-0.610133pt;}
.ws4{word-spacing:-0.557333pt;}
.ws3c{word-spacing:-0.499200pt;}
.ws44{word-spacing:-0.443733pt;}
.ws3b{word-spacing:-0.388267pt;}
.ws39{word-spacing:-0.277333pt;}
.ws8{word-spacing:-0.167200pt;}
.ws30{word-spacing:-0.166400pt;}
.ws26{word-spacing:-0.110933pt;}
.ws2{word-spacing:-0.058667pt;}
.ws14{word-spacing:-0.055733pt;}
.ws22{word-spacing:-0.055467pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:0.501600pt;}
.ws4f{word-spacing:0.724533pt;}
.ws4c{word-spacing:1.226133pt;}
.ws4d{word-spacing:1.504800pt;}
.ws5d{word-spacing:1.653333pt;}
.ws5e{word-spacing:1.717333pt;}
.ws4e{word-spacing:3.511200pt;}
.ws5a{word-spacing:3.893333pt;}
.ws56{word-spacing:4.458667pt;}
.ws9{word-spacing:4.737333pt;}
.ws57{word-spacing:4.960267pt;}
.ws55{word-spacing:5.183200pt;}
.ws52{word-spacing:5.294667pt;}
.ws58{word-spacing:5.517600pt;}
.ws51{word-spacing:5.963467pt;}
.ws6{word-spacing:7.245333pt;}
.wsa{word-spacing:10.032000pt;}
.ws59{word-spacing:18.559200pt;}
.ws53{word-spacing:22.627733pt;}
._1{margin-left:-13.920000pt;}
._12{margin-left:-8.332133pt;}
._11{margin-left:-7.301067pt;}
._4{margin-left:-5.432000pt;}
._3{margin-left:-4.533867pt;}
._b{margin-left:-3.599253pt;}
._2{margin-left:-2.688000pt;}
._0{margin-left:-1.546667pt;}
._5{width:1.584000pt;}
._8{width:2.583200pt;}
._f{width:3.962640pt;}
._e{width:5.584480pt;}
._7{width:6.521600pt;}
._15{width:9.975813pt;}
._13{width:11.259787pt;}
._18{width:12.751787pt;}
._10{width:16.134800pt;}
._19{width:18.280533pt;}
._17{width:33.132027pt;}
._1a{width:34.217573pt;}
._14{width:36.600080pt;}
._d{width:58.269200pt;}
._16{width:422.928000pt;}
._a{width:448.624000pt;}
._9{width:450.560000pt;}
._c{width:451.674667pt;}
._6{width:462.352000pt;}
.fsa{font-size:37.333333pt;}
.fs9{font-size:53.333333pt;}
.fs5{font-size:54.666667pt;}
.fs7{font-size:55.200000pt;}
.fs6{font-size:55.466667pt;}
.fs3{font-size:55.733333pt;}
.fs4{font-size:58.666667pt;}
.fs8{font-size:66.666667pt;}
.fs2{font-size:77.333333pt;}
.fs1{font-size:112.000000pt;}
.fs0{font-size:154.666667pt;}
.y0{bottom:0.000000pt;}
.ya2{bottom:39.972800pt;}
.y13{bottom:42.568133pt;}
.y1d{bottom:43.410667pt;}
.y7b{bottom:43.999067pt;}
.y124{bottom:81.681200pt;}
.y123{bottom:92.881200pt;}
.y122{bottom:104.081200pt;}
.yc7{bottom:111.629733pt;}
.y57{bottom:112.872000pt;}
.y77{bottom:115.807733pt;}
.ya0{bottom:121.548533pt;}
.y121{bottom:126.481200pt;}
.yc6{bottom:134.301733pt;}
.y56{bottom:135.544000pt;}
.y31{bottom:136.283667pt;}
.y120{bottom:137.681200pt;}
.y76{bottom:138.475467pt;}
.y10c{bottom:142.240267pt;}
.y9f{bottom:144.195067pt;}
.yc5{bottom:156.968400pt;}
.y55{bottom:158.216000pt;}
.y30{bottom:158.953200pt;}
.y10b{bottom:162.234600pt;}
.y7a{bottom:164.973600pt;}
.y9e{bottom:166.867067pt;}
.yc4{bottom:179.412400pt;}
.y54{bottom:180.882667pt;}
.y2f{bottom:181.622733pt;}
.y10a{bottom:182.228933pt;}
.y78{bottom:190.351600pt;}
.y9d{bottom:201.464400pt;}
.y53{bottom:203.549333pt;}
.y2e{bottom:204.292267pt;}
.y109{bottom:217.814667pt;}
.y9c{bottom:224.136400pt;}
.yc2{bottom:224.603333pt;}
.y52{bottom:226.216000pt;}
.y2d{bottom:226.958933pt;}
.y108{bottom:237.814667pt;}
.y75{bottom:240.950133pt;}
.y9b{bottom:246.808400pt;}
.yc1{bottom:247.275333pt;}
.y51{bottom:248.877333pt;}
.y2c{bottom:249.613133pt;}
.y107{bottom:257.819467pt;}
.y74{bottom:263.616800pt;}
.y9a{bottom:269.475067pt;}
.yc0{bottom:269.947333pt;}
.y50{bottom:271.549333pt;}
.y2b{bottom:272.282667pt;}
.y73{bottom:286.272800pt;}
.y99{bottom:292.141733pt;}
.ybf{bottom:292.619333pt;}
.y106{bottom:293.405200pt;}
.y4f{bottom:294.216000pt;}
.y2a{bottom:294.952200pt;}
.y72{bottom:308.944800pt;}
.y105{bottom:313.405200pt;}
.y98{bottom:314.808400pt;}
.ybe{bottom:315.286000pt;}
.y4e{bottom:316.882667pt;}
.y29{bottom:317.621733pt;}
.ye5{bottom:330.708667pt;}
.y71{bottom:331.616800pt;}
.y104{bottom:333.410000pt;}
.y97{bottom:337.475067pt;}
.ybd{bottom:337.952667pt;}
.y4d{bottom:339.549333pt;}
.y28{bottom:352.120667pt;}
.ye4{bottom:353.375333pt;}
.y70{bottom:354.283467pt;}
.y3{bottom:359.217200pt;}
.ybc{bottom:360.619333pt;}
.ya1{bottom:363.974133pt;}
.y103{bottom:368.995733pt;}
.y4c{bottom:373.628133pt;}
.y27{bottom:374.787333pt;}
.ye3{bottom:376.042000pt;}
.y6f{bottom:388.104800pt;}
.y102{bottom:389.026467pt;}
.ybb{bottom:389.858267pt;}
.y4b{bottom:396.294800pt;}
.y26{bottom:397.454000pt;}
.ye2{bottom:398.708667pt;}
.y101{bottom:409.020800pt;}
.y96{bottom:409.149467pt;}
.y6e{bottom:410.776800pt;}
.yba{bottom:412.524933pt;}
.y4a{bottom:418.958600pt;}
.y25{bottom:420.120667pt;}
.ye1{bottom:421.375333pt;}
.y95{bottom:431.821467pt;}
.y6d{bottom:433.448800pt;}
.yb9{bottom:435.191600pt;}
.y49{bottom:441.628133pt;}
.y24{bottom:442.787333pt;}
.ye0{bottom:444.042000pt;}
.y100{bottom:444.606533pt;}
.y94{bottom:454.493467pt;}
.y6c{bottom:456.115467pt;}
.yb8{bottom:457.858267pt;}
.y1a{bottom:462.303733pt;}
.y48{bottom:464.294800pt;}
.yff{bottom:464.600867pt;}
.y23{bottom:465.451133pt;}
.ydf{bottom:466.712667pt;}
.y93{bottom:477.160133pt;}
.y2{bottom:478.352133pt;}
.y6b{bottom:478.782133pt;}
.yb7{bottom:480.524933pt;}
.yfe{bottom:484.595200pt;}
.y47{bottom:486.956133pt;}
.y22{bottom:488.120667pt;}
.yde{bottom:496.456667pt;}
.y19{bottom:498.301733pt;}
.y92{bottom:499.816133pt;}
.y6a{bottom:501.448800pt;}
.yb6{bottom:503.191600pt;}
.y46{bottom:509.628133pt;}
.y21{bottom:510.787333pt;}
.yfd{bottom:519.080200pt;}
.ydd{bottom:519.123333pt;}
.y1{bottom:522.354800pt;}
.y91{bottom:522.488133pt;}
.y69{bottom:524.110133pt;}
.yb5{bottom:525.858267pt;}
.y20{bottom:533.454000pt;}
.y18{bottom:534.299733pt;}
.y45{bottom:536.072133pt;}
.yfc{bottom:539.074533pt;}
.ydc{bottom:541.784667pt;}
.y90{bottom:545.160133pt;}
.y68{bottom:546.782133pt;}
.y12{bottom:547.565867pt;}
.yb4{bottom:548.524933pt;}
.y17{bottom:551.629067pt;}
.ye6{bottom:555.624400pt;}
.y1f{bottom:556.120667pt;}
.yfb{bottom:559.116333pt;}
.ydb{bottom:564.456667pt;}
.y8f{bottom:567.826800pt;}
.y67{bottom:569.448800pt;}
.y11{bottom:570.235400pt;}
.yb3{bottom:571.191600pt;}
.yfa{bottom:579.110667pt;}
.y1e{bottom:583.967867pt;}
.yda{bottom:587.123333pt;}
.y16{bottom:588.966400pt;}
.y44{bottom:590.462733pt;}
.y8e{bottom:590.493467pt;}
.y66{bottom:592.115467pt;}
.yb2{bottom:593.858267pt;}
.yd9{bottom:609.784667pt;}
.y10{bottom:611.032200pt;}
.y43{bottom:613.132267pt;}
.y8d{bottom:613.154133pt;}
.y65{bottom:614.787733pt;}
.yf9{bottom:614.947200pt;}
.yb1{bottom:616.524933pt;}
.y15{bottom:624.964400pt;}
.yd8{bottom:632.456667pt;}
.yf{bottom:633.701733pt;}
.yf8{bottom:634.941533pt;}
.y42{bottom:635.798933pt;}
.yb0{bottom:639.182133pt;}
.y84{bottom:647.254533pt;}
.y4{bottom:650.893200pt;}
.yf7{bottom:654.935867pt;}
.yd7{bottom:655.123333pt;}
.ye{bottom:656.355000pt;}
.y41{bottom:658.451867pt;}
.y14{bottom:660.962400pt;}
.yc3{bottom:663.024000pt;}
.y83{bottom:669.926533pt;}
.yf6{bottom:674.930200pt;}
.yd6{bottom:677.790000pt;}
.y40{bottom:681.121400pt;}
.y1b{bottom:683.679333pt;}
.y11f{bottom:684.510133pt;}
.y64{bottom:692.219200pt;}
.y82{bottom:692.593200pt;}
.yf5{bottom:694.924533pt;}
.yd{bottom:698.893467pt;}
.yd5{bottom:700.456667pt;}
.y11e{bottom:700.510133pt;}
.y3f{bottom:703.790933pt;}
.yaf{bottom:706.782133pt;}
.y63{bottom:714.885867pt;}
.yf4{bottom:714.918867pt;}
.y81{bottom:715.259867pt;}
.y11d{bottom:716.510133pt;}
.yc{bottom:721.563000pt;}
.yae{bottom:729.454133pt;}
.y11c{bottom:732.510133pt;}
.ycc{bottom:734.131200pt;}
.y62{bottom:737.552533pt;}
.y3e{bottom:737.871867pt;}
.y80{bottom:737.926533pt;}
.y116{bottom:750.728000pt;}
.yf3{bottom:750.755400pt;}
.yad{bottom:752.120800pt;}
.ycb{bottom:756.803200pt;}
.y61{bottom:760.219200pt;}
.y3d{bottom:760.541400pt;}
.y7f{bottom:760.587867pt;}
.yb{bottom:761.426267pt;}
.y115{bottom:770.737400pt;}
.yf2{bottom:770.749733pt;}
.yac{bottom:774.787467pt;}
.yca{bottom:779.469867pt;}
.y60{bottom:782.885867pt;}
.y3c{bottom:783.210933pt;}
.y7e{bottom:783.259867pt;}
.ya{bottom:784.095800pt;}
.y114{bottom:790.731733pt;}
.yf1{bottom:790.744067pt;}
.yc9{bottom:802.136533pt;}
.y11b{bottom:803.603467pt;}
.yab{bottom:805.412000pt;}
.y5f{bottom:805.552533pt;}
.y3b{bottom:805.874733pt;}
.y7d{bottom:805.926533pt;}
.y9{bottom:806.765333pt;}
.yf0{bottom:810.738400pt;}
.y11a{bottom:819.603467pt;}
.yc8{bottom:824.803200pt;}
.y113{bottom:827.111667pt;}
.yaa{bottom:828.078667pt;}
.y5e{bottom:828.219200pt;}
.y3a{bottom:828.544267pt;}
.y7c{bottom:828.593200pt;}
.yef{bottom:830.748600pt;}
.y119{bottom:835.603467pt;}
.y8{bottom:846.252400pt;}
.y112{bottom:847.106000pt;}
.ya9{bottom:850.745333pt;}
.y5d{bottom:850.885867pt;}
.y39{bottom:851.210933pt;}
.y118{bottom:851.603467pt;}
.yd4{bottom:862.372400pt;}
.y8c{bottom:862.393600pt;}
.yee{bottom:866.250733pt;}
.y111{bottom:867.110200pt;}
.y117{bottom:867.603467pt;}
.y7{bottom:868.921933pt;}
.ya8{bottom:873.401333pt;}
.y5c{bottom:873.552533pt;}
.y38{bottom:873.882800pt;}
.yd3{bottom:885.044400pt;}
.y8b{bottom:885.060267pt;}
.yed{bottom:886.245067pt;}
.y110{bottom:887.104533pt;}
.y6{bottom:891.591467pt;}
.ya7{bottom:896.073333pt;}
.y5b{bottom:896.219200pt;}
.yec{bottom:906.263333pt;}
.y37{bottom:907.657200pt;}
.yd2{bottom:907.716400pt;}
.y8a{bottom:907.726933pt;}
.ya6{bottom:918.745333pt;}
.y5a{bottom:918.885867pt;}
.y10f{bottom:920.990400pt;}
.yeb{bottom:926.257667pt;}
.y36{bottom:930.323867pt;}
.yd1{bottom:930.388400pt;}
.y89{bottom:930.393600pt;}
.y5{bottom:934.092933pt;}
.y10e{bottom:940.990400pt;}
.y59{bottom:941.552533pt;}
.yea{bottom:946.252000pt;}
.y35{bottom:952.990533pt;}
.ya5{bottom:953.054933pt;}
.y88{bottom:953.060267pt;}
.yd0{bottom:953.060400pt;}
.y10d{bottom:961.007400pt;}
.y58{bottom:964.219200pt;}
.y34{bottom:975.657200pt;}
.y87{bottom:975.726933pt;}
.ycf{bottom:975.727067pt;}
.ye9{bottom:981.001733pt;}
.y79{bottom:993.386533pt;}
.y33{bottom:998.323867pt;}
.ya4{bottom:998.388267pt;}
.y86{bottom:998.393600pt;}
.yce{bottom:998.393733pt;}
.ye8{bottom:1000.996067pt;}
.ye7{bottom:1020.990400pt;}
.y32{bottom:1020.990533pt;}
.y85{bottom:1021.058267pt;}
.ya3{bottom:1021.060267pt;}
.ycd{bottom:1021.060400pt;}
.y1c{bottom:1062.460933pt;}
.h19{height:29.822917pt;}
.h8{height:40.289333pt;}
.hf{height:41.800000pt;}
.h17{height:42.604167pt;}
.h9{height:43.941333pt;}
.hd{height:44.308333pt;}
.h13{height:44.316333pt;}
.h15{height:44.329667pt;}
.h16{height:44.351000pt;}
.h5{height:44.521354pt;}
.hc{height:44.532821pt;}
.h6{height:44.574954pt;}
.he{height:45.066667pt;}
.hb{height:45.283333pt;}
.h10{height:45.304667pt;}
.h14{height:45.326000pt;}
.h18{height:46.018099pt;}
.ha{height:47.040960pt;}
.h7{height:49.514667pt;}
.h12{height:54.166667pt;}
.h11{height:56.269091pt;}
.h4{height:65.272145pt;}
.h3{height:83.888000pt;}
.h2{height:130.544291pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:27.764733pt;}
.x6{left:30.236267pt;}
.xa{left:37.782400pt;}
.x7{left:38.930400pt;}
.x9{left:41.704733pt;}
.x4{left:48.673867pt;}
.x1{left:60.478667pt;}
.x11{left:68.976400pt;}
.x2{left:95.433333pt;}
.x13{left:144.523067pt;}
.xc{left:151.181067pt;}
.x12{left:176.616400pt;}
.x14{left:186.280267pt;}
.xd{left:188.172533pt;}
.x5{left:194.834533pt;}
.x10{left:311.678800pt;}
.xe{left:401.652267pt;}
.xb{left:510.440400pt;}
.x3{left:530.721867pt;}
.xf{left:702.188267pt;}
}




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