
    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_12bb0a27875194c5799dc331.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6933cb110223b2b56ef5889f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_26720ad90f0dc9bfa1ab5a29.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_dd8005c6d4c030dde65aa201.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6238f12818fea2f618925764.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5a63145bc9414fb3a520d1ae.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fb7a9c3b1795add23928bfc1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_982aa952858668286d54666e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m13{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(1.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.187500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(2.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.595000,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(2.750000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.750000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.750000,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(3.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.187500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(4.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.500000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-12.000000px;}
.v3{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.000000px;}
.v1{vertical-align:18.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:6.000000px;}
.ls7{letter-spacing:6.720000px;}
.ls2{letter-spacing:9.000000px;}
.ls0{letter-spacing:11.400000px;}
.ls5{letter-spacing:15.240000px;}
.ls6{letter-spacing:18.240000px;}
.ls1{letter-spacing:189.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1b{word-spacing:-42.240000px;}
.ws21{word-spacing:-30.720000px;}
.ws0{word-spacing:-27.000000px;}
.ws1d{word-spacing:-24.000000px;}
.ws3{word-spacing:-15.600000px;}
.ws1{word-spacing:-15.000000px;}
.wsb{word-spacing:-14.607610px;}
.wsf{word-spacing:-14.000000px;}
.ws16{word-spacing:-13.561404px;}
.wse{word-spacing:-12.823716px;}
.ws1c{word-spacing:-12.725898px;}
.ws10{word-spacing:-12.000000px;}
.ws5{word-spacing:-11.760000px;}
.ws1e{word-spacing:-11.520000px;}
.ws20{word-spacing:-10.560000px;}
.ws18{word-spacing:-8.386900px;}
.ws8{word-spacing:-8.189036px;}
.ws19{word-spacing:-7.920000px;}
.wsc{word-spacing:-6.936957px;}
.ws22{word-spacing:-6.720000px;}
.ws17{word-spacing:-6.000000px;}
.ws1f{word-spacing:-5.760000px;}
.ws25{word-spacing:-3.950085px;}
.ws24{word-spacing:-3.520661px;}
.ws6{word-spacing:-3.517166px;}
.ws9{word-spacing:-3.084246px;}
.ws23{word-spacing:-1.920000px;}
.wsa{word-spacing:0.000000px;}
.ws7{word-spacing:1.785488px;}
.ws2{word-spacing:4.227273px;}
.ws11{word-spacing:6.000000px;}
.ws15{word-spacing:9.000000px;}
.ws14{word-spacing:12.000000px;}
.ws12{word-spacing:15.000000px;}
.ws13{word-spacing:18.000000px;}
.ws4{word-spacing:45.000000px;}
.wsd{word-spacing:66.000000px;}
.ws1a{word-spacing:90.000000px;}
._10{margin-left:-85.440000px;}
._16{margin-left:-34.803898px;}
._14{margin-left:-27.834320px;}
._12{margin-left:-24.284024px;}
._4{margin-left:-21.217179px;}
._13{margin-left:-18.498276px;}
._f{margin-left:-15.240000px;}
._6{margin-left:-10.696691px;}
._b{margin-left:-9.613920px;}
._2{margin-left:-7.800000px;}
._e{margin-left:-6.313609px;}
._8{margin-left:-3.960000px;}
._0{margin-left:-1.722949px;}
._1{width:2.736029px;}
._11{width:3.840000px;}
._a{width:6.000000px;}
._c{width:7.560000px;}
._9{width:9.000000px;}
._3{width:10.498791px;}
._d{width:39.000000px;}
._5{width:42.000000px;}
._15{width:48.000000px;}
._7{width:117.000000px;}
.fc0{color:transparent;}
.fs3{font-size:12.000000px;}
.fs1{font-size:30.000000px;}
.fs2{font-size:36.000000px;}
.fs6{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.y5d{bottom:-17.007900px;}
.y5c{bottom:-15.507900px;}
.y5e{bottom:-14.007900px;}
.y5f{bottom:-12.507900px;}
.y0{bottom:0.000000px;}
.yc9{bottom:18.992100px;}
.y37{bottom:20.492100px;}
.y35{bottom:31.996050px;}
.y36{bottom:33.496050px;}
.yec{bottom:36.496050px;}
.y31{bottom:48.496050px;}
.y32{bottom:49.996050px;}
.y33{bottom:51.496050px;}
.y34{bottom:52.996050px;}
.yc8{bottom:66.992100px;}
.yc7{bottom:68.492100px;}
.yeb{bottom:76.996050px;}
.y5a{bottom:81.992100px;}
.y94{bottom:82.996050px;}
.y5b{bottom:83.492100px;}
.y96{bottom:84.496050px;}
.y95{bottom:85.996050px;}
.yd0{bottom:89.492100px;}
.yc6{bottom:90.992100px;}
.y30{bottom:93.496050px;}
.y91{bottom:106.996050px;}
.y92{bottom:108.496050px;}
.y93{bottom:109.996050px;}
.ycf{bottom:113.492100px;}
.yc5{bottom:114.992100px;}
.y2d{bottom:115.996050px;}
.y2e{bottom:117.496050px;}
.y2f{bottom:118.996050px;}
.yce{bottom:135.992100px;}
.yc4{bottom:137.492100px;}
.y90{bottom:139.996050px;}
.y8e{bottom:153.496050px;}
.y8f{bottom:154.996050px;}
.ycd{bottom:158.492100px;}
.ye9{bottom:159.496050px;}
.yc3{bottom:159.992100px;}
.yea{bottom:160.996050px;}
.y2c{bottom:162.496050px;}
.y2b{bottom:163.996050px;}
.y8b{bottom:174.496050px;}
.y8c{bottom:175.996050px;}
.y59{bottom:176.492100px;}
.y8d{bottom:180.496050px;}
.yc1{bottom:191.492100px;}
.yc2{bottom:192.992100px;}
.y8a{bottom:207.496050px;}
.y29{bottom:208.996050px;}
.y2a{bottom:210.496050px;}
.y58{bottom:213.992100px;}
.ye8{bottom:214.996050px;}
.yc0{bottom:215.492100px;}
.y101{bottom:228.992100px;}
.y27{bottom:232.996050px;}
.y28{bottom:234.496050px;}
.y56{bottom:236.492100px;}
.y57{bottom:237.992100px;}
.y129{bottom:243.496050px;}
.y87{bottom:244.996050px;}
.y88{bottom:246.496050px;}
.y89{bottom:247.996050px;}
.ybf{bottom:252.992100px;}
.y127{bottom:258.496050px;}
.y128{bottom:259.996050px;}
.y54{bottom:260.492100px;}
.ye7{bottom:261.496050px;}
.y55{bottom:261.992100px;}
.y26{bottom:262.996050px;}
.y124{bottom:271.996050px;}
.y126{bottom:273.496050px;}
.y125{bottom:274.996050px;}
.ybe{bottom:275.492100px;}
.y85{bottom:276.496050px;}
.ybd{bottom:276.992100px;}
.y86{bottom:277.996050px;}
.y53{bottom:281.492100px;}
.ye6{bottom:282.496050px;}
.y50{bottom:282.992100px;}
.ye5{bottom:283.996050px;}
.y52{bottom:284.492100px;}
.ye4{bottom:285.496050px;}
.y51{bottom:285.992100px;}
.y123{bottom:297.496050px;}
.ybc{bottom:297.992100px;}
.y23{bottom:298.996050px;}
.ybb{bottom:299.492100px;}
.y24{bottom:301.996050px;}
.y100{bottom:305.492100px;}
.y83{bottom:306.496050px;}
.y4f{bottom:306.992100px;}
.y84{bottom:307.996050px;}
.y25{bottom:309.496050px;}
.y1f{bottom:312.496050px;}
.y122{bottom:313.996050px;}
.y21{bottom:315.496050px;}
.y22{bottom:316.996050px;}
.y20{bottom:319.996050px;}
.ycc{bottom:327.992100px;}
.ycb{bottom:329.492100px;}
.ye3{bottom:330.496050px;}
.yca{bottom:330.992100px;}
.ye2{bottom:331.996050px;}
.y121{bottom:334.996050px;}
.y81{bottom:337.996050px;}
.y82{bottom:339.496050px;}
.y4d{bottom:344.492100px;}
.y4e{bottom:345.992100px;}
.y120{bottom:351.496050px;}
.yfe{bottom:351.992100px;}
.ye1{bottom:352.996050px;}
.yff{bottom:353.492100px;}
.ye0{bottom:354.496050px;}
.yba{bottom:359.492100px;}
.yb9{bottom:360.992100px;}
.y1d{bottom:361.996050px;}
.y11f{bottom:366.496050px;}
.y4c{bottom:368.492100px;}
.y1e{bottom:369.496050px;}
.y80{bottom:370.996050px;}
.y19{bottom:375.496050px;}
.yfd{bottom:375.992100px;}
.y1b{bottom:376.996050px;}
.y1c{bottom:378.496050px;}
.y1a{bottom:382.996050px;}
.y11e{bottom:388.996050px;}
.y7d{bottom:397.996050px;}
.yb8{bottom:398.492100px;}
.y7e{bottom:399.496050px;}
.yb7{bottom:399.992100px;}
.y7f{bottom:400.996050px;}
.y11d{bottom:403.996050px;}
.y11c{bottom:405.496050px;}
.y4b{bottom:414.992100px;}
.yb6{bottom:420.992100px;}
.yb5{bottom:422.492100px;}
.y17{bottom:423.496050px;}
.yb4{bottom:423.992100px;}
.y18{bottom:424.996050px;}
.y11b{bottom:427.996050px;}
.ydf{bottom:429.496050px;}
.y7c{bottom:430.996050px;}
.y11a{bottom:442.996050px;}
.yb3{bottom:443.492100px;}
.yb2{bottom:444.992100px;}
.yb1{bottom:446.492100px;}
.y4a{bottom:452.492100px;}
.yde{bottom:460.996050px;}
.y119{bottom:465.496050px;}
.y7b{bottom:466.996050px;}
.yb0{bottom:467.492100px;}
.y79{bottom:468.496050px;}
.yaf{bottom:468.992100px;}
.y7a{bottom:469.996050px;}
.y49{bottom:476.492100px;}
.y117{bottom:480.496050px;}
.y118{bottom:481.996050px;}
.yf0{bottom:482.492100px;}
.y78{bottom:483.496050px;}
.yef{bottom:483.992100px;}
.y16{bottom:484.996050px;}
.y14{bottom:490.996050px;}
.yae{bottom:491.492100px;}
.ydc{bottom:492.496050px;}
.yad{bottom:492.992100px;}
.y15{bottom:493.996050px;}
.y116{bottom:495.496050px;}
.y115{bottom:496.996050px;}
.y74{bottom:498.496050px;}
.y75{bottom:499.996050px;}
.y76{bottom:501.496050px;}
.y77{bottom:502.996050px;}
.y48{bottom:513.992100px;}
.yac{bottom:515.492100px;}
.y114{bottom:519.496050px;}
.y113{bottom:520.996050px;}
.y72{bottom:522.496050px;}
.y73{bottom:523.996050px;}
.yfc{bottom:528.992100px;}
.yfb{bottom:530.492100px;}
.y112{bottom:534.496050px;}
.y111{bottom:535.996050px;}
.yab{bottom:536.492100px;}
.y47{bottom:537.992100px;}
.y13{bottom:538.996050px;}
.y70{bottom:544.996050px;}
.y71{bottom:546.496050px;}
.yfa{bottom:551.492100px;}
.yf9{bottom:552.992100px;}
.y107{bottom:558.496050px;}
.yaa{bottom:558.992100px;}
.ya9{bottom:560.492100px;}
.y11{bottom:561.496050px;}
.ya8{bottom:561.992100px;}
.y12{bottom:562.996050px;}
.y6f{bottom:568.996050px;}
.y106{bottom:573.496050px;}
.y45{bottom:575.492100px;}
.y46{bottom:576.992100px;}
.y10{bottom:580.996050px;}
.yf8{bottom:581.492100px;}
.ydb{bottom:582.496050px;}
.ya7{bottom:582.992100px;}
.yf{bottom:583.996050px;}
.ya6{bottom:584.492100px;}
.yd{bottom:585.496050px;}
.ye{bottom:586.996050px;}
.y110{bottom:595.996050px;}
.y10f{bottom:597.496050px;}
.yf7{bottom:605.492100px;}
.y6e{bottom:606.496050px;}
.yf6{bottom:606.992100px;}
.yc{bottom:609.496050px;}
.y10e{bottom:610.996050px;}
.y10d{bottom:612.496050px;}
.ya5{bottom:612.992100px;}
.ya4{bottom:614.492100px;}
.y44{bottom:621.992100px;}
.yda{bottom:622.996050px;}
.y10c{bottom:625.996050px;}
.y10b{bottom:627.496050px;}
.yf5{bottom:629.492100px;}
.y6c{bottom:636.496050px;}
.y6d{bottom:637.996050px;}
.yb{bottom:643.996050px;}
.y43{bottom:644.492100px;}
.ya{bottom:645.496050px;}
.ya3{bottom:645.992100px;}
.y105{bottom:649.996050px;}
.y104{bottom:651.496050px;}
.yf4{bottom:651.992100px;}
.yd8{bottom:660.496050px;}
.yd9{bottom:661.996050px;}
.y103{bottom:664.996050px;}
.y9{bottom:666.496050px;}
.y42{bottom:666.992100px;}
.y8{bottom:667.996050px;}
.ya2{bottom:671.492100px;}
.ya1{bottom:672.992100px;}
.ya0{bottom:674.492100px;}
.y6b{bottom:681.496050px;}
.y6a{bottom:682.996050px;}
.y10a{bottom:688.996050px;}
.y41{bottom:689.492100px;}
.y6{bottom:690.496050px;}
.y40{bottom:690.992100px;}
.yd7{bottom:693.496050px;}
.y9f{bottom:696.992100px;}
.y9e{bottom:698.492100px;}
.y9d{bottom:699.992100px;}
.y109{bottom:703.996050px;}
.y108{bottom:705.496050px;}
.yf3{bottom:711.992100px;}
.y68{bottom:712.996050px;}
.yf2{bottom:713.492100px;}
.y69{bottom:714.496050px;}
.yd6{bottom:715.996050px;}
.y9c{bottom:719.492100px;}
.y9b{bottom:720.992100px;}
.y9a{bottom:722.492100px;}
.y5{bottom:723.496050px;}
.y67{bottom:729.496050px;}
.y66{bottom:730.996050px;}
.yf1{bottom:735.992100px;}
.y65{bottom:736.996050px;}
.y64{bottom:738.496050px;}
.y3d{bottom:741.992100px;}
.y3e{bottom:743.492100px;}
.y3c{bottom:744.992100px;}
.y3f{bottom:746.492100px;}
.y102{bottom:756.496050px;}
.yd5{bottom:762.496050px;}
.y62{bottom:765.496050px;}
.y63{bottom:766.996050px;}
.yed{bottom:773.492100px;}
.y3{bottom:780.496050px;}
.y97{bottom:780.992100px;}
.y4{bottom:781.996050px;}
.y98{bottom:782.492100px;}
.yd4{bottom:783.496050px;}
.y99{bottom:783.992100px;}
.yd3{bottom:784.996050px;}
.y3b{bottom:789.992100px;}
.y60{bottom:790.996050px;}
.y3a{bottom:791.492100px;}
.y61{bottom:792.496050px;}
.y38{bottom:795.992100px;}
.y1{bottom:802.996050px;}
.y2{bottom:804.496050px;}
.yd2{bottom:807.496050px;}
.yd1{bottom:808.996050px;}
.y39{bottom:855.992100px;}
.yee{bottom:857.492100px;}
.y7{bottom:864.496050px;}
.ydd{bottom:865.996050px;}
.h8{height:12.334109px;}
.h4{height:30.835273px;}
.h7{height:37.002327px;}
.hb{height:43.169382px;}
.h11{height:49.336436px;}
.h12{height:55.336436px;}
.h2{height:55.503491px;}
.h5{height:61.503491px;}
.ha{height:61.670545px;}
.hf{height:67.837600px;}
.h3{height:73.503491px;}
.h9{height:74.004654px;}
.hc{height:80.171709px;}
.h6{height:851.739600px;}
.h0{height:851.740050px;}
.h1{height:852.000000px;}
.h10{height:853.239600px;}
.hd{height:853.240050px;}
.he{height:853.500000px;}
.w3{width:581.740590px;}
.w4{width:582.000000px;}
.w2{width:583.239540px;}
.w0{width:583.240590px;}
.w1{width:583.500000px;}
.x14{left:-12.755910px;}
.x81{left:-4.251960px;}
.x0{left:0.000000px;}
.xd3{left:18.248040px;}
.x75{left:23.244090px;}
.x1{left:27.744090px;}
.x7{left:29.244090px;}
.x36{left:30.744090px;}
.x65{left:32.244090px;}
.x14f{left:33.744090px;}
.x13b{left:39.744090px;}
.x138{left:41.244090px;}
.xd4{left:42.248040px;}
.xda{left:44.244090px;}
.xde{left:45.744090px;}
.x7d{left:47.244090px;}
.x9a{left:48.248040px;}
.x8{left:50.244090px;}
.x142{left:51.248040px;}
.x27{left:53.244090px;}
.x2{left:54.744090px;}
.x6e{left:56.244090px;}
.xdb{left:57.744090px;}
.xad{left:61.748040px;}
.xaa{left:63.248040px;}
.xd5{left:64.748040px;}
.x121{left:66.248040px;}
.x3{left:68.244090px;}
.x40{left:69.744090px;}
.x5f{left:71.244090px;}
.x6f{left:72.744090px;}
.xfd{left:74.244090px;}
.x14d{left:75.248040px;}
.x9{left:77.244090px;}
.x4c{left:78.744090px;}
.xc0{left:79.748040px;}
.xae{left:81.248040px;}
.x107{left:83.244090px;}
.x113{left:84.744090px;}
.xe7{left:86.244090px;}
.x91{left:87.248040px;}
.x8d{left:88.748040px;}
.xd6{left:90.248040px;}
.x146{left:91.748040px;}
.x28{left:93.744090px;}
.x4{left:95.244090px;}
.xb{left:96.744090px;}
.xf5{left:98.244090px;}
.x145{left:99.248040px;}
.xdc{left:101.244090px;}
.x98{left:102.248040px;}
.x60{left:104.244090px;}
.x7e{left:105.744090px;}
.x139{left:107.244090px;}
.x5{left:108.744090px;}
.x29{left:110.244090px;}
.x4d{left:111.744090px;}
.x9e{left:112.748040px;}
.x9b{left:114.248040px;}
.x10b{left:116.244090px;}
.xe6{left:117.744090px;}
.x96{left:118.748040px;}
.x8e{left:120.248040px;}
.xce{left:121.748040px;}
.xea{left:123.744090px;}
.x6{left:125.244090px;}
.x1d{left:126.744090px;}
.x2a{left:128.244090px;}
.x69{left:129.744090px;}
.xc{left:131.244090px;}
.xcf{left:132.248040px;}
.xdf{left:134.244090px;}
.xe5{left:135.744090px;}
.xb9{left:136.748040px;}
.xfe{left:138.744090px;}
.x6a{left:140.244090px;}
.x2b{left:141.744090px;}
.x37{left:143.244090px;}
.x52{left:144.744090px;}
.xc5{left:145.748040px;}
.xc8{left:147.248040px;}
.xba{left:148.748040px;}
.xa{left:150.744090px;}
.x1a{left:152.244090px;}
.x6b{left:153.744090px;}
.x82{left:154.748040px;}
.xd0{left:156.248040px;}
.xe0{left:158.244090px;}
.x53{left:159.744090px;}
.x59{left:161.244090px;}
.xe8{left:162.744090px;}
.x112{left:164.244090px;}
.x12a{left:165.248040px;}
.x2c{left:167.244090px;}
.x5c{left:168.744090px;}
.x5a{left:170.244090px;}
.x6c{left:171.744090px;}
.xa9{left:172.748040px;}
.x116{left:174.744090px;}
.x41{left:176.244090px;}
.x9f{left:177.248040px;}
.x11b{left:178.748040px;}
.x108{left:180.744090px;}
.x1e{left:182.244090px;}
.x42{left:183.744090px;}
.x17{left:185.244090px;}
.x70{left:186.744090px;}
.xd7{left:188.244090px;}
.x5b{left:189.744090px;}
.x2d{left:191.244090px;}
.x86{left:192.248040px;}
.x43{left:194.244090px;}
.x56{left:195.744090px;}
.xf7{left:197.244090px;}
.xff{left:198.744090px;}
.x1f{left:200.244090px;}
.x66{left:201.744090px;}
.x104{left:203.244090px;}
.x13c{left:204.744090px;}
.x76{left:206.244090px;}
.x44{left:207.744090px;}
.xa1{left:208.748040px;}
.xf8{left:210.744090px;}
.x100{left:212.244090px;}
.x14b{left:213.248040px;}
.x20{left:215.244090px;}
.xf6{left:216.744090px;}
.x92{left:217.748040px;}
.xef{left:219.744090px;}
.x57{left:221.244090px;}
.x114{left:222.744090px;}
.x4e{left:224.244090px;}
.x12{left:225.744090px;}
.x105{left:227.244090px;}
.x10c{left:228.744090px;}
.xc9{left:229.748040px;}
.x93{left:231.248040px;}
.x5d{left:233.244090px;}
.xd{left:234.744090px;}
.x13{left:236.244090px;}
.x58{left:237.744090px;}
.x21{left:239.244090px;}
.x87{left:240.248040px;}
.x18{left:242.244090px;}
.xaf{left:243.248040px;}
.x141{left:245.244090px;}
.x45{left:248.244090px;}
.x15{left:249.744090px;}
.xbb{left:250.748040px;}
.x7f{left:252.744090px;}
.x110{left:254.244090px;}
.xd8{left:255.744090px;}
.x54{left:257.244090px;}
.xca{left:258.248040px;}
.x71{left:260.244090px;}
.x6d{left:261.744090px;}
.x46{left:263.244090px;}
.x19{left:264.744090px;}
.x16{left:266.244090px;}
.xd1{left:267.248040px;}
.x14c{left:268.748040px;}
.x38{left:270.744090px;}
.x83{left:271.748040px;}
.x11c{left:273.248040px;}
.x72{left:275.244090px;}
.x13d{left:276.744090px;}
.xd2{left:277.748040px;}
.x22{left:279.744090px;}
.xa7{left:280.748040px;}
.xab{left:282.248040px;}
.x84{left:283.748040px;}
.x101{left:285.744090px;}
.x117{left:287.244090px;}
.x88{left:288.248040px;}
.x67{left:290.244090px;}
.xb2{left:291.248040px;}
.x23{left:293.244090px;}
.xcb{left:294.248040px;}
.x89{left:295.748040px;}
.x9c{left:297.248040px;}
.xbc{left:298.748040px;}
.xe{left:300.744090px;}
.xc1{left:301.748040px;}
.x77{left:303.744090px;}
.x47{left:305.244090px;}
.x55{left:306.744090px;}
.x2e{left:308.244090px;}
.x143{left:309.248040px;}
.x8a{left:310.748040px;}
.x4f{left:312.744090px;}
.x85{left:313.748040px;}
.xb0{left:315.248040px;}
.x115{left:317.244090px;}
.x111{left:318.744090px;}
.x48{left:320.244090px;}
.x1b{left:321.744090px;}
.x137{left:323.244090px;}
.x8b{left:324.248040px;}
.x12d{left:325.748040px;}
.xe1{left:327.744090px;}
.x78{left:329.244090px;}
.x99{left:330.248040px;}
.xb1{left:331.748040px;}
.xcc{left:333.248040px;}
.x14e{left:334.748040px;}
.x118{left:336.744090px;}
.xa8{left:337.748040px;}
.x5e{left:339.744090px;}
.xf9{left:341.244090px;}
.x148{left:342.248040px;}
.x50{left:345.744090px;}
.x1c{left:347.244090px;}
.x13e{left:348.744090px;}
.xa2{left:349.748040px;}
.x24{left:351.744090px;}
.x2f{left:353.244090px;}
.x61{left:354.744090px;}
.xcd{left:355.748040px;}
.x119{left:357.744090px;}
.x39{left:360.744090px;}
.x79{left:362.244090px;}
.x8c{left:363.248040px;}
.x10d{left:365.244090px;}
.xf2{left:366.744090px;}
.x49{left:368.244090px;}
.x68{left:369.744090px;}
.x11e{left:370.748040px;}
.xf{left:372.744090px;}
.x134{left:373.748040px;}
.x123{left:375.248040px;}
.x7a{left:377.244090px;}
.xee{left:378.744090px;}
.xbd{left:379.748040px;}
.x102{left:381.744090px;}
.xb3{left:382.748040px;}
.x3a{left:384.744090px;}
.xd9{left:386.244090px;}
.xa0{left:387.248040px;}
.xc2{left:388.748040px;}
.x14a{left:390.248040px;}
.x11a{left:392.244090px;}
.x7b{left:393.744090px;}
.xfa{left:395.244090px;}
.xc6{left:396.248040px;}
.xc3{left:397.748040px;}
.xdd{left:399.744090px;}
.x3b{left:401.244090px;}
.xe9{left:402.744090px;}
.xac{left:403.748040px;}
.x10{left:405.744090px;}
.x10e{left:407.244090px;}
.x4a{left:408.744090px;}
.x62{left:410.244090px;}
.xc4{left:411.248040px;}
.x122{left:412.748040px;}
.x12b{left:414.248040px;}
.x8f{left:417.248040px;}
.x12e{left:418.748040px;}
.xc7{left:420.248040px;}
.x30{left:422.244090px;}
.x133{left:423.248040px;}
.x94{left:424.748040px;}
.x13a{left:426.744090px;}
.x31{left:428.244090px;}
.x103{left:429.744090px;}
.x11{left:431.244090px;}
.x3c{left:432.744090px;}
.x90{left:433.748040px;}
.x125{left:435.248040px;}
.x106{left:437.244090px;}
.x109{left:438.744090px;}
.x32{left:440.244090px;}
.x4b{left:441.744090px;}
.x130{left:442.748040px;}
.xf0{left:446.244090px;}
.xe2{left:447.744090px;}
.xeb{left:449.244090px;}
.x73{left:450.744090px;}
.xa4{left:451.748040px;}
.xb4{left:453.248040px;}
.x25{left:455.244090px;}
.xf3{left:458.244090px;}
.xec{left:459.744090px;}
.x9d{left:460.748040px;}
.x135{left:462.248040px;}
.x33{left:464.244090px;}
.x124{left:466.748040px;}
.x12c{left:468.248040px;}
.x144{left:469.748040px;}
.xed{left:473.244090px;}
.x63{left:474.744090px;}
.xfb{left:476.244090px;}
.x10f{left:477.744090px;}
.x7c{left:479.244090px;}
.x128{left:481.748040px;}
.xb5{left:483.248040px;}
.xbe{left:484.748040px;}
.x136{left:487.748040px;}
.x51{left:491.244090px;}
.xa5{left:492.248040px;}
.xe3{left:495.744090px;}
.x10a{left:497.244090px;}
.x64{left:498.744090px;}
.xb6{left:499.748040px;}
.x11d{left:501.248040px;}
.x131{left:502.748040px;}
.x34{left:504.744090px;}
.xa3{left:505.748040px;}
.x97{left:507.248040px;}
.x126{left:508.748040px;}
.xb7{left:510.248040px;}
.xe4{left:512.244090px;}
.x26{left:513.744090px;}
.x74{left:515.244090px;}
.xf1{left:516.744090px;}
.x13f{left:518.244090px;}
.x149{left:519.248040px;}
.xfc{left:521.244090px;}
.x11f{left:522.248040px;}
.xa6{left:523.748040px;}
.x80{left:525.744090px;}
.x129{left:526.748040px;}
.x3d{left:528.744090px;}
.xf4{left:530.244090px;}
.x95{left:531.248040px;}
.xb8{left:532.748040px;}
.xbf{left:534.248040px;}
.x35{left:537.744090px;}
.x140{left:539.244090px;}
.x12f{left:540.248040px;}
.x127{left:541.748040px;}
.x3e{left:545.244090px;}
.x120{left:547.748040px;}
.x147{left:549.248040px;}
.x3f{left:554.244090px;}
.x132{left:555.248040px;}
.x150{left:557.244090px;}
@media print{
.v4{vertical-align:-10.666667pt;}
.v3{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.333333pt;}
.v1{vertical-align:16.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:5.333333pt;}
.ls7{letter-spacing:5.973333pt;}
.ls2{letter-spacing:8.000000pt;}
.ls0{letter-spacing:10.133333pt;}
.ls5{letter-spacing:13.546667pt;}
.ls6{letter-spacing:16.213333pt;}
.ls1{letter-spacing:168.000000pt;}
.ws1b{word-spacing:-37.546667pt;}
.ws21{word-spacing:-27.306667pt;}
.ws0{word-spacing:-24.000000pt;}
.ws1d{word-spacing:-21.333333pt;}
.ws3{word-spacing:-13.866667pt;}
.ws1{word-spacing:-13.333333pt;}
.wsb{word-spacing:-12.984542pt;}
.wsf{word-spacing:-12.444444pt;}
.ws16{word-spacing:-12.054581pt;}
.wse{word-spacing:-11.398858pt;}
.ws1c{word-spacing:-11.311909pt;}
.ws10{word-spacing:-10.666667pt;}
.ws5{word-spacing:-10.453333pt;}
.ws1e{word-spacing:-10.240000pt;}
.ws20{word-spacing:-9.386667pt;}
.ws18{word-spacing:-7.455023pt;}
.ws8{word-spacing:-7.279143pt;}
.ws19{word-spacing:-7.040000pt;}
.wsc{word-spacing:-6.166184pt;}
.ws22{word-spacing:-5.973333pt;}
.ws17{word-spacing:-5.333333pt;}
.ws1f{word-spacing:-5.120000pt;}
.ws25{word-spacing:-3.511187pt;}
.ws24{word-spacing:-3.129477pt;}
.ws6{word-spacing:-3.126370pt;}
.ws9{word-spacing:-2.741552pt;}
.ws23{word-spacing:-1.706667pt;}
.wsa{word-spacing:0.000000pt;}
.ws7{word-spacing:1.587101pt;}
.ws2{word-spacing:3.757576pt;}
.ws11{word-spacing:5.333333pt;}
.ws15{word-spacing:8.000000pt;}
.ws14{word-spacing:10.666667pt;}
.ws12{word-spacing:13.333333pt;}
.ws13{word-spacing:16.000000pt;}
.ws4{word-spacing:40.000000pt;}
.wsd{word-spacing:58.666667pt;}
.ws1a{word-spacing:80.000000pt;}
._10{margin-left:-75.946667pt;}
._16{margin-left:-30.936798pt;}
._14{margin-left:-24.741617pt;}
._12{margin-left:-21.585799pt;}
._4{margin-left:-18.859715pt;}
._13{margin-left:-16.442912pt;}
._f{margin-left:-13.546667pt;}
._6{margin-left:-9.508170pt;}
._b{margin-left:-8.545707pt;}
._2{margin-left:-6.933333pt;}
._e{margin-left:-5.612097pt;}
._8{margin-left:-3.520000pt;}
._0{margin-left:-1.531510pt;}
._1{width:2.432025pt;}
._11{width:3.413333pt;}
._a{width:5.333333pt;}
._c{width:6.720000pt;}
._9{width:8.000000pt;}
._3{width:9.332258pt;}
._d{width:34.666667pt;}
._5{width:37.333333pt;}
._15{width:42.666667pt;}
._7{width:104.000000pt;}
.fs3{font-size:10.666667pt;}
.fs1{font-size:26.666667pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.y5d{bottom:-15.118133pt;}
.y5c{bottom:-13.784800pt;}
.y5e{bottom:-12.451467pt;}
.y5f{bottom:-11.118133pt;}
.y0{bottom:0.000000pt;}
.yc9{bottom:16.881867pt;}
.y37{bottom:18.215200pt;}
.y35{bottom:28.440933pt;}
.y36{bottom:29.774267pt;}
.yec{bottom:32.440933pt;}
.y31{bottom:43.107600pt;}
.y32{bottom:44.440933pt;}
.y33{bottom:45.774267pt;}
.y34{bottom:47.107600pt;}
.yc8{bottom:59.548533pt;}
.yc7{bottom:60.881867pt;}
.yeb{bottom:68.440933pt;}
.y5a{bottom:72.881867pt;}
.y94{bottom:73.774267pt;}
.y5b{bottom:74.215200pt;}
.y96{bottom:75.107600pt;}
.y95{bottom:76.440933pt;}
.yd0{bottom:79.548533pt;}
.yc6{bottom:80.881867pt;}
.y30{bottom:83.107600pt;}
.y91{bottom:95.107600pt;}
.y92{bottom:96.440933pt;}
.y93{bottom:97.774267pt;}
.ycf{bottom:100.881867pt;}
.yc5{bottom:102.215200pt;}
.y2d{bottom:103.107600pt;}
.y2e{bottom:104.440933pt;}
.y2f{bottom:105.774267pt;}
.yce{bottom:120.881867pt;}
.yc4{bottom:122.215200pt;}
.y90{bottom:124.440933pt;}
.y8e{bottom:136.440933pt;}
.y8f{bottom:137.774267pt;}
.ycd{bottom:140.881867pt;}
.ye9{bottom:141.774267pt;}
.yc3{bottom:142.215200pt;}
.yea{bottom:143.107600pt;}
.y2c{bottom:144.440933pt;}
.y2b{bottom:145.774267pt;}
.y8b{bottom:155.107600pt;}
.y8c{bottom:156.440933pt;}
.y59{bottom:156.881867pt;}
.y8d{bottom:160.440933pt;}
.yc1{bottom:170.215200pt;}
.yc2{bottom:171.548533pt;}
.y8a{bottom:184.440933pt;}
.y29{bottom:185.774267pt;}
.y2a{bottom:187.107600pt;}
.y58{bottom:190.215200pt;}
.ye8{bottom:191.107600pt;}
.yc0{bottom:191.548533pt;}
.y101{bottom:203.548533pt;}
.y27{bottom:207.107600pt;}
.y28{bottom:208.440933pt;}
.y56{bottom:210.215200pt;}
.y57{bottom:211.548533pt;}
.y129{bottom:216.440933pt;}
.y87{bottom:217.774267pt;}
.y88{bottom:219.107600pt;}
.y89{bottom:220.440933pt;}
.ybf{bottom:224.881867pt;}
.y127{bottom:229.774267pt;}
.y128{bottom:231.107600pt;}
.y54{bottom:231.548533pt;}
.ye7{bottom:232.440933pt;}
.y55{bottom:232.881867pt;}
.y26{bottom:233.774267pt;}
.y124{bottom:241.774267pt;}
.y126{bottom:243.107600pt;}
.y125{bottom:244.440933pt;}
.ybe{bottom:244.881867pt;}
.y85{bottom:245.774267pt;}
.ybd{bottom:246.215200pt;}
.y86{bottom:247.107600pt;}
.y53{bottom:250.215200pt;}
.ye6{bottom:251.107600pt;}
.y50{bottom:251.548533pt;}
.ye5{bottom:252.440933pt;}
.y52{bottom:252.881867pt;}
.ye4{bottom:253.774267pt;}
.y51{bottom:254.215200pt;}
.y123{bottom:264.440933pt;}
.ybc{bottom:264.881867pt;}
.y23{bottom:265.774267pt;}
.ybb{bottom:266.215200pt;}
.y24{bottom:268.440933pt;}
.y100{bottom:271.548533pt;}
.y83{bottom:272.440933pt;}
.y4f{bottom:272.881867pt;}
.y84{bottom:273.774267pt;}
.y25{bottom:275.107600pt;}
.y1f{bottom:277.774267pt;}
.y122{bottom:279.107600pt;}
.y21{bottom:280.440933pt;}
.y22{bottom:281.774267pt;}
.y20{bottom:284.440933pt;}
.ycc{bottom:291.548533pt;}
.ycb{bottom:292.881867pt;}
.ye3{bottom:293.774267pt;}
.yca{bottom:294.215200pt;}
.ye2{bottom:295.107600pt;}
.y121{bottom:297.774267pt;}
.y81{bottom:300.440933pt;}
.y82{bottom:301.774267pt;}
.y4d{bottom:306.215200pt;}
.y4e{bottom:307.548533pt;}
.y120{bottom:312.440933pt;}
.yfe{bottom:312.881867pt;}
.ye1{bottom:313.774267pt;}
.yff{bottom:314.215200pt;}
.ye0{bottom:315.107600pt;}
.yba{bottom:319.548533pt;}
.yb9{bottom:320.881867pt;}
.y1d{bottom:321.774267pt;}
.y11f{bottom:325.774267pt;}
.y4c{bottom:327.548533pt;}
.y1e{bottom:328.440933pt;}
.y80{bottom:329.774267pt;}
.y19{bottom:333.774267pt;}
.yfd{bottom:334.215200pt;}
.y1b{bottom:335.107600pt;}
.y1c{bottom:336.440933pt;}
.y1a{bottom:340.440933pt;}
.y11e{bottom:345.774267pt;}
.y7d{bottom:353.774267pt;}
.yb8{bottom:354.215200pt;}
.y7e{bottom:355.107600pt;}
.yb7{bottom:355.548533pt;}
.y7f{bottom:356.440933pt;}
.y11d{bottom:359.107600pt;}
.y11c{bottom:360.440933pt;}
.y4b{bottom:368.881867pt;}
.yb6{bottom:374.215200pt;}
.yb5{bottom:375.548533pt;}
.y17{bottom:376.440933pt;}
.yb4{bottom:376.881867pt;}
.y18{bottom:377.774267pt;}
.y11b{bottom:380.440933pt;}
.ydf{bottom:381.774267pt;}
.y7c{bottom:383.107600pt;}
.y11a{bottom:393.774267pt;}
.yb3{bottom:394.215200pt;}
.yb2{bottom:395.548533pt;}
.yb1{bottom:396.881867pt;}
.y4a{bottom:402.215200pt;}
.yde{bottom:409.774267pt;}
.y119{bottom:413.774267pt;}
.y7b{bottom:415.107600pt;}
.yb0{bottom:415.548533pt;}
.y79{bottom:416.440933pt;}
.yaf{bottom:416.881867pt;}
.y7a{bottom:417.774267pt;}
.y49{bottom:423.548533pt;}
.y117{bottom:427.107600pt;}
.y118{bottom:428.440933pt;}
.yf0{bottom:428.881867pt;}
.y78{bottom:429.774267pt;}
.yef{bottom:430.215200pt;}
.y16{bottom:431.107600pt;}
.y14{bottom:436.440933pt;}
.yae{bottom:436.881867pt;}
.ydc{bottom:437.774267pt;}
.yad{bottom:438.215200pt;}
.y15{bottom:439.107600pt;}
.y116{bottom:440.440933pt;}
.y115{bottom:441.774267pt;}
.y74{bottom:443.107600pt;}
.y75{bottom:444.440933pt;}
.y76{bottom:445.774267pt;}
.y77{bottom:447.107600pt;}
.y48{bottom:456.881867pt;}
.yac{bottom:458.215200pt;}
.y114{bottom:461.774267pt;}
.y113{bottom:463.107600pt;}
.y72{bottom:464.440933pt;}
.y73{bottom:465.774267pt;}
.yfc{bottom:470.215200pt;}
.yfb{bottom:471.548533pt;}
.y112{bottom:475.107600pt;}
.y111{bottom:476.440933pt;}
.yab{bottom:476.881867pt;}
.y47{bottom:478.215200pt;}
.y13{bottom:479.107600pt;}
.y70{bottom:484.440933pt;}
.y71{bottom:485.774267pt;}
.yfa{bottom:490.215200pt;}
.yf9{bottom:491.548533pt;}
.y107{bottom:496.440933pt;}
.yaa{bottom:496.881867pt;}
.ya9{bottom:498.215200pt;}
.y11{bottom:499.107600pt;}
.ya8{bottom:499.548533pt;}
.y12{bottom:500.440933pt;}
.y6f{bottom:505.774267pt;}
.y106{bottom:509.774267pt;}
.y45{bottom:511.548533pt;}
.y46{bottom:512.881867pt;}
.y10{bottom:516.440933pt;}
.yf8{bottom:516.881867pt;}
.ydb{bottom:517.774267pt;}
.ya7{bottom:518.215200pt;}
.yf{bottom:519.107600pt;}
.ya6{bottom:519.548533pt;}
.yd{bottom:520.440933pt;}
.ye{bottom:521.774267pt;}
.y110{bottom:529.774267pt;}
.y10f{bottom:531.107600pt;}
.yf7{bottom:538.215200pt;}
.y6e{bottom:539.107600pt;}
.yf6{bottom:539.548533pt;}
.yc{bottom:541.774267pt;}
.y10e{bottom:543.107600pt;}
.y10d{bottom:544.440933pt;}
.ya5{bottom:544.881867pt;}
.ya4{bottom:546.215200pt;}
.y44{bottom:552.881867pt;}
.yda{bottom:553.774267pt;}
.y10c{bottom:556.440933pt;}
.y10b{bottom:557.774267pt;}
.yf5{bottom:559.548533pt;}
.y6c{bottom:565.774267pt;}
.y6d{bottom:567.107600pt;}
.yb{bottom:572.440933pt;}
.y43{bottom:572.881867pt;}
.ya{bottom:573.774267pt;}
.ya3{bottom:574.215200pt;}
.y105{bottom:577.774267pt;}
.y104{bottom:579.107600pt;}
.yf4{bottom:579.548533pt;}
.yd8{bottom:587.107600pt;}
.yd9{bottom:588.440933pt;}
.y103{bottom:591.107600pt;}
.y9{bottom:592.440933pt;}
.y42{bottom:592.881867pt;}
.y8{bottom:593.774267pt;}
.ya2{bottom:596.881867pt;}
.ya1{bottom:598.215200pt;}
.ya0{bottom:599.548533pt;}
.y6b{bottom:605.774267pt;}
.y6a{bottom:607.107600pt;}
.y10a{bottom:612.440933pt;}
.y41{bottom:612.881867pt;}
.y6{bottom:613.774267pt;}
.y40{bottom:614.215200pt;}
.yd7{bottom:616.440933pt;}
.y9f{bottom:619.548533pt;}
.y9e{bottom:620.881867pt;}
.y9d{bottom:622.215200pt;}
.y109{bottom:625.774267pt;}
.y108{bottom:627.107600pt;}
.yf3{bottom:632.881867pt;}
.y68{bottom:633.774267pt;}
.yf2{bottom:634.215200pt;}
.y69{bottom:635.107600pt;}
.yd6{bottom:636.440933pt;}
.y9c{bottom:639.548533pt;}
.y9b{bottom:640.881867pt;}
.y9a{bottom:642.215200pt;}
.y5{bottom:643.107600pt;}
.y67{bottom:648.440933pt;}
.y66{bottom:649.774267pt;}
.yf1{bottom:654.215200pt;}
.y65{bottom:655.107600pt;}
.y64{bottom:656.440933pt;}
.y3d{bottom:659.548533pt;}
.y3e{bottom:660.881867pt;}
.y3c{bottom:662.215200pt;}
.y3f{bottom:663.548533pt;}
.y102{bottom:672.440933pt;}
.yd5{bottom:677.774267pt;}
.y62{bottom:680.440933pt;}
.y63{bottom:681.774267pt;}
.yed{bottom:687.548533pt;}
.y3{bottom:693.774267pt;}
.y97{bottom:694.215200pt;}
.y4{bottom:695.107600pt;}
.y98{bottom:695.548533pt;}
.yd4{bottom:696.440933pt;}
.y99{bottom:696.881867pt;}
.yd3{bottom:697.774267pt;}
.y3b{bottom:702.215200pt;}
.y60{bottom:703.107600pt;}
.y3a{bottom:703.548533pt;}
.y61{bottom:704.440933pt;}
.y38{bottom:707.548533pt;}
.y1{bottom:713.774267pt;}
.y2{bottom:715.107600pt;}
.yd2{bottom:717.774267pt;}
.yd1{bottom:719.107600pt;}
.y39{bottom:760.881867pt;}
.yee{bottom:762.215200pt;}
.y7{bottom:768.440933pt;}
.ydd{bottom:769.774267pt;}
.h8{height:10.963652pt;}
.h4{height:27.409131pt;}
.h7{height:32.890957pt;}
.hb{height:38.372784pt;}
.h11{height:43.854610pt;}
.h12{height:49.187943pt;}
.h2{height:49.336436pt;}
.h5{height:54.669770pt;}
.ha{height:54.818262pt;}
.hf{height:60.300089pt;}
.h3{height:65.336436pt;}
.h9{height:65.781915pt;}
.hc{height:71.263741pt;}
.h6{height:757.101867pt;}
.h0{height:757.102267pt;}
.h1{height:757.333333pt;}
.h10{height:758.435200pt;}
.hd{height:758.435600pt;}
.he{height:758.666667pt;}
.w3{width:517.102747pt;}
.w4{width:517.333333pt;}
.w2{width:518.435147pt;}
.w0{width:518.436080pt;}
.w1{width:518.666667pt;}
.x14{left:-11.338587pt;}
.x81{left:-3.779520pt;}
.x0{left:0.000000pt;}
.xd3{left:16.220480pt;}
.x75{left:20.661413pt;}
.x1{left:24.661413pt;}
.x7{left:25.994747pt;}
.x36{left:27.328080pt;}
.x65{left:28.661413pt;}
.x14f{left:29.994747pt;}
.x13b{left:35.328080pt;}
.x138{left:36.661413pt;}
.xd4{left:37.553813pt;}
.xda{left:39.328080pt;}
.xde{left:40.661413pt;}
.x7d{left:41.994747pt;}
.x9a{left:42.887147pt;}
.x8{left:44.661413pt;}
.x142{left:45.553813pt;}
.x27{left:47.328080pt;}
.x2{left:48.661413pt;}
.x6e{left:49.994747pt;}
.xdb{left:51.328080pt;}
.xad{left:54.887147pt;}
.xaa{left:56.220480pt;}
.xd5{left:57.553813pt;}
.x121{left:58.887147pt;}
.x3{left:60.661413pt;}
.x40{left:61.994747pt;}
.x5f{left:63.328080pt;}
.x6f{left:64.661413pt;}
.xfd{left:65.994747pt;}
.x14d{left:66.887147pt;}
.x9{left:68.661413pt;}
.x4c{left:69.994747pt;}
.xc0{left:70.887147pt;}
.xae{left:72.220480pt;}
.x107{left:73.994747pt;}
.x113{left:75.328080pt;}
.xe7{left:76.661413pt;}
.x91{left:77.553813pt;}
.x8d{left:78.887147pt;}
.xd6{left:80.220480pt;}
.x146{left:81.553813pt;}
.x28{left:83.328080pt;}
.x4{left:84.661413pt;}
.xb{left:85.994747pt;}
.xf5{left:87.328080pt;}
.x145{left:88.220480pt;}
.xdc{left:89.994747pt;}
.x98{left:90.887147pt;}
.x60{left:92.661413pt;}
.x7e{left:93.994747pt;}
.x139{left:95.328080pt;}
.x5{left:96.661413pt;}
.x29{left:97.994747pt;}
.x4d{left:99.328080pt;}
.x9e{left:100.220480pt;}
.x9b{left:101.553813pt;}
.x10b{left:103.328080pt;}
.xe6{left:104.661413pt;}
.x96{left:105.553813pt;}
.x8e{left:106.887147pt;}
.xce{left:108.220480pt;}
.xea{left:109.994747pt;}
.x6{left:111.328080pt;}
.x1d{left:112.661413pt;}
.x2a{left:113.994747pt;}
.x69{left:115.328080pt;}
.xc{left:116.661413pt;}
.xcf{left:117.553813pt;}
.xdf{left:119.328080pt;}
.xe5{left:120.661413pt;}
.xb9{left:121.553813pt;}
.xfe{left:123.328080pt;}
.x6a{left:124.661413pt;}
.x2b{left:125.994747pt;}
.x37{left:127.328080pt;}
.x52{left:128.661413pt;}
.xc5{left:129.553813pt;}
.xc8{left:130.887147pt;}
.xba{left:132.220480pt;}
.xa{left:133.994747pt;}
.x1a{left:135.328080pt;}
.x6b{left:136.661413pt;}
.x82{left:137.553813pt;}
.xd0{left:138.887147pt;}
.xe0{left:140.661413pt;}
.x53{left:141.994747pt;}
.x59{left:143.328080pt;}
.xe8{left:144.661413pt;}
.x112{left:145.994747pt;}
.x12a{left:146.887147pt;}
.x2c{left:148.661413pt;}
.x5c{left:149.994747pt;}
.x5a{left:151.328080pt;}
.x6c{left:152.661413pt;}
.xa9{left:153.553813pt;}
.x116{left:155.328080pt;}
.x41{left:156.661413pt;}
.x9f{left:157.553813pt;}
.x11b{left:158.887147pt;}
.x108{left:160.661413pt;}
.x1e{left:161.994747pt;}
.x42{left:163.328080pt;}
.x17{left:164.661413pt;}
.x70{left:165.994747pt;}
.xd7{left:167.328080pt;}
.x5b{left:168.661413pt;}
.x2d{left:169.994747pt;}
.x86{left:170.887147pt;}
.x43{left:172.661413pt;}
.x56{left:173.994747pt;}
.xf7{left:175.328080pt;}
.xff{left:176.661413pt;}
.x1f{left:177.994747pt;}
.x66{left:179.328080pt;}
.x104{left:180.661413pt;}
.x13c{left:181.994747pt;}
.x76{left:183.328080pt;}
.x44{left:184.661413pt;}
.xa1{left:185.553813pt;}
.xf8{left:187.328080pt;}
.x100{left:188.661413pt;}
.x14b{left:189.553813pt;}
.x20{left:191.328080pt;}
.xf6{left:192.661413pt;}
.x92{left:193.553813pt;}
.xef{left:195.328080pt;}
.x57{left:196.661413pt;}
.x114{left:197.994747pt;}
.x4e{left:199.328080pt;}
.x12{left:200.661413pt;}
.x105{left:201.994747pt;}
.x10c{left:203.328080pt;}
.xc9{left:204.220480pt;}
.x93{left:205.553813pt;}
.x5d{left:207.328080pt;}
.xd{left:208.661413pt;}
.x13{left:209.994747pt;}
.x58{left:211.328080pt;}
.x21{left:212.661413pt;}
.x87{left:213.553813pt;}
.x18{left:215.328080pt;}
.xaf{left:216.220480pt;}
.x141{left:217.994747pt;}
.x45{left:220.661413pt;}
.x15{left:221.994747pt;}
.xbb{left:222.887147pt;}
.x7f{left:224.661413pt;}
.x110{left:225.994747pt;}
.xd8{left:227.328080pt;}
.x54{left:228.661413pt;}
.xca{left:229.553813pt;}
.x71{left:231.328080pt;}
.x6d{left:232.661413pt;}
.x46{left:233.994747pt;}
.x19{left:235.328080pt;}
.x16{left:236.661413pt;}
.xd1{left:237.553813pt;}
.x14c{left:238.887147pt;}
.x38{left:240.661413pt;}
.x83{left:241.553813pt;}
.x11c{left:242.887147pt;}
.x72{left:244.661413pt;}
.x13d{left:245.994747pt;}
.xd2{left:246.887147pt;}
.x22{left:248.661413pt;}
.xa7{left:249.553813pt;}
.xab{left:250.887147pt;}
.x84{left:252.220480pt;}
.x101{left:253.994747pt;}
.x117{left:255.328080pt;}
.x88{left:256.220480pt;}
.x67{left:257.994747pt;}
.xb2{left:258.887147pt;}
.x23{left:260.661413pt;}
.xcb{left:261.553813pt;}
.x89{left:262.887147pt;}
.x9c{left:264.220480pt;}
.xbc{left:265.553813pt;}
.xe{left:267.328080pt;}
.xc1{left:268.220480pt;}
.x77{left:269.994747pt;}
.x47{left:271.328080pt;}
.x55{left:272.661413pt;}
.x2e{left:273.994747pt;}
.x143{left:274.887147pt;}
.x8a{left:276.220480pt;}
.x4f{left:277.994747pt;}
.x85{left:278.887147pt;}
.xb0{left:280.220480pt;}
.x115{left:281.994747pt;}
.x111{left:283.328080pt;}
.x48{left:284.661413pt;}
.x1b{left:285.994747pt;}
.x137{left:287.328080pt;}
.x8b{left:288.220480pt;}
.x12d{left:289.553813pt;}
.xe1{left:291.328080pt;}
.x78{left:292.661413pt;}
.x99{left:293.553813pt;}
.xb1{left:294.887147pt;}
.xcc{left:296.220480pt;}
.x14e{left:297.553813pt;}
.x118{left:299.328080pt;}
.xa8{left:300.220480pt;}
.x5e{left:301.994747pt;}
.xf9{left:303.328080pt;}
.x148{left:304.220480pt;}
.x50{left:307.328080pt;}
.x1c{left:308.661413pt;}
.x13e{left:309.994747pt;}
.xa2{left:310.887147pt;}
.x24{left:312.661413pt;}
.x2f{left:313.994747pt;}
.x61{left:315.328080pt;}
.xcd{left:316.220480pt;}
.x119{left:317.994747pt;}
.x39{left:320.661413pt;}
.x79{left:321.994747pt;}
.x8c{left:322.887147pt;}
.x10d{left:324.661413pt;}
.xf2{left:325.994747pt;}
.x49{left:327.328080pt;}
.x68{left:328.661413pt;}
.x11e{left:329.553813pt;}
.xf{left:331.328080pt;}
.x134{left:332.220480pt;}
.x123{left:333.553813pt;}
.x7a{left:335.328080pt;}
.xee{left:336.661413pt;}
.xbd{left:337.553813pt;}
.x102{left:339.328080pt;}
.xb3{left:340.220480pt;}
.x3a{left:341.994747pt;}
.xd9{left:343.328080pt;}
.xa0{left:344.220480pt;}
.xc2{left:345.553813pt;}
.x14a{left:346.887147pt;}
.x11a{left:348.661413pt;}
.x7b{left:349.994747pt;}
.xfa{left:351.328080pt;}
.xc6{left:352.220480pt;}
.xc3{left:353.553813pt;}
.xdd{left:355.328080pt;}
.x3b{left:356.661413pt;}
.xe9{left:357.994747pt;}
.xac{left:358.887147pt;}
.x10{left:360.661413pt;}
.x10e{left:361.994747pt;}
.x4a{left:363.328080pt;}
.x62{left:364.661413pt;}
.xc4{left:365.553813pt;}
.x122{left:366.887147pt;}
.x12b{left:368.220480pt;}
.x8f{left:370.887147pt;}
.x12e{left:372.220480pt;}
.xc7{left:373.553813pt;}
.x30{left:375.328080pt;}
.x133{left:376.220480pt;}
.x94{left:377.553813pt;}
.x13a{left:379.328080pt;}
.x31{left:380.661413pt;}
.x103{left:381.994747pt;}
.x11{left:383.328080pt;}
.x3c{left:384.661413pt;}
.x90{left:385.553813pt;}
.x125{left:386.887147pt;}
.x106{left:388.661413pt;}
.x109{left:389.994747pt;}
.x32{left:391.328080pt;}
.x4b{left:392.661413pt;}
.x130{left:393.553813pt;}
.xf0{left:396.661413pt;}
.xe2{left:397.994747pt;}
.xeb{left:399.328080pt;}
.x73{left:400.661413pt;}
.xa4{left:401.553813pt;}
.xb4{left:402.887147pt;}
.x25{left:404.661413pt;}
.xf3{left:407.328080pt;}
.xec{left:408.661413pt;}
.x9d{left:409.553813pt;}
.x135{left:410.887147pt;}
.x33{left:412.661413pt;}
.x124{left:414.887147pt;}
.x12c{left:416.220480pt;}
.x144{left:417.553813pt;}
.xed{left:420.661413pt;}
.x63{left:421.994747pt;}
.xfb{left:423.328080pt;}
.x10f{left:424.661413pt;}
.x7c{left:425.994747pt;}
.x128{left:428.220480pt;}
.xb5{left:429.553813pt;}
.xbe{left:430.887147pt;}
.x136{left:433.553813pt;}
.x51{left:436.661413pt;}
.xa5{left:437.553813pt;}
.xe3{left:440.661413pt;}
.x10a{left:441.994747pt;}
.x64{left:443.328080pt;}
.xb6{left:444.220480pt;}
.x11d{left:445.553813pt;}
.x131{left:446.887147pt;}
.x34{left:448.661413pt;}
.xa3{left:449.553813pt;}
.x97{left:450.887147pt;}
.x126{left:452.220480pt;}
.xb7{left:453.553813pt;}
.xe4{left:455.328080pt;}
.x26{left:456.661413pt;}
.x74{left:457.994747pt;}
.xf1{left:459.328080pt;}
.x13f{left:460.661413pt;}
.x149{left:461.553813pt;}
.xfc{left:463.328080pt;}
.x11f{left:464.220480pt;}
.xa6{left:465.553813pt;}
.x80{left:467.328080pt;}
.x129{left:468.220480pt;}
.x3d{left:469.994747pt;}
.xf4{left:471.328080pt;}
.x95{left:472.220480pt;}
.xb8{left:473.553813pt;}
.xbf{left:474.887147pt;}
.x35{left:477.994747pt;}
.x140{left:479.328080pt;}
.x12f{left:480.220480pt;}
.x127{left:481.553813pt;}
.x3e{left:484.661413pt;}
.x120{left:486.887147pt;}
.x147{left:488.220480pt;}
.x3f{left:492.661413pt;}
.x132{left:493.553813pt;}
.x150{left:495.328080pt;}
}




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