
    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_346092a8ee1f128a2e4a4b78.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.722000;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_38649ba6337d470d698fdfa3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984000;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_0ecef30b71b33f2e05b09060.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.722000;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_8f48f285e75823dc7ea2f301.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972000;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;}
.m16{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);}
.m36{transform:matrix(0.247568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247568,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.247569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247569,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.248331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248331,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.248362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248362,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248410,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248415,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.248430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248430,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248512,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248607,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248672,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.248685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248685,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248758,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.248781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248781,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249053,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249107,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249153,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249347,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249397,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249903,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);}
.m19{transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.250164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250164,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250207,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250232,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250343,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250413,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250427,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250781,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250842,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.250939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250939,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.251017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251017,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251147,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251263,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251310,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251343,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.251543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251543,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.251578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251578,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251658,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.251663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251663,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251692,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.251840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251840,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.251953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251953,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.252070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252070,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.252195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252195,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.252240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252240,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.252295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252295,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.252306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252306,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252360,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.252388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252388,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.030000px;}
.lsf{letter-spacing:0.054000px;}
.ls2{letter-spacing:0.060000px;}
.lsb{letter-spacing:0.090000px;}
.ls11{letter-spacing:0.108000px;}
.ls6{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.150000px;}
.ls13{letter-spacing:0.162000px;}
.ls5{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.210000px;}
.ls10{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.240000px;}
.ls12{letter-spacing:0.297000px;}
.ls9{letter-spacing:0.300000px;}
.lsd{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.420000px;}
.lse{letter-spacing:0.480000px;}
.ls8{letter-spacing:0.510000px;}
.ls14{letter-spacing:0.702000px;}
.ls0{letter-spacing:0.840000px;}
.ls16{letter-spacing:1.026000px;}
.ls15{letter-spacing:1.188000px;}
.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;}
}
.ws15{word-spacing:-3.000000px;}
.ws92{word-spacing:-2.940000px;}
.ws7{word-spacing:-2.880000px;}
.ws23{word-spacing:-2.820000px;}
.ws6c{word-spacing:-2.700000px;}
.ws7d{word-spacing:-2.640000px;}
.wsb{word-spacing:-2.580000px;}
.ws55{word-spacing:-2.520000px;}
.ws7a{word-spacing:-2.400000px;}
.ws39{word-spacing:-2.220000px;}
.ws1d{word-spacing:-2.040000px;}
.ws53{word-spacing:-1.980000px;}
.ws4a{word-spacing:-1.920000px;}
.wsb4{word-spacing:-1.890000px;}
.ws3b{word-spacing:-1.860000px;}
.wsb2{word-spacing:-1.782000px;}
.ws91{word-spacing:-1.680000px;}
.ws87{word-spacing:-1.560000px;}
.ws95{word-spacing:-1.512000px;}
.ws6{word-spacing:-1.500000px;}
.ws96{word-spacing:-1.458000px;}
.ws57{word-spacing:-1.380000px;}
.wsa6{word-spacing:-1.350000px;}
.ws56{word-spacing:-1.260000px;}
.ws22{word-spacing:-1.140000px;}
.ws9a{word-spacing:-1.080000px;}
.ws80{word-spacing:-1.020000px;}
.ws4e{word-spacing:-0.960000px;}
.wsb6{word-spacing:-0.918000px;}
.ws33{word-spacing:-0.840000px;}
.ws8e{word-spacing:-0.780000px;}
.ws49{word-spacing:-0.720000px;}
.ws90{word-spacing:-0.660000px;}
.ws4{word-spacing:-0.600000px;}
.ws37{word-spacing:-0.540000px;}
.ws66{word-spacing:-0.480000px;}
.ws48{word-spacing:-0.300000px;}
.ws51{word-spacing:-0.180000px;}
.ws0{word-spacing:0.000000px;}
.ws58{word-spacing:0.060000px;}
.ws34{word-spacing:0.120000px;}
.ws81{word-spacing:0.180000px;}
.ws79{word-spacing:0.240000px;}
.ws16{word-spacing:0.300000px;}
.ws97{word-spacing:0.324000px;}
.ws5a{word-spacing:0.360000px;}
.wsb1{word-spacing:0.432000px;}
.ws2{word-spacing:0.480000px;}
.ws5{word-spacing:0.540000px;}
.ws31{word-spacing:0.660000px;}
.wsaf{word-spacing:0.702000px;}
.ws52{word-spacing:0.720000px;}
.ws72{word-spacing:0.900000px;}
.wsaa{word-spacing:0.918000px;}
.wse{word-spacing:0.960000px;}
.ws63{word-spacing:1.020000px;}
.wsa2{word-spacing:1.026000px;}
.ws11{word-spacing:1.080000px;}
.ws9d{word-spacing:1.134000px;}
.ws7f{word-spacing:1.140000px;}
.wsb5{word-spacing:1.188000px;}
.ws8b{word-spacing:1.260000px;}
.ws1e{word-spacing:1.320000px;}
.ws3f{word-spacing:1.380000px;}
.ws84{word-spacing:1.440000px;}
.ws6a{word-spacing:1.500000px;}
.ws9e{word-spacing:1.566000px;}
.wsb7{word-spacing:1.674000px;}
.ws61{word-spacing:1.680000px;}
.ws2d{word-spacing:1.740000px;}
.ws82{word-spacing:1.800000px;}
.ws38{word-spacing:1.860000px;}
.ws6e{word-spacing:1.920000px;}
.ws93{word-spacing:1.980000px;}
.ws17{word-spacing:2.040000px;}
.ws4f{word-spacing:2.160000px;}
.ws3e{word-spacing:2.220000px;}
.ws6d{word-spacing:2.280000px;}
.wsa5{word-spacing:2.322000px;}
.wsd{word-spacing:2.340000px;}
.ws9c{word-spacing:2.430000px;}
.ws13{word-spacing:2.460000px;}
.ws8f{word-spacing:2.520000px;}
.ws78{word-spacing:2.580000px;}
.ws76{word-spacing:2.640000px;}
.wsa1{word-spacing:2.646000px;}
.ws26{word-spacing:2.700000px;}
.ws59{word-spacing:2.760000px;}
.ws47{word-spacing:2.820000px;}
.ws4b{word-spacing:2.880000px;}
.ws9b{word-spacing:2.970000px;}
.ws41{word-spacing:3.000000px;}
.ws25{word-spacing:3.060000px;}
.wsa9{word-spacing:3.078000px;}
.ws14{word-spacing:3.120000px;}
.ws4d{word-spacing:3.180000px;}
.wsa7{word-spacing:3.294000px;}
.ws35{word-spacing:3.300000px;}
.ws45{word-spacing:3.360000px;}
.wsa{word-spacing:3.420000px;}
.ws7c{word-spacing:3.480000px;}
.wsae{word-spacing:3.510000px;}
.ws70{word-spacing:3.540000px;}
.ws9{word-spacing:3.780000px;}
.ws73{word-spacing:3.900000px;}
.ws5f{word-spacing:3.960000px;}
.ws74{word-spacing:4.020000px;}
.ws83{word-spacing:4.080000px;}
.wsb3{word-spacing:4.104000px;}
.ws77{word-spacing:4.140000px;}
.ws85{word-spacing:4.200000px;}
.ws8c{word-spacing:4.260000px;}
.ws8{word-spacing:4.320000px;}
.ws65{word-spacing:4.380000px;}
.ws24{word-spacing:4.440000px;}
.wsa0{word-spacing:4.482000px;}
.ws2f{word-spacing:4.500000px;}
.ws64{word-spacing:4.560000px;}
.ws28{word-spacing:4.620000px;}
.ws94{word-spacing:4.644000px;}
.ws43{word-spacing:4.680000px;}
.wsab{word-spacing:4.698000px;}
.ws62{word-spacing:4.860000px;}
.wsa8{word-spacing:4.914000px;}
.ws54{word-spacing:4.920000px;}
.ws21{word-spacing:4.980000px;}
.ws3d{word-spacing:5.160000px;}
.wsc{word-spacing:5.220000px;}
.ws7e{word-spacing:5.280000px;}
.ws10{word-spacing:5.340000px;}
.wsa3{word-spacing:5.508000px;}
.ws1f{word-spacing:5.520000px;}
.ws19{word-spacing:5.580000px;}
.ws2b{word-spacing:5.640000px;}
.ws60{word-spacing:5.700000px;}
.ws44{word-spacing:5.760000px;}
.wsf{word-spacing:5.820000px;}
.ws2e{word-spacing:5.880000px;}
.ws29{word-spacing:5.940000px;}
.ws18{word-spacing:6.060000px;}
.ws5b{word-spacing:6.120000px;}
.ws36{word-spacing:6.180000px;}
.ws99{word-spacing:6.210000px;}
.ws20{word-spacing:6.240000px;}
.ws8a{word-spacing:6.480000px;}
.ws8d{word-spacing:6.600000px;}
.ws98{word-spacing:6.696000px;}
.ws9f{word-spacing:6.750000px;}
.ws6b{word-spacing:6.780000px;}
.ws88{word-spacing:6.840000px;}
.ws75{word-spacing:6.900000px;}
.ws69{word-spacing:6.960000px;}
.ws3c{word-spacing:7.140000px;}
.ws3{word-spacing:7.200000px;}
.ws30{word-spacing:7.320000px;}
.ws27{word-spacing:7.440000px;}
.ws1{word-spacing:7.500000px;}
.ws68{word-spacing:7.560000px;}
.ws86{word-spacing:7.680000px;}
.ws89{word-spacing:7.860000px;}
.ws7b{word-spacing:8.040000px;}
.ws5e{word-spacing:8.100000px;}
.ws5c{word-spacing:8.280000px;}
.ws46{word-spacing:8.640000px;}
.wsb0{word-spacing:8.802000px;}
.ws2a{word-spacing:9.420000px;}
.ws6f{word-spacing:10.560000px;}
.ws4c{word-spacing:10.620000px;}
.wsac{word-spacing:10.854000px;}
.ws71{word-spacing:11.220000px;}
.ws1c{word-spacing:11.298000px;}
.wsa4{word-spacing:11.340000px;}
.ws3a{word-spacing:11.820000px;}
.ws2c{word-spacing:12.180000px;}
.ws12{word-spacing:12.540000px;}
.ws1b{word-spacing:12.852000px;}
.ws32{word-spacing:13.320000px;}
.wsad{word-spacing:14.796000px;}
.ws40{word-spacing:15.480000px;}
.ws5d{word-spacing:19.140000px;}
.ws50{word-spacing:19.320000px;}
.ws42{word-spacing:20.460000px;}
.ws67{word-spacing:22.980000px;}
.wsb8{word-spacing:36.288000px;}
.ws1a{word-spacing:41.160000px;}
.wsba{word-spacing:51.570000px;}
.wsb9{word-spacing:60.264000px;}
._1{margin-left:-15.180000px;}
._8{margin-left:-12.540000px;}
._5{margin-left:-8.111400px;}
._7{margin-left:-7.031400px;}
._3{margin-left:-5.280000px;}
._6{margin-left:-4.200000px;}
._0{margin-left:-2.730600px;}
._2{margin-left:-1.080000px;}
._4{width:1.560000px;}
._9{width:2.911200px;}
.fc1{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:42.000000px;}
.fs0{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:36.996600px;}
.y3a{bottom:72.992100px;}
.y29{bottom:75.065100px;}
.y28{bottom:87.812100px;}
.y99{bottom:90.186000px;}
.y71{bottom:90.924300px;}
.y39{bottom:90.992100px;}
.y27{bottom:100.559100px;}
.y98{bottom:105.184500px;}
.y70{bottom:105.922800px;}
.y38{bottom:108.992100px;}
.y26{bottom:113.306100px;}
.y97{bottom:120.187500px;}
.y6f{bottom:120.921300px;}
.y37{bottom:126.992100px;}
.y96{bottom:135.186000px;}
.y6e{bottom:135.919800px;}
.y36{bottom:144.992100px;}
.y95{bottom:150.184500px;}
.y6d{bottom:150.918300px;}
.y35{bottom:162.992100px;}
.y25{bottom:162.992250px;}
.y94{bottom:165.195000px;}
.y6c{bottom:165.918300px;}
.y93{bottom:180.193500px;}
.y6b{bottom:180.919800px;}
.y34{bottom:180.992100px;}
.y24{bottom:180.992250px;}
.y92{bottom:195.192000px;}
.y6a{bottom:195.918300px;}
.y33{bottom:198.992100px;}
.y23{bottom:198.992250px;}
.y91{bottom:210.190500px;}
.y69{bottom:210.918300px;}
.y32{bottom:216.992100px;}
.y22{bottom:216.992250px;}
.y90{bottom:225.189000px;}
.y68{bottom:225.919800px;}
.y31{bottom:234.992100px;}
.y21{bottom:234.992250px;}
.y8f{bottom:240.187500px;}
.y67{bottom:240.918300px;}
.y30{bottom:252.992100px;}
.y20{bottom:252.992250px;}
.y8e{bottom:255.186000px;}
.y66{bottom:255.918300px;}
.y8d{bottom:270.184500px;}
.y65{bottom:270.918300px;}
.y2f{bottom:270.992100px;}
.y1f{bottom:270.992250px;}
.y8c{bottom:285.184500px;}
.y64{bottom:285.918300px;}
.y2e{bottom:288.992100px;}
.y1e{bottom:288.992250px;}
.y8b{bottom:300.193500px;}
.y63{bottom:300.919800px;}
.y2d{bottom:306.992100px;}
.y1d{bottom:306.992250px;}
.y8a{bottom:315.192000px;}
.y62{bottom:315.918300px;}
.y2c{bottom:324.992100px;}
.y1c{bottom:324.992250px;}
.y89{bottom:330.190500px;}
.y61{bottom:330.918300px;}
.y2b{bottom:342.992100px;}
.y1b{bottom:342.992250px;}
.y88{bottom:345.189000px;}
.y60{bottom:345.921300px;}
.y87{bottom:360.187500px;}
.y5f{bottom:360.919800px;}
.y2a{bottom:360.992100px;}
.y1a{bottom:360.992250px;}
.y86{bottom:375.186000px;}
.y5e{bottom:375.918300px;}
.y19{bottom:378.992100px;}
.y85{bottom:390.184500px;}
.y5d{bottom:390.918300px;}
.y18{bottom:396.992100px;}
.y84{bottom:405.184500px;}
.y5c{bottom:405.919800px;}
.y17{bottom:414.992100px;}
.y83{bottom:420.187500px;}
.y5b{bottom:420.918300px;}
.y16{bottom:432.992100px;}
.y82{bottom:435.186000px;}
.y5a{bottom:435.918300px;}
.y81{bottom:450.184500px;}
.y59{bottom:450.928800px;}
.y15{bottom:450.992100px;}
.y80{bottom:465.184500px;}
.y58{bottom:465.927300px;}
.y14{bottom:468.992100px;}
.y7f{bottom:480.184500px;}
.y57{bottom:480.925800px;}
.y13{bottom:486.992100px;}
.y7e{bottom:495.189000px;}
.y56{bottom:495.924300px;}
.y12{bottom:504.992100px;}
.y7d{bottom:510.187500px;}
.y55{bottom:510.922800px;}
.y11{bottom:522.992100px;}
.y7c{bottom:525.186000px;}
.y54{bottom:525.921300px;}
.y7b{bottom:540.184500px;}
.y53{bottom:540.919800px;}
.y10{bottom:540.992100px;}
.y7a{bottom:555.184500px;}
.y52{bottom:555.918300px;}
.yf{bottom:558.992100px;}
.y79{bottom:570.186000px;}
.y51{bottom:570.918300px;}
.ye{bottom:576.992100px;}
.y78{bottom:585.184500px;}
.y50{bottom:585.924300px;}
.yd{bottom:594.992100px;}
.y77{bottom:600.186000px;}
.y4f{bottom:600.922800px;}
.yc{bottom:612.992100px;}
.y76{bottom:615.184500px;}
.y4e{bottom:615.921300px;}
.y75{bottom:630.195300px;}
.y4d{bottom:630.919800px;}
.yb{bottom:630.992100px;}
.y74{bottom:645.193800px;}
.y4c{bottom:645.918300px;}
.ya{bottom:648.992100px;}
.y73{bottom:660.192300px;}
.y4b{bottom:660.918300px;}
.y9{bottom:666.992100px;}
.y72{bottom:675.190800px;}
.y4a{bottom:675.919800px;}
.y8{bottom:684.992100px;}
.y49{bottom:690.918300px;}
.y7{bottom:702.992100px;}
.y6{bottom:720.992100px;}
.y5{bottom:738.992100px;}
.y48{bottom:756.992100px;}
.y47{bottom:774.992100px;}
.y46{bottom:792.992100px;}
.y45{bottom:810.992100px;}
.y4{bottom:811.067400px;}
.y44{bottom:828.992100px;}
.y3{bottom:845.074200px;}
.y43{bottom:846.992100px;}
.y42{bottom:864.992100px;}
.y2{bottom:882.575700px;}
.y41{bottom:882.992100px;}
.y40{bottom:900.992100px;}
.y3f{bottom:918.992100px;}
.y3e{bottom:936.992100px;}
.y3d{bottom:954.992100px;}
.y3c{bottom:972.992100px;}
.y3b{bottom:990.992100px;}
.h5{height:31.500000px;}
.h2{height:36.210000px;}
.h6{height:38.340000px;}
.h7{height:38.610000px;}
.h4{height:42.900000px;}
.h3{height:98.670000px;}
.h1{height:1062.750000px;}
.h0{height:1062.991500px;}
.w0{width:748.347000px;}
.w1{width:748.500000px;}
.x0{left:0.000000px;}
.x1{left:72.283500px;}
.x2{left:85.033500px;}
.x6{left:97.795350px;}
.x9{left:106.299150px;}
.x8{left:352.382100px;}
.x3{left:378.425250px;}
.x4{left:391.181100px;}
.x7{left:403.937100px;}
.xa{left:412.438650px;}
.x5{left:430.862850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.026667pt;}
.lsf{letter-spacing:0.048000pt;}
.ls2{letter-spacing:0.053333pt;}
.lsb{letter-spacing:0.080000pt;}
.ls11{letter-spacing:0.096000pt;}
.ls6{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.133333pt;}
.ls13{letter-spacing:0.144000pt;}
.ls5{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.186667pt;}
.ls10{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.213333pt;}
.ls12{letter-spacing:0.264000pt;}
.ls9{letter-spacing:0.266667pt;}
.lsd{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.373333pt;}
.lse{letter-spacing:0.426667pt;}
.ls8{letter-spacing:0.453333pt;}
.ls14{letter-spacing:0.624000pt;}
.ls0{letter-spacing:0.746667pt;}
.ls16{letter-spacing:0.912000pt;}
.ls15{letter-spacing:1.056000pt;}
.ws15{word-spacing:-2.666667pt;}
.ws92{word-spacing:-2.613333pt;}
.ws7{word-spacing:-2.560000pt;}
.ws23{word-spacing:-2.506667pt;}
.ws6c{word-spacing:-2.400000pt;}
.ws7d{word-spacing:-2.346667pt;}
.wsb{word-spacing:-2.293333pt;}
.ws55{word-spacing:-2.240000pt;}
.ws7a{word-spacing:-2.133333pt;}
.ws39{word-spacing:-1.973333pt;}
.ws1d{word-spacing:-1.813333pt;}
.ws53{word-spacing:-1.760000pt;}
.ws4a{word-spacing:-1.706667pt;}
.wsb4{word-spacing:-1.680000pt;}
.ws3b{word-spacing:-1.653333pt;}
.wsb2{word-spacing:-1.584000pt;}
.ws91{word-spacing:-1.493333pt;}
.ws87{word-spacing:-1.386667pt;}
.ws95{word-spacing:-1.344000pt;}
.ws6{word-spacing:-1.333333pt;}
.ws96{word-spacing:-1.296000pt;}
.ws57{word-spacing:-1.226667pt;}
.wsa6{word-spacing:-1.200000pt;}
.ws56{word-spacing:-1.120000pt;}
.ws22{word-spacing:-1.013333pt;}
.ws9a{word-spacing:-0.960000pt;}
.ws80{word-spacing:-0.906667pt;}
.ws4e{word-spacing:-0.853333pt;}
.wsb6{word-spacing:-0.816000pt;}
.ws33{word-spacing:-0.746667pt;}
.ws8e{word-spacing:-0.693333pt;}
.ws49{word-spacing:-0.640000pt;}
.ws90{word-spacing:-0.586667pt;}
.ws4{word-spacing:-0.533333pt;}
.ws37{word-spacing:-0.480000pt;}
.ws66{word-spacing:-0.426667pt;}
.ws48{word-spacing:-0.266667pt;}
.ws51{word-spacing:-0.160000pt;}
.ws0{word-spacing:0.000000pt;}
.ws58{word-spacing:0.053333pt;}
.ws34{word-spacing:0.106667pt;}
.ws81{word-spacing:0.160000pt;}
.ws79{word-spacing:0.213333pt;}
.ws16{word-spacing:0.266667pt;}
.ws97{word-spacing:0.288000pt;}
.ws5a{word-spacing:0.320000pt;}
.wsb1{word-spacing:0.384000pt;}
.ws2{word-spacing:0.426667pt;}
.ws5{word-spacing:0.480000pt;}
.ws31{word-spacing:0.586667pt;}
.wsaf{word-spacing:0.624000pt;}
.ws52{word-spacing:0.640000pt;}
.ws72{word-spacing:0.800000pt;}
.wsaa{word-spacing:0.816000pt;}
.wse{word-spacing:0.853333pt;}
.ws63{word-spacing:0.906667pt;}
.wsa2{word-spacing:0.912000pt;}
.ws11{word-spacing:0.960000pt;}
.ws9d{word-spacing:1.008000pt;}
.ws7f{word-spacing:1.013333pt;}
.wsb5{word-spacing:1.056000pt;}
.ws8b{word-spacing:1.120000pt;}
.ws1e{word-spacing:1.173333pt;}
.ws3f{word-spacing:1.226667pt;}
.ws84{word-spacing:1.280000pt;}
.ws6a{word-spacing:1.333333pt;}
.ws9e{word-spacing:1.392000pt;}
.wsb7{word-spacing:1.488000pt;}
.ws61{word-spacing:1.493333pt;}
.ws2d{word-spacing:1.546667pt;}
.ws82{word-spacing:1.600000pt;}
.ws38{word-spacing:1.653333pt;}
.ws6e{word-spacing:1.706667pt;}
.ws93{word-spacing:1.760000pt;}
.ws17{word-spacing:1.813333pt;}
.ws4f{word-spacing:1.920000pt;}
.ws3e{word-spacing:1.973333pt;}
.ws6d{word-spacing:2.026667pt;}
.wsa5{word-spacing:2.064000pt;}
.wsd{word-spacing:2.080000pt;}
.ws9c{word-spacing:2.160000pt;}
.ws13{word-spacing:2.186667pt;}
.ws8f{word-spacing:2.240000pt;}
.ws78{word-spacing:2.293333pt;}
.ws76{word-spacing:2.346667pt;}
.wsa1{word-spacing:2.352000pt;}
.ws26{word-spacing:2.400000pt;}
.ws59{word-spacing:2.453333pt;}
.ws47{word-spacing:2.506667pt;}
.ws4b{word-spacing:2.560000pt;}
.ws9b{word-spacing:2.640000pt;}
.ws41{word-spacing:2.666667pt;}
.ws25{word-spacing:2.720000pt;}
.wsa9{word-spacing:2.736000pt;}
.ws14{word-spacing:2.773333pt;}
.ws4d{word-spacing:2.826667pt;}
.wsa7{word-spacing:2.928000pt;}
.ws35{word-spacing:2.933333pt;}
.ws45{word-spacing:2.986667pt;}
.wsa{word-spacing:3.040000pt;}
.ws7c{word-spacing:3.093333pt;}
.wsae{word-spacing:3.120000pt;}
.ws70{word-spacing:3.146667pt;}
.ws9{word-spacing:3.360000pt;}
.ws73{word-spacing:3.466667pt;}
.ws5f{word-spacing:3.520000pt;}
.ws74{word-spacing:3.573333pt;}
.ws83{word-spacing:3.626667pt;}
.wsb3{word-spacing:3.648000pt;}
.ws77{word-spacing:3.680000pt;}
.ws85{word-spacing:3.733333pt;}
.ws8c{word-spacing:3.786667pt;}
.ws8{word-spacing:3.840000pt;}
.ws65{word-spacing:3.893333pt;}
.ws24{word-spacing:3.946667pt;}
.wsa0{word-spacing:3.984000pt;}
.ws2f{word-spacing:4.000000pt;}
.ws64{word-spacing:4.053333pt;}
.ws28{word-spacing:4.106667pt;}
.ws94{word-spacing:4.128000pt;}
.ws43{word-spacing:4.160000pt;}
.wsab{word-spacing:4.176000pt;}
.ws62{word-spacing:4.320000pt;}
.wsa8{word-spacing:4.368000pt;}
.ws54{word-spacing:4.373333pt;}
.ws21{word-spacing:4.426667pt;}
.ws3d{word-spacing:4.586667pt;}
.wsc{word-spacing:4.640000pt;}
.ws7e{word-spacing:4.693333pt;}
.ws10{word-spacing:4.746667pt;}
.wsa3{word-spacing:4.896000pt;}
.ws1f{word-spacing:4.906667pt;}
.ws19{word-spacing:4.960000pt;}
.ws2b{word-spacing:5.013333pt;}
.ws60{word-spacing:5.066667pt;}
.ws44{word-spacing:5.120000pt;}
.wsf{word-spacing:5.173333pt;}
.ws2e{word-spacing:5.226667pt;}
.ws29{word-spacing:5.280000pt;}
.ws18{word-spacing:5.386667pt;}
.ws5b{word-spacing:5.440000pt;}
.ws36{word-spacing:5.493333pt;}
.ws99{word-spacing:5.520000pt;}
.ws20{word-spacing:5.546667pt;}
.ws8a{word-spacing:5.760000pt;}
.ws8d{word-spacing:5.866667pt;}
.ws98{word-spacing:5.952000pt;}
.ws9f{word-spacing:6.000000pt;}
.ws6b{word-spacing:6.026667pt;}
.ws88{word-spacing:6.080000pt;}
.ws75{word-spacing:6.133333pt;}
.ws69{word-spacing:6.186667pt;}
.ws3c{word-spacing:6.346667pt;}
.ws3{word-spacing:6.400000pt;}
.ws30{word-spacing:6.506667pt;}
.ws27{word-spacing:6.613333pt;}
.ws1{word-spacing:6.666667pt;}
.ws68{word-spacing:6.720000pt;}
.ws86{word-spacing:6.826667pt;}
.ws89{word-spacing:6.986667pt;}
.ws7b{word-spacing:7.146667pt;}
.ws5e{word-spacing:7.200000pt;}
.ws5c{word-spacing:7.360000pt;}
.ws46{word-spacing:7.680000pt;}
.wsb0{word-spacing:7.824000pt;}
.ws2a{word-spacing:8.373333pt;}
.ws6f{word-spacing:9.386667pt;}
.ws4c{word-spacing:9.440000pt;}
.wsac{word-spacing:9.648000pt;}
.ws71{word-spacing:9.973333pt;}
.ws1c{word-spacing:10.042667pt;}
.wsa4{word-spacing:10.080000pt;}
.ws3a{word-spacing:10.506667pt;}
.ws2c{word-spacing:10.826667pt;}
.ws12{word-spacing:11.146667pt;}
.ws1b{word-spacing:11.424000pt;}
.ws32{word-spacing:11.840000pt;}
.wsad{word-spacing:13.152000pt;}
.ws40{word-spacing:13.760000pt;}
.ws5d{word-spacing:17.013333pt;}
.ws50{word-spacing:17.173333pt;}
.ws42{word-spacing:18.186667pt;}
.ws67{word-spacing:20.426667pt;}
.wsb8{word-spacing:32.256000pt;}
.ws1a{word-spacing:36.586667pt;}
.wsba{word-spacing:45.840000pt;}
.wsb9{word-spacing:53.568000pt;}
._1{margin-left:-13.493333pt;}
._8{margin-left:-11.146667pt;}
._5{margin-left:-7.210133pt;}
._7{margin-left:-6.250133pt;}
._3{margin-left:-4.693333pt;}
._6{margin-left:-3.733333pt;}
._0{margin-left:-2.427200pt;}
._2{margin-left:-0.960000pt;}
._4{width:1.386667pt;}
._9{width:2.587733pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:32.885867pt;}
.y3a{bottom:64.881867pt;}
.y29{bottom:66.724533pt;}
.y28{bottom:78.055200pt;}
.y99{bottom:80.165333pt;}
.y71{bottom:80.821600pt;}
.y39{bottom:80.881867pt;}
.y27{bottom:89.385867pt;}
.y98{bottom:93.497333pt;}
.y70{bottom:94.153600pt;}
.y38{bottom:96.881867pt;}
.y26{bottom:100.716533pt;}
.y97{bottom:106.833333pt;}
.y6f{bottom:107.485600pt;}
.y37{bottom:112.881867pt;}
.y96{bottom:120.165333pt;}
.y6e{bottom:120.817600pt;}
.y36{bottom:128.881867pt;}
.y95{bottom:133.497333pt;}
.y6d{bottom:134.149600pt;}
.y35{bottom:144.881867pt;}
.y25{bottom:144.882000pt;}
.y94{bottom:146.840000pt;}
.y6c{bottom:147.482933pt;}
.y93{bottom:160.172000pt;}
.y6b{bottom:160.817600pt;}
.y34{bottom:160.881867pt;}
.y24{bottom:160.882000pt;}
.y92{bottom:173.504000pt;}
.y6a{bottom:174.149600pt;}
.y33{bottom:176.881867pt;}
.y23{bottom:176.882000pt;}
.y91{bottom:186.836000pt;}
.y69{bottom:187.482933pt;}
.y32{bottom:192.881867pt;}
.y22{bottom:192.882000pt;}
.y90{bottom:200.168000pt;}
.y68{bottom:200.817600pt;}
.y31{bottom:208.881867pt;}
.y21{bottom:208.882000pt;}
.y8f{bottom:213.500000pt;}
.y67{bottom:214.149600pt;}
.y30{bottom:224.881867pt;}
.y20{bottom:224.882000pt;}
.y8e{bottom:226.832000pt;}
.y66{bottom:227.482933pt;}
.y8d{bottom:240.164000pt;}
.y65{bottom:240.816267pt;}
.y2f{bottom:240.881867pt;}
.y1f{bottom:240.882000pt;}
.y8c{bottom:253.497333pt;}
.y64{bottom:254.149600pt;}
.y2e{bottom:256.881867pt;}
.y1e{bottom:256.882000pt;}
.y8b{bottom:266.838667pt;}
.y63{bottom:267.484267pt;}
.y2d{bottom:272.881867pt;}
.y1d{bottom:272.882000pt;}
.y8a{bottom:280.170667pt;}
.y62{bottom:280.816267pt;}
.y2c{bottom:288.881867pt;}
.y1c{bottom:288.882000pt;}
.y89{bottom:293.502667pt;}
.y61{bottom:294.149600pt;}
.y2b{bottom:304.881867pt;}
.y1b{bottom:304.882000pt;}
.y88{bottom:306.834667pt;}
.y60{bottom:307.485600pt;}
.y87{bottom:320.166667pt;}
.y5f{bottom:320.817600pt;}
.y2a{bottom:320.881867pt;}
.y1a{bottom:320.882000pt;}
.y86{bottom:333.498667pt;}
.y5e{bottom:334.149600pt;}
.y19{bottom:336.881867pt;}
.y85{bottom:346.830667pt;}
.y5d{bottom:347.482933pt;}
.y18{bottom:352.881867pt;}
.y84{bottom:360.164000pt;}
.y5c{bottom:360.817600pt;}
.y17{bottom:368.881867pt;}
.y83{bottom:373.500000pt;}
.y5b{bottom:374.149600pt;}
.y16{bottom:384.881867pt;}
.y82{bottom:386.832000pt;}
.y5a{bottom:387.482933pt;}
.y81{bottom:400.164000pt;}
.y59{bottom:400.825600pt;}
.y15{bottom:400.881867pt;}
.y80{bottom:413.497333pt;}
.y58{bottom:414.157600pt;}
.y14{bottom:416.881867pt;}
.y7f{bottom:426.830667pt;}
.y57{bottom:427.489600pt;}
.y13{bottom:432.881867pt;}
.y7e{bottom:440.168000pt;}
.y56{bottom:440.821600pt;}
.y12{bottom:448.881867pt;}
.y7d{bottom:453.500000pt;}
.y55{bottom:454.153600pt;}
.y11{bottom:464.881867pt;}
.y7c{bottom:466.832000pt;}
.y54{bottom:467.485600pt;}
.y7b{bottom:480.164000pt;}
.y53{bottom:480.817600pt;}
.y10{bottom:480.881867pt;}
.y7a{bottom:493.497333pt;}
.y52{bottom:494.149600pt;}
.yf{bottom:496.881867pt;}
.y79{bottom:506.832000pt;}
.y51{bottom:507.482933pt;}
.ye{bottom:512.881867pt;}
.y78{bottom:520.164000pt;}
.y50{bottom:520.821600pt;}
.yd{bottom:528.881867pt;}
.y77{bottom:533.498667pt;}
.y4f{bottom:534.153600pt;}
.yc{bottom:544.881867pt;}
.y76{bottom:546.830667pt;}
.y4e{bottom:547.485600pt;}
.y75{bottom:560.173600pt;}
.y4d{bottom:560.817600pt;}
.yb{bottom:560.881867pt;}
.y74{bottom:573.505600pt;}
.y4c{bottom:574.149600pt;}
.ya{bottom:576.881867pt;}
.y73{bottom:586.837600pt;}
.y4b{bottom:587.482933pt;}
.y9{bottom:592.881867pt;}
.y72{bottom:600.169600pt;}
.y4a{bottom:600.817600pt;}
.y8{bottom:608.881867pt;}
.y49{bottom:614.149600pt;}
.y7{bottom:624.881867pt;}
.y6{bottom:640.881867pt;}
.y5{bottom:656.881867pt;}
.y48{bottom:672.881867pt;}
.y47{bottom:688.881867pt;}
.y46{bottom:704.881867pt;}
.y45{bottom:720.881867pt;}
.y4{bottom:720.948800pt;}
.y44{bottom:736.881867pt;}
.y3{bottom:751.177067pt;}
.y43{bottom:752.881867pt;}
.y42{bottom:768.881867pt;}
.y2{bottom:784.511733pt;}
.y41{bottom:784.881867pt;}
.y40{bottom:800.881867pt;}
.y3f{bottom:816.881867pt;}
.y3e{bottom:832.881867pt;}
.y3d{bottom:848.881867pt;}
.y3c{bottom:864.881867pt;}
.y3b{bottom:880.881867pt;}
.h5{height:28.000000pt;}
.h2{height:32.186667pt;}
.h6{height:34.080000pt;}
.h7{height:34.320000pt;}
.h4{height:38.133333pt;}
.h3{height:87.706667pt;}
.h1{height:944.666667pt;}
.h0{height:944.881333pt;}
.w0{width:665.197333pt;}
.w1{width:665.333333pt;}
.x0{left:0.000000pt;}
.x1{left:64.252000pt;}
.x2{left:75.585333pt;}
.x6{left:86.929200pt;}
.x9{left:94.488133pt;}
.x8{left:313.228533pt;}
.x3{left:336.378000pt;}
.x4{left:347.716533pt;}
.x7{left:359.055200pt;}
.xa{left:366.612133pt;}
.x5{left:382.989200pt;}
}




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