
    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_e2dcd3b0a98e572bc0d1a980.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_99faabce7756157934a75588.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_23c0ee2dd1669f6a476e9acc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8d381ed9da43908d1f37a5ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d69d177d5da07a33ea35ecf1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b039e27900d38ef80441df23.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a9055d8ae1a3bcc292e14c91.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m48{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m46{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);}
.m24{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);}
.m3f{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m3a{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);}
.m22{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m49{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);}
.m32{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m36{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m28{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.mf{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m33{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);}
.m1f{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2a{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);}
.m12{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);}
.m31{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.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);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.mb{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);}
.m4{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);}
.ma{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);}
.m1{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);}
.m5{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);}
.m6{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);}
.m7{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);}
.m0{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);}
.md{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);}
.me{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);}
.m16{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);}
.m2d{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);}
.m19{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);}
.m34{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);}
.m35{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);}
.m14{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);}
.m29{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);}
.m10{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);}
.m3e{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);}
.m18{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2c{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);}
.m11{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m37{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);}
.m38{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);}
.m2e{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);}
.m42{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);}
.m2f{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);}
.m44{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m2b{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m3b{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:6.018000px;}
.ls1{letter-spacing:24.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;}
}
.ws3{word-spacing:-16.500000px;}
.ws49{word-spacing:-15.012000px;}
.ws6{word-spacing:-13.500000px;}
.ws22{word-spacing:-3.373401px;}
.ws1e{word-spacing:-3.307401px;}
.ws30{word-spacing:-3.084000px;}
.ws3a{word-spacing:-3.052801px;}
.ws3c{word-spacing:-2.811333px;}
.ws28{word-spacing:-2.478000px;}
.wsd{word-spacing:-2.202790px;}
.ws2d{word-spacing:-1.791245px;}
.ws31{word-spacing:-1.650470px;}
.ws27{word-spacing:-1.506000px;}
.ws15{word-spacing:-1.500000px;}
.ws23{word-spacing:-1.476000px;}
.ws1b{word-spacing:-1.152000px;}
.ws41{word-spacing:-1.057440px;}
.ws1c{word-spacing:-0.804000px;}
.ws2b{word-spacing:-0.793835px;}
.ws1f{word-spacing:-0.789864px;}
.ws10{word-spacing:-0.431219px;}
.ws1d{word-spacing:-0.361882px;}
.ws50{word-spacing:-0.102000px;}
.ws9{word-spacing:0.000000px;}
.ws19{word-spacing:0.335551px;}
.ws1{word-spacing:0.852236px;}
.ws2f{word-spacing:1.482000px;}
.ws36{word-spacing:1.512000px;}
.ws33{word-spacing:1.518000px;}
.ws26{word-spacing:1.524000px;}
.ws35{word-spacing:1.542000px;}
.ws16{word-spacing:1.848000px;}
.ws44{word-spacing:1.966560px;}
.ws4b{word-spacing:2.137009px;}
.ws4{word-spacing:2.196000px;}
.wsf{word-spacing:2.478000px;}
.ws18{word-spacing:2.826000px;}
.ws47{word-spacing:2.832000px;}
.ws38{word-spacing:2.916000px;}
.ws53{word-spacing:2.964000px;}
.ws4e{word-spacing:3.000000px;}
.ws3e{word-spacing:3.018000px;}
.ws11{word-spacing:3.348000px;}
.wse{word-spacing:4.152000px;}
.ws32{word-spacing:4.494000px;}
.ws5{word-spacing:4.500000px;}
.ws25{word-spacing:4.524000px;}
.ws51{word-spacing:4.656000px;}
.ws14{word-spacing:4.848000px;}
.ws0{word-spacing:5.196000px;}
.ws34{word-spacing:5.590422px;}
.ws4c{word-spacing:5.970000px;}
.ws45{word-spacing:6.000000px;}
.ws29{word-spacing:6.522000px;}
.ws1a{word-spacing:7.152000px;}
.ws39{word-spacing:7.500000px;}
.ws2e{word-spacing:7.506000px;}
.ws7{word-spacing:7.512000px;}
.ws8{word-spacing:7.524000px;}
.ws2a{word-spacing:7.842000px;}
.ws12{word-spacing:7.848000px;}
.wsc{word-spacing:8.196000px;}
.ws46{word-spacing:8.904000px;}
.ws3d{word-spacing:8.946000px;}
.ws42{word-spacing:8.970000px;}
.ws3b{word-spacing:9.000000px;}
.ws20{word-spacing:9.348000px;}
.ws2c{word-spacing:10.500000px;}
.ws43{word-spacing:10.524000px;}
.ws2{word-spacing:11.196000px;}
.ws52{word-spacing:11.964000px;}
.wsb{word-spacing:12.174000px;}
.ws21{word-spacing:13.500000px;}
.ws24{word-spacing:13.524000px;}
.ws37{word-spacing:14.892000px;}
.ws4f{word-spacing:16.260703px;}
.ws13{word-spacing:17.196000px;}
.ws4a{word-spacing:17.982000px;}
.ws3f{word-spacing:19.524000px;}
.ws40{word-spacing:22.436023px;}
.ws48{word-spacing:36.467345px;}
.wsa{word-spacing:42.375000px;}
.ws4d{word-spacing:47.229350px;}
.ws17{word-spacing:371.460508px;}
._c{margin-left:-26.904965px;}
._19{margin-left:-25.230859px;}
._1b{margin-left:-20.614054px;}
._1a{margin-left:-14.501393px;}
._13{margin-left:-11.904739px;}
._2{margin-left:-10.360347px;}
._11{margin-left:-8.006388px;}
._15{margin-left:-6.909980px;}
._1{margin-left:-5.729270px;}
._4{margin-left:-4.163504px;}
._7{margin-left:-2.050351px;}
._9{margin-left:-1.017429px;}
._d{width:1.435824px;}
._5{width:2.728078px;}
._8{width:3.973773px;}
._0{width:5.529818px;}
._e{width:7.027383px;}
._a{width:8.438750px;}
._6{width:9.745959px;}
._3{width:11.594015px;}
._10{width:12.674527px;}
._12{width:15.024000px;}
._14{width:19.491918px;}
._b{width:21.696000px;}
._16{width:23.022000px;}
._1c{width:25.476000px;}
._f{width:27.696000px;}
._17{width:33.696000px;}
._18{width:43.554000px;}
.fc1{color:transparent;}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:24.000000px;}
.fs4{font-size:30.000000px;}
.fs3{font-size:36.000000px;}
.fs5{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:96.000000px;}
.fs9{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y112{bottom:83.481015px;}
.y1b{bottom:84.981015px;}
.yd9{bottom:89.481015px;}
.y3e{bottom:90.981015px;}
.y67{bottom:95.481015px;}
.y8b{bottom:102.981015px;}
.yb3{bottom:105.981015px;}
.yd8{bottom:107.481015px;}
.y3d{bottom:108.981015px;}
.y66{bottom:111.981015px;}
.y8a{bottom:120.981015px;}
.yb2{bottom:122.481015px;}
.y3c{bottom:125.481015px;}
.y9a{bottom:128.481015px;}
.y1a{bottom:129.981015px;}
.y111{bottom:135.981015px;}
.yfa{bottom:137.481015px;}
.y89{bottom:138.981015px;}
.yd7{bottom:141.981015px;}
.y19{bottom:144.981015px;}
.y99{bottom:146.481015px;}
.y65{bottom:149.481015px;}
.yf9{bottom:150.981015px;}
.yb1{bottom:152.481015px;}
.y115{bottom:153.981015px;}
.y88{bottom:156.981015px;}
.y18{bottom:158.481015px;}
.yd6{bottom:159.981015px;}
.ye9{bottom:162.981015px;}
.y3b{bottom:164.481015px;}
.yb0{bottom:165.981015px;}
.y64{bottom:167.481015px;}
.y114{bottom:170.481015px;}
.y17{bottom:174.981015px;}
.yd5{bottom:179.481015px;}
.y3a{bottom:182.481015px;}
.y63{bottom:185.481015px;}
.y16{bottom:189.981015px;}
.y87{bottom:194.481015px;}
.y110{bottom:195.981015px;}
.yaf{bottom:197.481015px;}
.y39{bottom:198.981015px;}
.y98{bottom:200.481015px;}
.y15{bottom:204.981015px;}
.y86{bottom:210.981015px;}
.yae{bottom:212.481015px;}
.yd4{bottom:215.481015px;}
.ye8{bottom:216.981015px;}
.y38{bottom:218.481015px;}
.y62{bottom:221.481015px;}
.yf8{bottom:225.981015px;}
.yad{bottom:227.481015px;}
.y85{bottom:230.481015px;}
.yd3{bottom:234.981015px;}
.y37{bottom:236.481015px;}
.y14{bottom:237.981015px;}
.y61{bottom:240.981015px;}
.yac{bottom:242.481015px;}
.y84{bottom:248.481015px;}
.yd2{bottom:251.481015px;}
.ye7{bottom:252.981015px;}
.y36{bottom:254.481015px;}
.y13{bottom:255.981015px;}
.y10f{bottom:257.481015px;}
.y60{bottom:258.981015px;}
.y83{bottom:266.481015px;}
.yd1{bottom:270.981015px;}
.yf7{bottom:272.481015px;}
.y12{bottom:273.981015px;}
.y5f{bottom:276.981015px;}
.y82{bottom:284.481015px;}
.y5e{bottom:287.481015px;}
.yd0{bottom:288.981015px;}
.y11{bottom:291.981015px;}
.yf6{bottom:302.481015px;}
.y81{bottom:303.981015px;}
.y5d{bottom:305.481015px;}
.ycf{bottom:308.481015px;}
.y10{bottom:309.981015px;}
.yf5{bottom:317.481015px;}
.y80{bottom:321.981015px;}
.yab{bottom:323.481015px;}
.y5c{bottom:324.981015px;}
.yce{bottom:326.481015px;}
.yf{bottom:327.981015px;}
.yf4{bottom:332.481015px;}
.y7f{bottom:339.981015px;}
.y5b{bottom:341.481015px;}
.ycd{bottom:344.481015px;}
.y35{bottom:345.981015px;}
.ye{bottom:347.481015px;}
.y7e{bottom:357.981015px;}
.yaa{bottom:359.481015px;}
.y5a{bottom:360.981015px;}
.ycc{bottom:362.481015px;}
.y34{bottom:363.981015px;}
.yd{bottom:365.481015px;}
.y10e{bottom:366.981015px;}
.y7d{bottom:377.481015px;}
.y59{bottom:378.981015px;}
.ycb{bottom:380.481015px;}
.ye6{bottom:381.981015px;}
.y33{bottom:383.481015px;}
.yc{bottom:384.981015px;}
.ya8{bottom:389.481015px;}
.yf3{bottom:393.981015px;}
.y7c{bottom:395.481015px;}
.ya9{bottom:396.981015px;}
.y58{bottom:398.481015px;}
.y32{bottom:399.981015px;}
.y97{bottom:401.481015px;}
.yb{bottom:402.981015px;}
.ya7{bottom:407.481015px;}
.y10d{bottom:408.981015px;}
.y7b{bottom:411.981015px;}
.y57{bottom:414.981015px;}
.yca{bottom:417.981015px;}
.y31{bottom:419.481015px;}
.ya{bottom:420.981015px;}
.y10c{bottom:423.981015px;}
.ya6{bottom:426.981015px;}
.yf2{bottom:429.981015px;}
.y56{bottom:434.481015px;}
.yc9{bottom:435.981015px;}
.y30{bottom:437.481015px;}
.y9{bottom:438.981015px;}
.y7a{bottom:443.481015px;}
.ya5{bottom:444.981015px;}
.yf1{bottom:449.481015px;}
.y55{bottom:452.481015px;}
.yc8{bottom:453.981015px;}
.ye5{bottom:455.481015px;}
.y8{bottom:456.981015px;}
.y79{bottom:458.481015px;}
.yc6{bottom:464.481015px;}
.y10b{bottom:468.981015px;}
.y54{bottom:470.481015px;}
.yc7{bottom:471.981015px;}
.ye4{bottom:473.481015px;}
.y78{bottom:474.981015px;}
.y7{bottom:476.481015px;}
.ya4{bottom:477.981015px;}
.yc5{bottom:483.981015px;}
.y10a{bottom:485.481015px;}
.y53{bottom:488.481015px;}
.y77{bottom:489.981015px;}
.ya3{bottom:491.481015px;}
.y2f{bottom:492.981015px;}
.yf0{bottom:495.981015px;}
.y109{bottom:498.981015px;}
.y76{bottom:506.481015px;}
.y52{bottom:507.981015px;}
.y2e{bottom:510.981015px;}
.yc4{bottom:513.981015px;}
.y75{bottom:519.981015px;}
.ya2{bottom:521.481015px;}
.y108{bottom:522.981015px;}
.y51{bottom:525.981015px;}
.y2d{bottom:528.981015px;}
.yef{bottom:531.981015px;}
.y74{bottom:536.481015px;}
.ya1{bottom:537.981015px;}
.yc3{bottom:542.481015px;}
.y50{bottom:543.981015px;}
.ye3{bottom:546.981015px;}
.y2c{bottom:548.481015px;}
.y73{bottom:551.481015px;}
.y107{bottom:552.981015px;}
.yc2{bottom:558.981015px;}
.y4f{bottom:561.981015px;}
.ye2{bottom:564.981015px;}
.y2b{bottom:566.481015px;}
.ya0{bottom:567.981015px;}
.yee{bottom:569.481015px;}
.yc1{bottom:572.481015px;}
.y113{bottom:573.981015px;}
.y4e{bottom:579.981015px;}
.y72{bottom:581.481015px;}
.y106{bottom:582.981015px;}
.y2a{bottom:584.481015px;}
.y96{bottom:585.981015px;}
.yc0{bottom:588.981015px;}
.y71{bottom:597.981015px;}
.y4d{bottom:599.481015px;}
.ye1{bottom:600.981015px;}
.y29{bottom:603.981015px;}
.yed{bottom:606.981015px;}
.y9f{bottom:612.981015px;}
.y70{bottom:614.481015px;}
.y4c{bottom:615.981015px;}
.ybf{bottom:617.481015px;}
.ye0{bottom:620.481015px;}
.y28{bottom:621.981015px;}
.yec{bottom:624.981015px;}
.y9e{bottom:627.981015px;}
.ydf{bottom:630.981015px;}
.y6f{bottom:633.981015px;}
.y4b{bottom:635.481015px;}
.y27{bottom:639.981015px;}
.y9d{bottom:642.981015px;}
.y105{bottom:644.481015px;}
.ybe{bottom:648.981015px;}
.y6e{bottom:651.981015px;}
.y4a{bottom:653.481015px;}
.y95{bottom:654.981015px;}
.y104{bottom:657.981015px;}
.y26{bottom:659.481015px;}
.yeb{bottom:660.981015px;}
.ybd{bottom:663.981015px;}
.y6d{bottom:669.981015px;}
.y49{bottom:671.481015px;}
.y103{bottom:672.981015px;}
.y6{bottom:677.481015px;}
.ybc{bottom:678.981015px;}
.yde{bottom:683.481015px;}
.y94{bottom:684.981015px;}
.y102{bottom:687.981015px;}
.y48{bottom:689.481015px;}
.yea{bottom:690.981015px;}
.y25{bottom:695.481015px;}
.y5{bottom:696.981015px;}
.y93{bottom:699.981015px;}
.ybb{bottom:704.481015px;}
.y6c{bottom:705.981015px;}
.y47{bottom:708.981015px;}
.y24{bottom:713.481015px;}
.y92{bottom:714.981015px;}
.y4{bottom:716.481015px;}
.y101{bottom:719.481015px;}
.yba{bottom:723.981015px;}
.y6b{bottom:726.981015px;}
.y46{bottom:728.481015px;}
.y91{bottom:729.981015px;}
.y23{bottom:731.481015px;}
.y100{bottom:734.481015px;}
.yb9{bottom:741.981015px;}
.y6a{bottom:743.481015px;}
.y45{bottom:744.981015px;}
.y9c{bottom:746.481015px;}
.y22{bottom:749.481015px;}
.y90{bottom:759.981015px;}
.ydd{bottom:761.481015px;}
.y44{bottom:762.981015px;}
.yff{bottom:765.981015px;}
.y21{bottom:767.481015px;}
.y3{bottom:773.481015px;}
.y8f{bottom:776.481015px;}
.yb8{bottom:777.981015px;}
.ydc{bottom:779.481015px;}
.y69{bottom:780.981015px;}
.y43{bottom:782.481015px;}
.y20{bottom:786.981015px;}
.y8e{bottom:791.481015px;}
.yfe{bottom:794.481015px;}
.yb7{bottom:795.981015px;}
.ydb{bottom:797.481015px;}
.y42{bottom:800.481015px;}
.y2{bottom:803.481015px;}
.y1f{bottom:804.981015px;}
.y8d{bottom:806.481015px;}
.yfd{bottom:809.481015px;}
.yb6{bottom:813.981015px;}
.yda{bottom:815.481015px;}
.y1e{bottom:816.981015px;}
.y68{bottom:818.481015px;}
.y41{bottom:819.981015px;}
.y8c{bottom:822.981015px;}
.yfc{bottom:824.481015px;}
.y1{bottom:831.981015px;}
.y1d{bottom:833.481015px;}
.y40{bottom:836.481015px;}
.yfb{bottom:840.981015px;}
.yb4{bottom:875.481015px;}
.yb5{bottom:876.981015px;}
.y1c{bottom:878.481015px;}
.y3f{bottom:879.981015px;}
.y9b{bottom:881.481015px;}
.h11{height:24.187500px;}
.h12{height:25.031250px;}
.h6{height:31.289062px;}
.hf{height:36.281250px;}
.h5{height:37.546875px;}
.h7{height:43.804688px;}
.h13{height:50.062500px;}
.hc{height:52.971680px;}
.h4{height:52.998047px;}
.h8{height:56.320312px;}
.h10{height:58.857422px;}
.hd{height:58.886719px;}
.hb{height:62.578125px;}
.ha{height:64.743164px;}
.h3{height:64.775391px;}
.he{height:82.998047px;}
.h14{height:86.320313px;}
.h2{height:94.171875px;}
.h9{height:94.775391px;}
.h15{height:106.382812px;}
.h0{height:972.721515px;}
.h1{height:972.750000px;}
.w1{width:719.250000px;}
.w0{width:719.421030px;}
.x0{left:0.000000px;}
.x15e{left:82.960515px;}
.x15f{left:84.460515px;}
.x129{left:85.960515px;}
.x25{left:87.460515px;}
.x166{left:88.960515px;}
.xa3{left:91.960515px;}
.x161{left:100.960515px;}
.x163{left:102.460515px;}
.x26{left:103.960515px;}
.x6f{left:105.460515px;}
.x133{left:106.960515px;}
.x144{left:108.460515px;}
.x13a{left:109.960515px;}
.x165{left:111.460515px;}
.x49{left:112.960515px;}
.x1a{left:114.460515px;}
.xb3{left:115.960515px;}
.x58{left:117.460515px;}
.x3c{left:118.960515px;}
.x162{left:120.460515px;}
.x12a{left:123.460515px;}
.x169{left:124.960515px;}
.x45{left:126.460515px;}
.x149{left:127.960515px;}
.xf9{left:129.460515px;}
.x167{left:130.960515px;}
.x160{left:132.460515px;}
.xea{left:133.960515px;}
.x14f{left:135.460515px;}
.x11f{left:136.960515px;}
.x1b{left:138.460515px;}
.xa4{left:139.960515px;}
.xdd{left:141.460515px;}
.x8{left:142.960515px;}
.xcb{left:144.460515px;}
.x115{left:145.960515px;}
.xef{left:147.460515px;}
.x100{left:148.960515px;}
.xd5{left:150.460515px;}
.x7a{left:151.960515px;}
.x52{left:153.460515px;}
.x148{left:154.960515px;}
.xe1{left:156.460515px;}
.x34{left:157.960515px;}
.x9{left:159.460515px;}
.x14a{left:160.960515px;}
.xd6{left:162.460515px;}
.x81{left:163.960515px;}
.x59{left:165.460515px;}
.xa5{left:166.960515px;}
.x27{left:168.460515px;}
.xda{left:169.960515px;}
.x14d{left:171.460515px;}
.x150{left:172.960515px;}
.x2f{left:174.460515px;}
.xbc{left:175.960515px;}
.xde{left:177.460515px;}
.xe2{left:178.960515px;}
.x88{left:180.460515px;}
.x62{left:181.960515px;}
.x13b{left:183.460515px;}
.x103{left:184.960515px;}
.xf5{left:186.460515px;}
.x5a{left:187.960515px;}
.xa1{left:189.460515px;}
.xa6{left:190.960515px;}
.xc{left:192.460515px;}
.xc3{left:193.960515px;}
.x75{left:195.460515px;}
.xfa{left:196.960515px;}
.x1c{left:198.460515px;}
.x9a{left:199.960515px;}
.x134{left:201.460515px;}
.x70{left:202.960515px;}
.x91{left:204.460515px;}
.xd7{left:205.960515px;}
.xa7{left:207.460515px;}
.xa2{left:208.960515px;}
.x5{left:210.460515px;}
.x1{left:211.960515px;}
.x4a{left:213.460515px;}
.x10b{left:214.960515px;}
.x9b{left:216.460515px;}
.x76{left:217.960515px;}
.x3d{left:219.460515px;}
.x1d{left:220.960515px;}
.xf0{left:222.460515px;}
.x92{left:223.960515px;}
.xcc{left:225.460515px;}
.x11{left:226.960515px;}
.x46{left:228.460515px;}
.x71{left:229.960515px;}
.x8e{left:231.460515px;}
.xa8{left:232.960515px;}
.x5b{left:234.460515px;}
.x4b{left:235.960515px;}
.x12f{left:237.460515px;}
.x7b{left:238.960515px;}
.x6{left:240.460515px;}
.xd{left:241.960515px;}
.x10c{left:243.460515px;}
.x93{left:244.960515px;}
.xd2{left:246.460515px;}
.x2{left:247.960515px;}
.x3e{left:249.460515px;}
.xa{left:250.960515px;}
.xe3{left:252.460515px;}
.x130{left:253.960515px;}
.xc4{left:255.460515px;}
.x47{left:256.960515px;}
.x135{left:258.460515px;}
.x6a{left:259.960515px;}
.xcf{left:261.460515px;}
.x13f{left:262.960515px;}
.x124{left:264.460515px;}
.x15c{left:265.960515px;}
.x89{left:267.460515px;}
.x13e{left:268.960515px;}
.x77{left:270.460515px;}
.x101{left:271.960515px;}
.x142{left:273.460515px;}
.x82{left:274.960515px;}
.x5c{left:276.460515px;}
.x35{left:277.960515px;}
.x14e{left:279.460515px;}
.x28{left:280.960515px;}
.x1e{left:282.460515px;}
.x78{left:283.960515px;}
.x112{left:285.460515px;}
.x7c{left:286.960515px;}
.xe{left:288.460515px;}
.x15{left:289.960515px;}
.x3f{left:291.460515px;}
.xbd{left:292.960515px;}
.xfc{left:294.460515px;}
.xe4{left:295.960515px;}
.xe8{left:297.460515px;}
.x108{left:298.960515px;}
.x9c{left:300.460515px;}
.x94{left:301.960515px;}
.x4c{left:303.460515px;}
.x1f{left:304.960515px;}
.xf1{left:306.460515px;}
.x12{left:307.960515px;}
.x29{left:309.460515px;}
.xa9{left:310.960515px;}
.x83{left:312.460515px;}
.x145{left:313.960515px;}
.x105{left:315.460515px;}
.x15d{left:316.960515px;}
.x79{left:318.460515px;}
.x30{left:319.960515px;}
.x2a{left:321.460515px;}
.x110{left:322.960515px;}
.x138{left:324.460515px;}
.x119{left:325.960515px;}
.x84{left:327.460515px;}
.xc5{left:328.960515px;}
.x13{left:330.460515px;}
.x16{left:331.960515px;}
.x120{left:333.460515px;}
.x113{left:334.960515px;}
.x106{left:336.460515px;}
.xf{left:337.960515px;}
.x11d{left:339.460515px;}
.xd8{left:340.960515px;}
.x53{left:342.460515px;}
.x146{left:343.960515px;}
.x14c{left:345.460515px;}
.xc0{left:346.960515px;}
.xaa{left:348.460515px;}
.x72{left:349.960515px;}
.x36{left:351.460515px;}
.x5d{left:352.960515px;}
.x40{left:354.460515px;}
.x3{left:355.960515px;}
.x128{left:357.460515px;}
.x63{left:358.960515px;}
.x31{left:360.460515px;}
.xfe{left:361.960515px;}
.xb8{left:363.460515px;}
.x8f{left:364.960515px;}
.xab{left:366.460515px;}
.xc6{left:367.960515px;}
.x48{left:369.460515px;}
.x155{left:370.960515px;}
.x102{left:372.460515px;}
.x41{left:373.960515px;}
.x20{left:375.460515px;}
.x6b{left:376.960515px;}
.x17{left:378.460515px;}
.x116{left:379.960515px;}
.x85{left:381.460515px;}
.xdf{left:382.960515px;}
.x7{left:384.460515px;}
.x14{left:385.960515px;}
.x4d{left:387.460515px;}
.x4{left:388.960515px;}
.x5e{left:390.460515px;}
.x2b{left:391.960515px;}
.x7d{left:393.460515px;}
.x95{left:394.960515px;}
.x109{left:396.460515px;}
.x18{left:397.960515px;}
.x32{left:399.460515px;}
.xd3{left:400.960515px;}
.xac{left:402.460515px;}
.x164{left:403.960515px;}
.x136{left:405.460515px;}
.x5f{left:406.960515px;}
.xd9{left:408.460515px;}
.xb4{left:409.960515px;}
.x4e{left:411.460515px;}
.x96{left:412.960515px;}
.x14b{left:414.460515px;}
.x15a{left:415.960515px;}
.x9d{left:417.460515px;}
.xf8{left:418.960515px;}
.xb9{left:420.460515px;}
.xad{left:421.960515px;}
.x37{left:423.460515px;}
.xf2{left:424.960515px;}
.x86{left:426.460515px;}
.x8a{left:427.960515px;}
.xe9{left:429.460515px;}
.x10{left:430.960515px;}
.x19{left:432.460515px;}
.x73{left:433.960515px;}
.x21{left:435.460515px;}
.xfd{left:436.960515px;}
.x54{left:438.460515px;}
.x38{left:439.960515px;}
.xe5{left:441.460515px;}
.x64{left:442.960515px;}
.xcd{left:444.460515px;}
.xff{left:445.960515px;}
.x33{left:447.460515px;}
.x11b{left:448.960515px;}
.x12d{left:450.460515px;}
.x2c{left:451.960515px;}
.xb{left:453.460515px;}
.xf6{left:454.960515px;}
.x7e{left:456.460515px;}
.xeb{left:457.960515px;}
.x22{left:459.460515px;}
.x168{left:460.960515px;}
.x55{left:462.460515px;}
.x6c{left:463.960515px;}
.x123{left:465.460515px;}
.x147{left:466.960515px;}
.xf3{left:468.460515px;}
.x2d{left:469.960515px;}
.xe6{left:471.460515px;}
.x4f{left:472.960515px;}
.x65{left:474.460515px;}
.x141{left:475.960515px;}
.x11e{left:477.460515px;}
.x12b{left:478.960515px;}
.xb5{left:480.460515px;}
.xc1{left:481.960515px;}
.xae{left:483.460515px;}
.x8b{left:484.960515px;}
.x6d{left:486.460515px;}
.xfb{left:487.960515px;}
.xb6{left:489.460515px;}
.x97{left:490.960515px;}
.x139{left:492.460515px;}
.xbe{left:493.960515px;}
.x8c{left:495.460515px;}
.x104{left:496.960515px;}
.x87{left:498.460515px;}
.x9e{left:499.960515px;}
.xec{left:501.460515px;}
.x56{left:502.960515px;}
.xc7{left:504.460515px;}
.x10d{left:505.960515px;}
.x23{left:507.460515px;}
.x42{left:508.960515px;}
.x7f{left:510.460515px;}
.x153{left:511.960515px;}
.x57{left:513.460515px;}
.x10a{left:514.960515px;}
.xdb{left:516.460515px;}
.x66{left:517.960515px;}
.x143{left:519.460515px;}
.xb7{left:520.960515px;}
.x98{left:522.460515px;}
.x13c{left:523.960515px;}
.xaf{left:525.460515px;}
.x43{left:526.960515px;}
.x140{left:528.460515px;}
.xba{left:529.960515px;}
.x6e{left:531.460515px;}
.x80{left:532.960515px;}
.x117{left:534.460515px;}
.x12e{left:535.960515px;}
.x125{left:537.460515px;}
.xb0{left:538.960515px;}
.x2e{left:540.460515px;}
.x8d{left:541.960515px;}
.x122{left:543.460515px;}
.x67{left:544.960515px;}
.x39{left:546.460515px;}
.xf7{left:547.960515px;}
.xb1{left:549.460515px;}
.xd0{left:550.960515px;}
.x74{left:552.460515px;}
.xf4{left:553.960515px;}
.xd4{left:555.460515px;}
.x12c{left:556.960515px;}
.x90{left:558.460515px;}
.x132{left:559.960515px;}
.x50{left:561.460515px;}
.x3a{left:562.960515px;}
.xc2{left:564.460515px;}
.x11c{left:565.960515px;}
.x60{left:567.460515px;}
.x44{left:568.960515px;}
.x107{left:570.460515px;}
.x99{left:571.960515px;}
.xc8{left:573.460515px;}
.x13d{left:574.960515px;}
.x9f{left:576.460515px;}
.xe0{left:577.960515px;}
.xed{left:579.460515px;}
.xb2{left:580.960515px;}
.x131{left:582.460515px;}
.x68{left:583.960515px;}
.x137{left:585.460515px;}
.x24{left:586.960515px;}
.x61{left:588.460515px;}
.x158{left:589.960515px;}
.x126{left:591.460515px;}
.x51{left:592.960515px;}
.x111{left:594.460515px;}
.xd1{left:595.960515px;}
.x121{left:597.460515px;}
.xbf{left:598.960515px;}
.x69{left:601.011780px;}
.x3b{left:602.093235px;}
.xc9{left:603.460515px;}
.xa0{left:604.752195px;}
.x152{left:606.460515px;}
.xce{left:607.960515px;}
.x157{left:609.460515px;}
.x10e{left:610.960515px;}
.x11a{left:612.460515px;}
.x114{left:613.960515px;}
.xbb{left:615.460515px;}
.xdc{left:616.960515px;}
.x118{left:618.460515px;}
.x127{left:619.960515px;}
.xee{left:621.460515px;}
.x156{left:622.960515px;}
.x16a{left:624.460515px;}
.x154{left:625.960515px;}
.x15b{left:627.460515px;}
.x151{left:629.186655px;}
.xca{left:631.191900px;}
.x159{left:632.289975px;}
.xe7{left:633.294165px;}
.x10f{left:634.494630px;}
.x16b{left:636.150435px;}
.x16c{left:637.683675px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.666667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:5.349333pt;}
.ls1{letter-spacing:21.333333pt;}
.ws3{word-spacing:-14.666667pt;}
.ws49{word-spacing:-13.344000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws22{word-spacing:-2.998579pt;}
.ws1e{word-spacing:-2.939912pt;}
.ws30{word-spacing:-2.741333pt;}
.ws3a{word-spacing:-2.713601pt;}
.ws3c{word-spacing:-2.498963pt;}
.ws28{word-spacing:-2.202667pt;}
.wsd{word-spacing:-1.958036pt;}
.ws2d{word-spacing:-1.592218pt;}
.ws31{word-spacing:-1.467084pt;}
.ws27{word-spacing:-1.338667pt;}
.ws15{word-spacing:-1.333333pt;}
.ws23{word-spacing:-1.312000pt;}
.ws1b{word-spacing:-1.024000pt;}
.ws41{word-spacing:-0.939947pt;}
.ws1c{word-spacing:-0.714667pt;}
.ws2b{word-spacing:-0.705631pt;}
.ws1f{word-spacing:-0.702101pt;}
.ws10{word-spacing:-0.383306pt;}
.ws1d{word-spacing:-0.321673pt;}
.ws50{word-spacing:-0.090667pt;}
.ws9{word-spacing:0.000000pt;}
.ws19{word-spacing:0.298268pt;}
.ws1{word-spacing:0.757543pt;}
.ws2f{word-spacing:1.317333pt;}
.ws36{word-spacing:1.344000pt;}
.ws33{word-spacing:1.349333pt;}
.ws26{word-spacing:1.354667pt;}
.ws35{word-spacing:1.370667pt;}
.ws16{word-spacing:1.642667pt;}
.ws44{word-spacing:1.748053pt;}
.ws4b{word-spacing:1.899564pt;}
.ws4{word-spacing:1.952000pt;}
.wsf{word-spacing:2.202667pt;}
.ws18{word-spacing:2.512000pt;}
.ws47{word-spacing:2.517333pt;}
.ws38{word-spacing:2.592000pt;}
.ws53{word-spacing:2.634667pt;}
.ws4e{word-spacing:2.666667pt;}
.ws3e{word-spacing:2.682667pt;}
.ws11{word-spacing:2.976000pt;}
.wse{word-spacing:3.690667pt;}
.ws32{word-spacing:3.994667pt;}
.ws5{word-spacing:4.000000pt;}
.ws25{word-spacing:4.021333pt;}
.ws51{word-spacing:4.138667pt;}
.ws14{word-spacing:4.309333pt;}
.ws0{word-spacing:4.618667pt;}
.ws34{word-spacing:4.969264pt;}
.ws4c{word-spacing:5.306667pt;}
.ws45{word-spacing:5.333333pt;}
.ws29{word-spacing:5.797333pt;}
.ws1a{word-spacing:6.357333pt;}
.ws39{word-spacing:6.666667pt;}
.ws2e{word-spacing:6.672000pt;}
.ws7{word-spacing:6.677333pt;}
.ws8{word-spacing:6.688000pt;}
.ws2a{word-spacing:6.970667pt;}
.ws12{word-spacing:6.976000pt;}
.wsc{word-spacing:7.285333pt;}
.ws46{word-spacing:7.914667pt;}
.ws3d{word-spacing:7.952000pt;}
.ws42{word-spacing:7.973333pt;}
.ws3b{word-spacing:8.000000pt;}
.ws20{word-spacing:8.309333pt;}
.ws2c{word-spacing:9.333333pt;}
.ws43{word-spacing:9.354667pt;}
.ws2{word-spacing:9.952000pt;}
.ws52{word-spacing:10.634667pt;}
.wsb{word-spacing:10.821333pt;}
.ws21{word-spacing:12.000000pt;}
.ws24{word-spacing:12.021333pt;}
.ws37{word-spacing:13.237333pt;}
.ws4f{word-spacing:14.453958pt;}
.ws13{word-spacing:15.285333pt;}
.ws4a{word-spacing:15.984000pt;}
.ws3f{word-spacing:17.354667pt;}
.ws40{word-spacing:19.943132pt;}
.ws48{word-spacing:32.415417pt;}
.wsa{word-spacing:37.666667pt;}
.ws4d{word-spacing:41.981644pt;}
.ws17{word-spacing:330.187119pt;}
._c{margin-left:-23.915524pt;}
._19{margin-left:-22.427430pt;}
._1b{margin-left:-18.323603pt;}
._1a{margin-left:-12.890127pt;}
._13{margin-left:-10.581990pt;}
._2{margin-left:-9.209197pt;}
._11{margin-left:-7.116789pt;}
._15{margin-left:-6.142204pt;}
._1{margin-left:-5.092684pt;}
._4{margin-left:-3.700893pt;}
._7{margin-left:-1.822534pt;}
._9{margin-left:-0.904381pt;}
._d{width:1.276288pt;}
._5{width:2.424958pt;}
._8{width:3.532242pt;}
._0{width:4.915394pt;}
._e{width:6.246562pt;}
._a{width:7.501111pt;}
._6{width:8.663075pt;}
._3{width:10.305791pt;}
._10{width:11.266246pt;}
._12{width:13.354667pt;}
._14{width:17.326150pt;}
._b{width:19.285333pt;}
._16{width:20.464000pt;}
._1c{width:22.645333pt;}
._f{width:24.618667pt;}
._17{width:29.952000pt;}
._18{width:38.714667pt;}
.fs7{font-size:21.333333pt;}
.fs4{font-size:26.666667pt;}
.fs3{font-size:32.000000pt;}
.fs5{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:85.333333pt;}
.fs9{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y112{bottom:74.205347pt;}
.y1b{bottom:75.538680pt;}
.yd9{bottom:79.538680pt;}
.y3e{bottom:80.872013pt;}
.y67{bottom:84.872013pt;}
.y8b{bottom:91.538680pt;}
.yb3{bottom:94.205347pt;}
.yd8{bottom:95.538680pt;}
.y3d{bottom:96.872013pt;}
.y66{bottom:99.538680pt;}
.y8a{bottom:107.538680pt;}
.yb2{bottom:108.872013pt;}
.y3c{bottom:111.538680pt;}
.y9a{bottom:114.205347pt;}
.y1a{bottom:115.538680pt;}
.y111{bottom:120.872013pt;}
.yfa{bottom:122.205347pt;}
.y89{bottom:123.538680pt;}
.yd7{bottom:126.205347pt;}
.y19{bottom:128.872013pt;}
.y99{bottom:130.205347pt;}
.y65{bottom:132.872013pt;}
.yf9{bottom:134.205347pt;}
.yb1{bottom:135.538680pt;}
.y115{bottom:136.872013pt;}
.y88{bottom:139.538680pt;}
.y18{bottom:140.872013pt;}
.yd6{bottom:142.205347pt;}
.ye9{bottom:144.872013pt;}
.y3b{bottom:146.205347pt;}
.yb0{bottom:147.538680pt;}
.y64{bottom:148.872013pt;}
.y114{bottom:151.538680pt;}
.y17{bottom:155.538680pt;}
.yd5{bottom:159.538680pt;}
.y3a{bottom:162.205347pt;}
.y63{bottom:164.872013pt;}
.y16{bottom:168.872013pt;}
.y87{bottom:172.872013pt;}
.y110{bottom:174.205347pt;}
.yaf{bottom:175.538680pt;}
.y39{bottom:176.872013pt;}
.y98{bottom:178.205347pt;}
.y15{bottom:182.205347pt;}
.y86{bottom:187.538680pt;}
.yae{bottom:188.872013pt;}
.yd4{bottom:191.538680pt;}
.ye8{bottom:192.872013pt;}
.y38{bottom:194.205347pt;}
.y62{bottom:196.872013pt;}
.yf8{bottom:200.872013pt;}
.yad{bottom:202.205347pt;}
.y85{bottom:204.872013pt;}
.yd3{bottom:208.872013pt;}
.y37{bottom:210.205347pt;}
.y14{bottom:211.538680pt;}
.y61{bottom:214.205347pt;}
.yac{bottom:215.538680pt;}
.y84{bottom:220.872013pt;}
.yd2{bottom:223.538680pt;}
.ye7{bottom:224.872013pt;}
.y36{bottom:226.205347pt;}
.y13{bottom:227.538680pt;}
.y10f{bottom:228.872013pt;}
.y60{bottom:230.205347pt;}
.y83{bottom:236.872013pt;}
.yd1{bottom:240.872013pt;}
.yf7{bottom:242.205347pt;}
.y12{bottom:243.538680pt;}
.y5f{bottom:246.205347pt;}
.y82{bottom:252.872013pt;}
.y5e{bottom:255.538680pt;}
.yd0{bottom:256.872013pt;}
.y11{bottom:259.538680pt;}
.yf6{bottom:268.872013pt;}
.y81{bottom:270.205347pt;}
.y5d{bottom:271.538680pt;}
.ycf{bottom:274.205347pt;}
.y10{bottom:275.538680pt;}
.yf5{bottom:282.205347pt;}
.y80{bottom:286.205347pt;}
.yab{bottom:287.538680pt;}
.y5c{bottom:288.872013pt;}
.yce{bottom:290.205347pt;}
.yf{bottom:291.538680pt;}
.yf4{bottom:295.538680pt;}
.y7f{bottom:302.205347pt;}
.y5b{bottom:303.538680pt;}
.ycd{bottom:306.205347pt;}
.y35{bottom:307.538680pt;}
.ye{bottom:308.872013pt;}
.y7e{bottom:318.205347pt;}
.yaa{bottom:319.538680pt;}
.y5a{bottom:320.872013pt;}
.ycc{bottom:322.205347pt;}
.y34{bottom:323.538680pt;}
.yd{bottom:324.872013pt;}
.y10e{bottom:326.205347pt;}
.y7d{bottom:335.538680pt;}
.y59{bottom:336.872013pt;}
.ycb{bottom:338.205347pt;}
.ye6{bottom:339.538680pt;}
.y33{bottom:340.872013pt;}
.yc{bottom:342.205347pt;}
.ya8{bottom:346.205347pt;}
.yf3{bottom:350.205347pt;}
.y7c{bottom:351.538680pt;}
.ya9{bottom:352.872013pt;}
.y58{bottom:354.205347pt;}
.y32{bottom:355.538680pt;}
.y97{bottom:356.872013pt;}
.yb{bottom:358.205347pt;}
.ya7{bottom:362.205347pt;}
.y10d{bottom:363.538680pt;}
.y7b{bottom:366.205347pt;}
.y57{bottom:368.872013pt;}
.yca{bottom:371.538680pt;}
.y31{bottom:372.872013pt;}
.ya{bottom:374.205347pt;}
.y10c{bottom:376.872013pt;}
.ya6{bottom:379.538680pt;}
.yf2{bottom:382.205347pt;}
.y56{bottom:386.205347pt;}
.yc9{bottom:387.538680pt;}
.y30{bottom:388.872013pt;}
.y9{bottom:390.205347pt;}
.y7a{bottom:394.205347pt;}
.ya5{bottom:395.538680pt;}
.yf1{bottom:399.538680pt;}
.y55{bottom:402.205347pt;}
.yc8{bottom:403.538680pt;}
.ye5{bottom:404.872013pt;}
.y8{bottom:406.205347pt;}
.y79{bottom:407.538680pt;}
.yc6{bottom:412.872013pt;}
.y10b{bottom:416.872013pt;}
.y54{bottom:418.205347pt;}
.yc7{bottom:419.538680pt;}
.ye4{bottom:420.872013pt;}
.y78{bottom:422.205347pt;}
.y7{bottom:423.538680pt;}
.ya4{bottom:424.872013pt;}
.yc5{bottom:430.205347pt;}
.y10a{bottom:431.538680pt;}
.y53{bottom:434.205347pt;}
.y77{bottom:435.538680pt;}
.ya3{bottom:436.872013pt;}
.y2f{bottom:438.205347pt;}
.yf0{bottom:440.872013pt;}
.y109{bottom:443.538680pt;}
.y76{bottom:450.205347pt;}
.y52{bottom:451.538680pt;}
.y2e{bottom:454.205347pt;}
.yc4{bottom:456.872013pt;}
.y75{bottom:462.205347pt;}
.ya2{bottom:463.538680pt;}
.y108{bottom:464.872013pt;}
.y51{bottom:467.538680pt;}
.y2d{bottom:470.205347pt;}
.yef{bottom:472.872013pt;}
.y74{bottom:476.872013pt;}
.ya1{bottom:478.205347pt;}
.yc3{bottom:482.205347pt;}
.y50{bottom:483.538680pt;}
.ye3{bottom:486.205347pt;}
.y2c{bottom:487.538680pt;}
.y73{bottom:490.205347pt;}
.y107{bottom:491.538680pt;}
.yc2{bottom:496.872013pt;}
.y4f{bottom:499.538680pt;}
.ye2{bottom:502.205347pt;}
.y2b{bottom:503.538680pt;}
.ya0{bottom:504.872013pt;}
.yee{bottom:506.205347pt;}
.yc1{bottom:508.872013pt;}
.y113{bottom:510.205347pt;}
.y4e{bottom:515.538680pt;}
.y72{bottom:516.872013pt;}
.y106{bottom:518.205347pt;}
.y2a{bottom:519.538680pt;}
.y96{bottom:520.872013pt;}
.yc0{bottom:523.538680pt;}
.y71{bottom:531.538680pt;}
.y4d{bottom:532.872013pt;}
.ye1{bottom:534.205347pt;}
.y29{bottom:536.872013pt;}
.yed{bottom:539.538680pt;}
.y9f{bottom:544.872013pt;}
.y70{bottom:546.205347pt;}
.y4c{bottom:547.538680pt;}
.ybf{bottom:548.872013pt;}
.ye0{bottom:551.538680pt;}
.y28{bottom:552.872013pt;}
.yec{bottom:555.538680pt;}
.y9e{bottom:558.205347pt;}
.ydf{bottom:560.872013pt;}
.y6f{bottom:563.538680pt;}
.y4b{bottom:564.872013pt;}
.y27{bottom:568.872013pt;}
.y9d{bottom:571.538680pt;}
.y105{bottom:572.872013pt;}
.ybe{bottom:576.872013pt;}
.y6e{bottom:579.538680pt;}
.y4a{bottom:580.872013pt;}
.y95{bottom:582.205347pt;}
.y104{bottom:584.872013pt;}
.y26{bottom:586.205347pt;}
.yeb{bottom:587.538680pt;}
.ybd{bottom:590.205347pt;}
.y6d{bottom:595.538680pt;}
.y49{bottom:596.872013pt;}
.y103{bottom:598.205347pt;}
.y6{bottom:602.205347pt;}
.ybc{bottom:603.538680pt;}
.yde{bottom:607.538680pt;}
.y94{bottom:608.872013pt;}
.y102{bottom:611.538680pt;}
.y48{bottom:612.872013pt;}
.yea{bottom:614.205347pt;}
.y25{bottom:618.205347pt;}
.y5{bottom:619.538680pt;}
.y93{bottom:622.205347pt;}
.ybb{bottom:626.205347pt;}
.y6c{bottom:627.538680pt;}
.y47{bottom:630.205347pt;}
.y24{bottom:634.205347pt;}
.y92{bottom:635.538680pt;}
.y4{bottom:636.872013pt;}
.y101{bottom:639.538680pt;}
.yba{bottom:643.538680pt;}
.y6b{bottom:646.205347pt;}
.y46{bottom:647.538680pt;}
.y91{bottom:648.872013pt;}
.y23{bottom:650.205347pt;}
.y100{bottom:652.872013pt;}
.yb9{bottom:659.538680pt;}
.y6a{bottom:660.872013pt;}
.y45{bottom:662.205347pt;}
.y9c{bottom:663.538680pt;}
.y22{bottom:666.205347pt;}
.y90{bottom:675.538680pt;}
.ydd{bottom:676.872013pt;}
.y44{bottom:678.205347pt;}
.yff{bottom:680.872013pt;}
.y21{bottom:682.205347pt;}
.y3{bottom:687.538680pt;}
.y8f{bottom:690.205347pt;}
.yb8{bottom:691.538680pt;}
.ydc{bottom:692.872013pt;}
.y69{bottom:694.205347pt;}
.y43{bottom:695.538680pt;}
.y20{bottom:699.538680pt;}
.y8e{bottom:703.538680pt;}
.yfe{bottom:706.205347pt;}
.yb7{bottom:707.538680pt;}
.ydb{bottom:708.872013pt;}
.y42{bottom:711.538680pt;}
.y2{bottom:714.205347pt;}
.y1f{bottom:715.538680pt;}
.y8d{bottom:716.872013pt;}
.yfd{bottom:719.538680pt;}
.yb6{bottom:723.538680pt;}
.yda{bottom:724.872013pt;}
.y1e{bottom:726.205347pt;}
.y68{bottom:727.538680pt;}
.y41{bottom:728.872013pt;}
.y8c{bottom:731.538680pt;}
.yfc{bottom:732.872013pt;}
.y1{bottom:739.538680pt;}
.y1d{bottom:740.872013pt;}
.y40{bottom:743.538680pt;}
.yfb{bottom:747.538680pt;}
.yb4{bottom:778.205347pt;}
.yb5{bottom:779.538680pt;}
.y1c{bottom:780.872013pt;}
.y3f{bottom:782.205347pt;}
.y9b{bottom:783.538680pt;}
.h11{height:21.500000pt;}
.h12{height:22.250000pt;}
.h6{height:27.812500pt;}
.hf{height:32.250000pt;}
.h5{height:33.375000pt;}
.h7{height:38.937500pt;}
.h13{height:44.500000pt;}
.hc{height:47.085938pt;}
.h4{height:47.109375pt;}
.h8{height:50.062500pt;}
.h10{height:52.317708pt;}
.hd{height:52.343750pt;}
.hb{height:55.625000pt;}
.ha{height:57.549479pt;}
.h3{height:57.578125pt;}
.he{height:73.776042pt;}
.h14{height:76.729167pt;}
.h2{height:83.708333pt;}
.h9{height:84.244792pt;}
.h15{height:94.562500pt;}
.h0{height:864.641347pt;}
.h1{height:864.666667pt;}
.w1{width:639.333333pt;}
.w0{width:639.485360pt;}
.x0{left:0.000000pt;}
.x15e{left:73.742680pt;}
.x15f{left:75.076013pt;}
.x129{left:76.409347pt;}
.x25{left:77.742680pt;}
.x166{left:79.076013pt;}
.xa3{left:81.742680pt;}
.x161{left:89.742680pt;}
.x163{left:91.076013pt;}
.x26{left:92.409347pt;}
.x6f{left:93.742680pt;}
.x133{left:95.076013pt;}
.x144{left:96.409347pt;}
.x13a{left:97.742680pt;}
.x165{left:99.076013pt;}
.x49{left:100.409347pt;}
.x1a{left:101.742680pt;}
.xb3{left:103.076013pt;}
.x58{left:104.409347pt;}
.x3c{left:105.742680pt;}
.x162{left:107.076013pt;}
.x12a{left:109.742680pt;}
.x169{left:111.076013pt;}
.x45{left:112.409347pt;}
.x149{left:113.742680pt;}
.xf9{left:115.076013pt;}
.x167{left:116.409347pt;}
.x160{left:117.742680pt;}
.xea{left:119.076013pt;}
.x14f{left:120.409347pt;}
.x11f{left:121.742680pt;}
.x1b{left:123.076013pt;}
.xa4{left:124.409347pt;}
.xdd{left:125.742680pt;}
.x8{left:127.076013pt;}
.xcb{left:128.409347pt;}
.x115{left:129.742680pt;}
.xef{left:131.076013pt;}
.x100{left:132.409347pt;}
.xd5{left:133.742680pt;}
.x7a{left:135.076013pt;}
.x52{left:136.409347pt;}
.x148{left:137.742680pt;}
.xe1{left:139.076013pt;}
.x34{left:140.409347pt;}
.x9{left:141.742680pt;}
.x14a{left:143.076013pt;}
.xd6{left:144.409347pt;}
.x81{left:145.742680pt;}
.x59{left:147.076013pt;}
.xa5{left:148.409347pt;}
.x27{left:149.742680pt;}
.xda{left:151.076013pt;}
.x14d{left:152.409347pt;}
.x150{left:153.742680pt;}
.x2f{left:155.076013pt;}
.xbc{left:156.409347pt;}
.xde{left:157.742680pt;}
.xe2{left:159.076013pt;}
.x88{left:160.409347pt;}
.x62{left:161.742680pt;}
.x13b{left:163.076013pt;}
.x103{left:164.409347pt;}
.xf5{left:165.742680pt;}
.x5a{left:167.076013pt;}
.xa1{left:168.409347pt;}
.xa6{left:169.742680pt;}
.xc{left:171.076013pt;}
.xc3{left:172.409347pt;}
.x75{left:173.742680pt;}
.xfa{left:175.076013pt;}
.x1c{left:176.409347pt;}
.x9a{left:177.742680pt;}
.x134{left:179.076013pt;}
.x70{left:180.409347pt;}
.x91{left:181.742680pt;}
.xd7{left:183.076013pt;}
.xa7{left:184.409347pt;}
.xa2{left:185.742680pt;}
.x5{left:187.076013pt;}
.x1{left:188.409347pt;}
.x4a{left:189.742680pt;}
.x10b{left:191.076013pt;}
.x9b{left:192.409347pt;}
.x76{left:193.742680pt;}
.x3d{left:195.076013pt;}
.x1d{left:196.409347pt;}
.xf0{left:197.742680pt;}
.x92{left:199.076013pt;}
.xcc{left:200.409347pt;}
.x11{left:201.742680pt;}
.x46{left:203.076013pt;}
.x71{left:204.409347pt;}
.x8e{left:205.742680pt;}
.xa8{left:207.076013pt;}
.x5b{left:208.409347pt;}
.x4b{left:209.742680pt;}
.x12f{left:211.076013pt;}
.x7b{left:212.409347pt;}
.x6{left:213.742680pt;}
.xd{left:215.076013pt;}
.x10c{left:216.409347pt;}
.x93{left:217.742680pt;}
.xd2{left:219.076013pt;}
.x2{left:220.409347pt;}
.x3e{left:221.742680pt;}
.xa{left:223.076013pt;}
.xe3{left:224.409347pt;}
.x130{left:225.742680pt;}
.xc4{left:227.076013pt;}
.x47{left:228.409347pt;}
.x135{left:229.742680pt;}
.x6a{left:231.076013pt;}
.xcf{left:232.409347pt;}
.x13f{left:233.742680pt;}
.x124{left:235.076013pt;}
.x15c{left:236.409347pt;}
.x89{left:237.742680pt;}
.x13e{left:239.076013pt;}
.x77{left:240.409347pt;}
.x101{left:241.742680pt;}
.x142{left:243.076013pt;}
.x82{left:244.409347pt;}
.x5c{left:245.742680pt;}
.x35{left:247.076013pt;}
.x14e{left:248.409347pt;}
.x28{left:249.742680pt;}
.x1e{left:251.076013pt;}
.x78{left:252.409347pt;}
.x112{left:253.742680pt;}
.x7c{left:255.076013pt;}
.xe{left:256.409347pt;}
.x15{left:257.742680pt;}
.x3f{left:259.076013pt;}
.xbd{left:260.409347pt;}
.xfc{left:261.742680pt;}
.xe4{left:263.076013pt;}
.xe8{left:264.409347pt;}
.x108{left:265.742680pt;}
.x9c{left:267.076013pt;}
.x94{left:268.409347pt;}
.x4c{left:269.742680pt;}
.x1f{left:271.076013pt;}
.xf1{left:272.409347pt;}
.x12{left:273.742680pt;}
.x29{left:275.076013pt;}
.xa9{left:276.409347pt;}
.x83{left:277.742680pt;}
.x145{left:279.076013pt;}
.x105{left:280.409347pt;}
.x15d{left:281.742680pt;}
.x79{left:283.076013pt;}
.x30{left:284.409347pt;}
.x2a{left:285.742680pt;}
.x110{left:287.076013pt;}
.x138{left:288.409347pt;}
.x119{left:289.742680pt;}
.x84{left:291.076013pt;}
.xc5{left:292.409347pt;}
.x13{left:293.742680pt;}
.x16{left:295.076013pt;}
.x120{left:296.409347pt;}
.x113{left:297.742680pt;}
.x106{left:299.076013pt;}
.xf{left:300.409347pt;}
.x11d{left:301.742680pt;}
.xd8{left:303.076013pt;}
.x53{left:304.409347pt;}
.x146{left:305.742680pt;}
.x14c{left:307.076013pt;}
.xc0{left:308.409347pt;}
.xaa{left:309.742680pt;}
.x72{left:311.076013pt;}
.x36{left:312.409347pt;}
.x5d{left:313.742680pt;}
.x40{left:315.076013pt;}
.x3{left:316.409347pt;}
.x128{left:317.742680pt;}
.x63{left:319.076013pt;}
.x31{left:320.409347pt;}
.xfe{left:321.742680pt;}
.xb8{left:323.076013pt;}
.x8f{left:324.409347pt;}
.xab{left:325.742680pt;}
.xc6{left:327.076013pt;}
.x48{left:328.409347pt;}
.x155{left:329.742680pt;}
.x102{left:331.076013pt;}
.x41{left:332.409347pt;}
.x20{left:333.742680pt;}
.x6b{left:335.076013pt;}
.x17{left:336.409347pt;}
.x116{left:337.742680pt;}
.x85{left:339.076013pt;}
.xdf{left:340.409347pt;}
.x7{left:341.742680pt;}
.x14{left:343.076013pt;}
.x4d{left:344.409347pt;}
.x4{left:345.742680pt;}
.x5e{left:347.076013pt;}
.x2b{left:348.409347pt;}
.x7d{left:349.742680pt;}
.x95{left:351.076013pt;}
.x109{left:352.409347pt;}
.x18{left:353.742680pt;}
.x32{left:355.076013pt;}
.xd3{left:356.409347pt;}
.xac{left:357.742680pt;}
.x164{left:359.076013pt;}
.x136{left:360.409347pt;}
.x5f{left:361.742680pt;}
.xd9{left:363.076013pt;}
.xb4{left:364.409347pt;}
.x4e{left:365.742680pt;}
.x96{left:367.076013pt;}
.x14b{left:368.409347pt;}
.x15a{left:369.742680pt;}
.x9d{left:371.076013pt;}
.xf8{left:372.409347pt;}
.xb9{left:373.742680pt;}
.xad{left:375.076013pt;}
.x37{left:376.409347pt;}
.xf2{left:377.742680pt;}
.x86{left:379.076013pt;}
.x8a{left:380.409347pt;}
.xe9{left:381.742680pt;}
.x10{left:383.076013pt;}
.x19{left:384.409347pt;}
.x73{left:385.742680pt;}
.x21{left:387.076013pt;}
.xfd{left:388.409347pt;}
.x54{left:389.742680pt;}
.x38{left:391.076013pt;}
.xe5{left:392.409347pt;}
.x64{left:393.742680pt;}
.xcd{left:395.076013pt;}
.xff{left:396.409347pt;}
.x33{left:397.742680pt;}
.x11b{left:399.076013pt;}
.x12d{left:400.409347pt;}
.x2c{left:401.742680pt;}
.xb{left:403.076013pt;}
.xf6{left:404.409347pt;}
.x7e{left:405.742680pt;}
.xeb{left:407.076013pt;}
.x22{left:408.409347pt;}
.x168{left:409.742680pt;}
.x55{left:411.076013pt;}
.x6c{left:412.409347pt;}
.x123{left:413.742680pt;}
.x147{left:415.076013pt;}
.xf3{left:416.409347pt;}
.x2d{left:417.742680pt;}
.xe6{left:419.076013pt;}
.x4f{left:420.409347pt;}
.x65{left:421.742680pt;}
.x141{left:423.076013pt;}
.x11e{left:424.409347pt;}
.x12b{left:425.742680pt;}
.xb5{left:427.076013pt;}
.xc1{left:428.409347pt;}
.xae{left:429.742680pt;}
.x8b{left:431.076013pt;}
.x6d{left:432.409347pt;}
.xfb{left:433.742680pt;}
.xb6{left:435.076013pt;}
.x97{left:436.409347pt;}
.x139{left:437.742680pt;}
.xbe{left:439.076013pt;}
.x8c{left:440.409347pt;}
.x104{left:441.742680pt;}
.x87{left:443.076013pt;}
.x9e{left:444.409347pt;}
.xec{left:445.742680pt;}
.x56{left:447.076013pt;}
.xc7{left:448.409347pt;}
.x10d{left:449.742680pt;}
.x23{left:451.076013pt;}
.x42{left:452.409347pt;}
.x7f{left:453.742680pt;}
.x153{left:455.076013pt;}
.x57{left:456.409347pt;}
.x10a{left:457.742680pt;}
.xdb{left:459.076013pt;}
.x66{left:460.409347pt;}
.x143{left:461.742680pt;}
.xb7{left:463.076013pt;}
.x98{left:464.409347pt;}
.x13c{left:465.742680pt;}
.xaf{left:467.076013pt;}
.x43{left:468.409347pt;}
.x140{left:469.742680pt;}
.xba{left:471.076013pt;}
.x6e{left:472.409347pt;}
.x80{left:473.742680pt;}
.x117{left:475.076013pt;}
.x12e{left:476.409347pt;}
.x125{left:477.742680pt;}
.xb0{left:479.076013pt;}
.x2e{left:480.409347pt;}
.x8d{left:481.742680pt;}
.x122{left:483.076013pt;}
.x67{left:484.409347pt;}
.x39{left:485.742680pt;}
.xf7{left:487.076013pt;}
.xb1{left:488.409347pt;}
.xd0{left:489.742680pt;}
.x74{left:491.076013pt;}
.xf4{left:492.409347pt;}
.xd4{left:493.742680pt;}
.x12c{left:495.076013pt;}
.x90{left:496.409347pt;}
.x132{left:497.742680pt;}
.x50{left:499.076013pt;}
.x3a{left:500.409347pt;}
.xc2{left:501.742680pt;}
.x11c{left:503.076013pt;}
.x60{left:504.409347pt;}
.x44{left:505.742680pt;}
.x107{left:507.076013pt;}
.x99{left:508.409347pt;}
.xc8{left:509.742680pt;}
.x13d{left:511.076013pt;}
.x9f{left:512.409347pt;}
.xe0{left:513.742680pt;}
.xed{left:515.076013pt;}
.xb2{left:516.409347pt;}
.x131{left:517.742680pt;}
.x68{left:519.076013pt;}
.x137{left:520.409347pt;}
.x24{left:521.742680pt;}
.x61{left:523.076013pt;}
.x158{left:524.409347pt;}
.x126{left:525.742680pt;}
.x51{left:527.076013pt;}
.x111{left:528.409347pt;}
.xd1{left:529.742680pt;}
.x121{left:531.076013pt;}
.xbf{left:532.409347pt;}
.x69{left:534.232693pt;}
.x3b{left:535.193987pt;}
.xc9{left:536.409347pt;}
.xa0{left:537.557507pt;}
.x152{left:539.076013pt;}
.xce{left:540.409347pt;}
.x157{left:541.742680pt;}
.x10e{left:543.076013pt;}
.x11a{left:544.409347pt;}
.x114{left:545.742680pt;}
.xbb{left:547.076013pt;}
.xdc{left:548.409347pt;}
.x118{left:549.742680pt;}
.x127{left:551.076013pt;}
.xee{left:552.409347pt;}
.x156{left:553.742680pt;}
.x16a{left:555.076013pt;}
.x154{left:556.409347pt;}
.x15b{left:557.742680pt;}
.x151{left:559.277027pt;}
.xca{left:561.059467pt;}
.x159{left:562.035533pt;}
.xe7{left:562.928147pt;}
.x10f{left:563.995227pt;}
.x16b{left:565.467053pt;}
.x16c{left:566.829933pt;}
}




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