
    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_dcc90be70c13d11dd013ed5c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_d81550eac638695ccab93791.woff')format("woff");}.ff2{font-family:ff2;line-height:0.989000;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_e92ad696fe59a6bc9847a763.woff')format("woff");}.ff3{font-family:ff3;line-height:0.997000;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_ca28bc7bd3ae72a8acb966fd.woff')format("woff");}.ff4{font-family:ff4;line-height:1.009000;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_c0ee4630b74b3097a438a732.woff')format("woff");}.ff5{font-family:ff5;line-height:1.010000;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_f2db19d2234d5084b32778d0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.211426;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_adb9cd82dcbf05f7c71e8c3c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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_23ceca378934a1111789c67a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.720000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f2db19d2234d5084b32778d0.woff')format("woff");}.ff9{font-family:ff9;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f2db19d2234d5084b32778d0.woff')format("woff");}.ffa{font-family:ffa;line-height:1.211426;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:ffb;src:url('chunks/assets/font_f2db19d2234d5084b32778d0.woff')format("woff");}.ffb{font-family:ffb;line-height:1.211426;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:ffc;src:url('chunks/assets/font_f2db19d2234d5084b32778d0.woff')format("woff");}.ffc{font-family:ffc;line-height:1.211426;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:ffd;src:url('chunks/assets/font_f2db19d2234d5084b32778d0.woff')format("woff");}.ffd{font-family:ffd;line-height:1.211426;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:ffe;src:url('chunks/assets/font_f2db19d2234d5084b32778d0.woff')format("woff");}.ffe{font-family:ffe;line-height:1.211426;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:fff;src:url('chunks/assets/font_f2db19d2234d5084b32778d0.woff')format("woff");}.fff{font-family:fff;line-height:1.211426;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:ff10;src:url('chunks/assets/font_f2db19d2234d5084b32778d0.woff')format("woff");}.ff10{font-family:ff10;line-height:1.211426;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:ff11;src:url('chunks/assets/font_f2db19d2234d5084b32778d0.woff')format("woff");}.ff11{font-family:ff11;line-height:1.211426;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:ff12;src:url('chunks/assets/font_f2db19d2234d5084b32778d0.woff')format("woff");}.ff12{font-family:ff12;line-height:1.211426;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:ff13;src:url('chunks/assets/font_15c18a72bd1518bfc9c77bfb.woff')format("woff");}.ff13{font-family:ff13;line-height:0.991000;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;}
.m9{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);}
.m1b{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,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);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls7{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000800px;}
.ls8{letter-spacing:0.001555px;}
.ls0{letter-spacing:0.003403px;}
.ls15{letter-spacing:0.004800px;}
.ls6{letter-spacing:11.954850px;}
.ls17{letter-spacing:13.395330px;}
.ls11{letter-spacing:13.448400px;}
.ls14{letter-spacing:13.463313px;}
.ls16{letter-spacing:13.472244px;}
.ls12{letter-spacing:13.595901px;}
.lsf{letter-spacing:13.660380px;}
.ls2{letter-spacing:14.944766px;}
.lse{letter-spacing:15.663483px;}
.ls10{letter-spacing:18.244518px;}
.ls13{letter-spacing:19.379812px;}
.ls1{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls3{letter-spacing:72.355200px;}
.lsb{letter-spacing:358.371842px;}
.lsc{letter-spacing:359.421483px;}
.lsa{letter-spacing:392.565483px;}
.ls9{letter-spacing:392.571483px;}
.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;}
}
.ws3a{word-spacing:-13.449600px;}
.ws25{word-spacing:-11.955150px;}
.ws9{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.ws6c{word-spacing:-3.287658px;}
.ws0{word-spacing:-2.092140px;}
.ws4{word-spacing:-2.015335px;}
.ws3{word-spacing:-2.008454px;}
.ws2{word-spacing:-1.966612px;}
.ws5f{word-spacing:-1.853044px;}
.ws53{word-spacing:-1.793268px;}
.ws73{word-spacing:-1.721549px;}
.ws1c{word-spacing:-1.613941px;}
.ws87{word-spacing:-1.506355px;}
.ws47{word-spacing:-1.494390px;}
.ws61{word-spacing:-1.434614px;}
.ws57{word-spacing:-1.374839px;}
.ws1a{word-spacing:-1.255288px;}
.ws60{word-spacing:-1.195512px;}
.ws74{word-spacing:-1.183565px;}
.ws8c{word-spacing:-1.129766px;}
.ws88{word-spacing:-1.022170px;}
.ws41{word-spacing:-0.836858px;}
.ws38{word-spacing:-0.777083px;}
.ws1b{word-spacing:-0.597756px;}
.ws5c{word-spacing:-0.418429px;}
.ws75{word-spacing:-0.376589px;}
.wsb{word-spacing:-0.358654px;}
.ws31{word-spacing:-0.298878px;}
.ws85{word-spacing:-0.268992px;}
.ws13{word-spacing:-0.239102px;}
.ws19{word-spacing:-0.179327px;}
.ws82{word-spacing:-0.161395px;}
.ws2f{word-spacing:-0.119551px;}
.ws7d{word-spacing:-0.107597px;}
.ws14{word-spacing:-0.059776px;}
.ws86{word-spacing:-0.053798px;}
.ws84{word-spacing:-0.007882px;}
.ws92{word-spacing:-0.005779px;}
.ws8{word-spacing:-0.005467px;}
.ws81{word-spacing:-0.003667px;}
.ws24{word-spacing:-0.001643px;}
.ws7{word-spacing:0.000000px;}
.ws70{word-spacing:0.053798px;}
.ws17{word-spacing:0.059776px;}
.ws18{word-spacing:0.119551px;}
.ws7f{word-spacing:0.161395px;}
.ws8d{word-spacing:0.161762px;}
.ws48{word-spacing:0.179327px;}
.ws76{word-spacing:0.200958px;}
.ws72{word-spacing:0.215194px;}
.ws21{word-spacing:0.239102px;}
.ws7c{word-spacing:0.268992px;}
.ws10{word-spacing:0.298878px;}
.ws6f{word-spacing:0.322790px;}
.ws42{word-spacing:0.358654px;}
.ws34{word-spacing:0.418429px;}
.ws6{word-spacing:0.422252px;}
.ws1e{word-spacing:0.537980px;}
.ws49{word-spacing:0.597756px;}
.ws29{word-spacing:0.657532px;}
.ws5b{word-spacing:0.717307px;}
.ws66{word-spacing:0.743222px;}
.ws69{word-spacing:0.745022px;}
.ws67{word-spacing:0.747122px;}
.ws68{word-spacing:0.749222px;}
.ws7b{word-spacing:0.806976px;}
.ws4d{word-spacing:0.836858px;}
.ws22{word-spacing:0.896634px;}
.ws5a{word-spacing:1.016185px;}
.ws32{word-spacing:1.135736px;}
.ws6e{word-spacing:1.183565px;}
.ws27{word-spacing:1.195512px;}
.wse{word-spacing:1.255288px;}
.ws63{word-spacing:1.374839px;}
.ws64{word-spacing:1.434614px;}
.ws2e{word-spacing:1.613941px;}
.ws1f{word-spacing:1.853044px;}
.ws33{word-spacing:1.912819px;}
.ws2d{word-spacing:2.032370px;}
.ws28{word-spacing:2.092146px;}
.ws1d{word-spacing:2.151922px;}
.ws8a{word-spacing:2.151936px;}
.ws89{word-spacing:2.205734px;}
.wsc{word-spacing:2.211697px;}
.ws37{word-spacing:2.271473px;}
.wsf{word-spacing:2.331248px;}
.ws51{word-spacing:2.391024px;}
.ws52{word-spacing:2.510575px;}
.ws12{word-spacing:2.809453px;}
.ws55{word-spacing:2.851315px;}
.ws36{word-spacing:2.869229px;}
.wsa{word-spacing:2.869236px;}
.ws30{word-spacing:3.048556px;}
.ws20{word-spacing:3.108331px;}
.ws7e{word-spacing:3.120307px;}
.ws8b{word-spacing:3.220003px;}
.ws83{word-spacing:3.222509px;}
.ws8e{word-spacing:3.223680px;}
.ws95{word-spacing:3.224208px;}
.ws59{word-spacing:3.227882px;}
.ws7a{word-spacing:3.227904px;}
.ws94{word-spacing:3.281702px;}
.ws54{word-spacing:3.407209px;}
.ws5e{word-spacing:3.466985px;}
.ws96{word-spacing:3.496896px;}
.ws4c{word-spacing:3.526760px;}
.ws71{word-spacing:3.526952px;}
.ws15{word-spacing:3.583475px;}
.ws4a{word-spacing:3.586536px;}
.ws93{word-spacing:3.712090px;}
.ws2b{word-spacing:3.765863px;}
.ws78{word-spacing:3.765888px;}
.ws23{word-spacing:3.825638px;}
.ws6a{word-spacing:3.885414px;}
.ws77{word-spacing:3.927283px;}
.ws43{word-spacing:4.004965px;}
.ws2c{word-spacing:4.303843px;}
.ws16{word-spacing:4.303872px;}
.ws4f{word-spacing:4.363619px;}
.ws80{word-spacing:4.465267px;}
.ws90{word-spacing:4.680461px;}
.ws11{word-spacing:4.782048px;}
.ws26{word-spacing:5.021150px;}
.wsd{word-spacing:5.260253px;}
.ws8f{word-spacing:5.272243px;}
.ws40{word-spacing:5.379804px;}
.ws35{word-spacing:5.439580px;}
.ws58{word-spacing:5.559131px;}
.ws2a{word-spacing:5.738458px;}
.ws56{word-spacing:6.037336px;}
.ws3b{word-spacing:6.079219px;}
.ws62{word-spacing:6.097111px;}
.ws39{word-spacing:6.133018px;}
.ws6d{word-spacing:6.216662px;}
.ws6b{word-spacing:6.395989px;}
.ws50{word-spacing:6.515540px;}
.ws44{word-spacing:6.694867px;}
.ws4e{word-spacing:6.993745px;}
.ws5d{word-spacing:7.292623px;}
.ws46{word-spacing:7.477978px;}
.ws45{word-spacing:7.531776px;}
.ws4b{word-spacing:7.950155px;}
.ws79{word-spacing:15.048113px;}
.ws91{word-spacing:17.777140px;}
.ws1{word-spacing:22.742681px;}
.ws3e{word-spacing:565.512814px;}
.ws3d{word-spacing:567.604960px;}
.ws3f{word-spacing:569.459964px;}
.ws3c{word-spacing:570.533964px;}
.ws65{word-spacing:675.344729px;}
._c{margin-left:-24.926425px;}
._42{margin-left:-23.832691px;}
._3f{margin-left:-21.227233px;}
._4{margin-left:-16.988177px;}
._7{margin-left:-11.943245px;}
._3d{margin-left:-7.711207px;}
._8{margin-left:-6.635092px;}
._2{margin-left:-5.481407px;}
._1{margin-left:-3.849538px;}
._5{margin-left:-2.301354px;}
._e{margin-left:-1.075961px;}
._9{width:2.010808px;}
._3{width:3.975835px;}
._b{width:5.020727px;}
._41{width:6.517122px;}
._0{width:10.879128px;}
._40{width:12.696422px;}
._d{width:14.824386px;}
._27{width:16.587722px;}
._13{width:18.291334px;}
._25{width:19.636278px;}
._14{width:20.682358px;}
._6{width:21.759456px;}
._1a{width:23.611362px;}
._15{width:24.627547px;}
._f{width:25.643732px;}
._28{width:26.719693px;}
._12{width:27.795654px;}
._29{width:29.439476px;}
._16{width:30.485556px;}
._19{width:31.675073px;}
._11{width:33.593887px;}
._10{width:34.789399px;}
._2b{width:37.299974px;}
._3c{width:38.346041px;}
._26{width:39.704124px;}
._2a{width:41.185388px;}
._a{width:54.423634px;}
._3e{width:88.767360px;}
._24{width:132.104076px;}
._22{width:169.284499px;}
._20{width:170.838665px;}
._1b{width:178.071512px;}
._1c{width:256.078670px;}
._2f{width:334.205380px;}
._37{width:363.794302px;}
._1d{width:373.059520px;}
._1e{width:440.366845px;}
._2e{width:478.623229px;}
._2d{width:514.309262px;}
._30{width:524.674340px;}
._3a{width:549.875744px;}
._3b{width:556.419041px;}
._35{width:570.165388px;}
._38{width:571.359498px;}
._36{width:585.561778px;}
._23{width:589.746070px;}
._21{width:591.778440px;}
._1f{width:594.707444px;}
._39{width:600.505678px;}
._32{width:675.344729px;}
._31{width:680.306104px;}
._34{width:710.193904px;}
._33{width:717.665854px;}
._17{width:1855.898700px;}
._2c{width:2494.970700px;}
._18{width:2518.880700px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fsa{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fs8{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs7{font-size:60.120000px;}
.fs9{font-size:62.286600px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y63{bottom:2.447577px;}
.y7c{bottom:3.256864px;}
.yb5{bottom:3.539042px;}
.y9b{bottom:3.732490px;}
.ye3{bottom:3.990299px;}
.ya1{bottom:4.013511px;}
.yaf{bottom:4.323387px;}
.y106{bottom:4.907622px;}
.yd7{bottom:5.281773px;}
.yc4{bottom:5.593863px;}
.ye0{bottom:5.690146px;}
.y3f{bottom:45.921000px;}
.y3e{bottom:99.720000px;}
.yb0{bottom:100.071000px;}
.y14{bottom:100.260000px;}
.y119{bottom:103.590000px;}
.y9f{bottom:106.234500px;}
.y13{bottom:118.147500px;}
.y3d{bottom:120.610500px;}
.yae{bottom:122.500500px;}
.y118{bottom:124.482000px;}
.y9e{bottom:127.126500px;}
.y147{bottom:127.327500px;}
.y12{bottom:136.035000px;}
.y3c{bottom:141.502500px;}
.y66{bottom:142.162500px;}
.y117{bottom:145.374000px;}
.y146{bottom:146.478000px;}
.y9d{bottom:148.018500px;}
.y11{bottom:153.924000px;}
.y3b{bottom:162.394500px;}
.y145{bottom:165.628500px;}
.y116{bottom:166.266000px;}
.y8d{bottom:166.878000px;}
.yc2{bottom:167.613000px;}
.y10{bottom:171.811500px;}
.yd5{bottom:173.734500px;}
.ye1{bottom:175.662000px;}
.y65{bottom:177.790500px;}
.y3a{bottom:183.285000px;}
.y9c{bottom:183.646500px;}
.y144{bottom:184.779000px;}
.y115{bottom:187.156500px;}
.yc1{bottom:188.505000px;}
.yf{bottom:189.699000px;}
.yd4{bottom:194.626500px;}
.y64{bottom:197.023500px;}
.ydf{bottom:198.091500px;}
.y8c{bottom:202.219500px;}
.y143{bottom:203.929500px;}
.y39{bottom:204.177000px;}
.yff{bottom:204.621000px;}
.y9a{bottom:206.075400px;}
.ye{bottom:207.586500px;}
.y114{bottom:208.048500px;}
.yc0{bottom:209.397000px;}
.yd3{bottom:215.518500px;}
.y62{bottom:219.452400px;}
.y142{bottom:223.080000px;}
.y8b{bottom:223.111500px;}
.y38{bottom:225.069000px;}
.yd{bottom:225.475500px;}
.yfe{bottom:225.513000px;}
.y113{bottom:228.940500px;}
.ybf{bottom:230.287500px;}
.yd2{bottom:236.409000px;}
.y141{bottom:242.230500px;}
.y8a{bottom:244.003500px;}
.y37{bottom:245.961000px;}
.yfd{bottom:246.403500px;}
.y112{bottom:249.831000px;}
.ybe{bottom:251.179500px;}
.yc{bottom:252.330000px;}
.yd1{bottom:257.301000px;}
.y140{bottom:261.382500px;}
.y89{bottom:264.894000px;}
.y36{bottom:266.851500px;}
.yfc{bottom:267.295500px;}
.yb{bottom:270.217500px;}
.y111{bottom:270.723000px;}
.yd0{bottom:278.193000px;}
.y13f{bottom:280.533000px;}
.y87{bottom:285.786000px;}
.ybd{bottom:286.807500px;}
.y35{bottom:287.743500px;}
.ya{bottom:288.105000px;}
.yfb{bottom:288.187500px;}
.y88{bottom:291.210000px;}
.y110{bottom:291.615000px;}
.ycf{bottom:299.085000px;}
.y13e{bottom:299.683500px;}
.y9{bottom:305.994000px;}
.y86{bottom:306.678000px;}
.y34{bottom:308.635500px;}
.yfa{bottom:309.078000px;}
.y10f{bottom:312.505500px;}
.y13d{bottom:318.834000px;}
.y8{bottom:323.881500px;}
.y85{bottom:327.568500px;}
.y33{bottom:329.526000px;}
.yf9{bottom:329.970000px;}
.y10e{bottom:333.397500px;}
.yce{bottom:334.711500px;}
.y13c{bottom:337.984500px;}
.y7{bottom:341.769000px;}
.y83{bottom:348.460500px;}
.y32{bottom:350.418000px;}
.yf8{bottom:350.862000px;}
.y84{bottom:353.884500px;}
.y10d{bottom:354.289500px;}
.y13b{bottom:357.135000px;}
.y6{bottom:359.658000px;}
.y82{bottom:369.352500px;}
.y31{bottom:371.310000px;}
.yf7{bottom:371.752500px;}
.y10c{bottom:375.180000px;}
.y13a{bottom:376.285500px;}
.y5{bottom:383.523000px;}
.y81{bottom:390.243000px;}
.y30{bottom:392.200500px;}
.yf6{bottom:392.644500px;}
.y139{bottom:395.436000px;}
.y10b{bottom:400.555500px;}
.y4{bottom:401.410500px;}
.y80{bottom:411.135000px;}
.y2f{bottom:413.092500px;}
.yf5{bottom:413.536500px;}
.y138{bottom:414.586500px;}
.y3{bottom:419.299500px;}
.y137{bottom:433.737000px;}
.y2e{bottom:433.984500px;}
.yf4{bottom:434.427000px;}
.y7f{bottom:436.510500px;}
.y2{bottom:437.187000px;}
.y10a{bottom:439.380000px;}
.y61{bottom:445.606500px;}
.y136{bottom:452.887500px;}
.y2d{bottom:454.875000px;}
.yf3{bottom:455.319000px;}
.y109{bottom:460.270500px;}
.y1{bottom:461.052000px;}
.y60{bottom:466.498500px;}
.y7e{bottom:467.824500px;}
.y135{bottom:472.038000px;}
.yf2{bottom:476.211000px;}
.y2c{bottom:480.250500px;}
.y108{bottom:481.162500px;}
.y7d{bottom:487.056000px;}
.y5f{bottom:487.390500px;}
.y134{bottom:491.188500px;}
.yf1{bottom:497.101500px;}
.y5e{bottom:508.281000px;}
.y7b{bottom:509.485500px;}
.y133{bottom:510.339000px;}
.yde{bottom:514.566000px;}
.y107{bottom:516.790500px;}
.yf0{bottom:522.477000px;}
.yad{bottom:527.749500px;}
.y5d{bottom:529.173000px;}
.y132{bottom:529.489500px;}
.ydd{bottom:535.458000px;}
.y105{bottom:539.220000px;}
.yac{bottom:548.640000px;}
.y5c{bottom:550.065000px;}
.ydc{bottom:556.350000px;}
.yef{bottom:557.820000px;}
.y2b{bottom:559.462500px;}
.y131{bottom:567.790500px;}
.yab{bottom:569.532000px;}
.y5b{bottom:570.955500px;}
.ydb{bottom:577.240500px;}
.yee{bottom:578.710500px;}
.y130{bottom:586.941000px;}
.ybc{bottom:588.259500px;}
.yaa{bottom:590.424000px;}
.y5a{bottom:596.331000px;}
.yda{bottom:598.132500px;}
.y2a{bottom:598.287000px;}
.yec{bottom:599.602500px;}
.yed{bottom:605.026500px;}
.y12f{bottom:606.091500px;}
.ybb{bottom:609.150000px;}
.ya9{bottom:611.314500px;}
.y29{bottom:619.177500px;}
.yeb{bottom:620.494500px;}
.y59{bottom:620.763000px;}
.y12e{bottom:625.242000px;}
.yba{bottom:630.042000px;}
.ya8{bottom:632.206500px;}
.yd9{bottom:632.292000px;}
.y28{bottom:640.069500px;}
.yea{bottom:641.385000px;}
.y12d{bottom:644.392500px;}
.ycd{bottom:648.060000px;}
.yb9{bottom:650.934000px;}
.ya7{bottom:653.098500px;}
.y58{bottom:659.587500px;}
.y27{bottom:660.961500px;}
.ye9{bottom:662.277000px;}
.y12c{bottom:663.544500px;}
.ycc{bottom:668.952000px;}
.yb8{bottom:671.824500px;}
.ya6{bottom:673.989000px;}
.y57{bottom:680.478000px;}
.y26{bottom:681.852000px;}
.y12b{bottom:682.695000px;}
.ye8{bottom:683.169000px;}
.ycb{bottom:689.842500px;}
.ya5{bottom:694.881000px;}
.y56{bottom:701.370000px;}
.y12a{bottom:701.845500px;}
.y25{bottom:702.744000px;}
.ye7{bottom:704.059500px;}
.yb7{bottom:707.452500px;}
.yca{bottom:710.734500px;}
.y15b{bottom:714.049500px;}
.ya4{bottom:715.773000px;}
.y129{bottom:720.996000px;}
.y55{bottom:722.262000px;}
.y24{bottom:723.636000px;}
.ye6{bottom:724.951500px;}
.yb6{bottom:726.685500px;}
.yc9{bottom:731.626500px;}
.y15a{bottom:733.200000px;}
.ya3{bottom:736.665000px;}
.y7a{bottom:739.950000px;}
.y54{bottom:743.152500px;}
.y23{bottom:744.526500px;}
.y128{bottom:744.630000px;}
.ye5{bottom:745.843500px;}
.yb4{bottom:749.115000px;}
.y159{bottom:752.350500px;}
.yc8{bottom:752.518500px;}
.y78{bottom:760.842000px;}
.y53{bottom:764.044500px;}
.y22{bottom:765.418500px;}
.y79{bottom:766.266000px;}
.ya2{bottom:772.291500px;}
.yc7{bottom:773.409000px;}
.ye4{bottom:781.471500px;}
.y77{bottom:781.734000px;}
.y99{bottom:781.828500px;}
.y127{bottom:783.453000px;}
.y52{bottom:784.936500px;}
.y21{bottom:786.310500px;}
.yc6{bottom:794.301000px;}
.ya0{bottom:794.721000px;}
.y158{bottom:795.382500px;}
.y76{bottom:802.624500px;}
.y98{bottom:802.720500px;}
.ye2{bottom:803.899500px;}
.y51{bottom:805.827000px;}
.y20{bottom:807.202500px;}
.y126{bottom:811.918500px;}
.y157{bottom:814.533000px;}
.y75{bottom:823.516500px;}
.y50{bottom:826.719000px;}
.y97{bottom:828.096000px;}
.yc5{bottom:829.929000px;}
.yd8{bottom:830.589000px;}
.y125{bottom:831.417000px;}
.y156{bottom:833.683500px;}
.y1f{bottom:837.060000px;}
.y74{bottom:844.408500px;}
.y4f{bottom:847.611000px;}
.yc3{bottom:852.358500px;}
.y96{bottom:852.526500px;}
.y155{bottom:852.834000px;}
.yd6{bottom:853.018500px;}
.y124{bottom:859.882500px;}
.y73{bottom:865.299000px;}
.y4e{bottom:868.503000px;}
.y154{bottom:871.984500px;}
.y1e{bottom:874.566000px;}
.y123{bottom:888.348000px;}
.y4d{bottom:889.393500px;}
.y72{bottom:890.674500px;}
.y1d{bottom:890.704500px;}
.y153{bottom:891.135000px;}
.y95{bottom:891.351000px;}
.y1c{bottom:906.844500px;}
.y4c{bottom:910.285500px;}
.y94{bottom:912.243000px;}
.y122{bottom:916.813500px;}
.y1b{bottom:927.324000px;}
.y152{bottom:929.436000px;}
.y4b{bottom:931.177500px;}
.y93{bottom:933.135000px;}
.y121{bottom:936.312000px;}
.y71{bottom:937.321500px;}
.y1a{bottom:939.123000px;}
.y151{bottom:948.586500px;}
.y4a{bottom:952.068000px;}
.y92{bottom:954.025500px;}
.y70{bottom:955.254000px;}
.y120{bottom:955.810500px;}
.y19{bottom:959.602500px;}
.y104{bottom:965.985000px;}
.y150{bottom:967.737000px;}
.y49{bottom:972.960000px;}
.y6f{bottom:973.186500px;}
.y91{bottom:974.917500px;}
.y11f{bottom:975.309000px;}
.y103{bottom:983.917500px;}
.y14f{bottom:986.887500px;}
.y6e{bottom:991.120500px;}
.y48{bottom:993.852000px;}
.y90{bottom:1000.291500px;}
.y18{bottom:1001.764500px;}
.y102{bottom:1001.850000px;}
.y11e{bottom:1003.774500px;}
.y14e{bottom:1006.038000px;}
.y6d{bottom:1009.053000px;}
.y47{bottom:1014.742500px;}
.y101{bottom:1019.782500px;}
.y11d{bottom:1023.273000px;}
.y14d{bottom:1025.188500px;}
.y6c{bottom:1026.985500px;}
.y46{bottom:1035.634500px;}
.y100{bottom:1037.716500px;}
.y17{bottom:1040.589000px;}
.y11c{bottom:1042.771500px;}
.y14c{bottom:1044.339000px;}
.y6b{bottom:1044.918000px;}
.y8f{bottom:1053.796500px;}
.y45{bottom:1056.526500px;}
.y11b{bottom:1062.270000px;}
.y6a{bottom:1062.850500px;}
.y14b{bottom:1063.489500px;}
.y16{bottom:1071.927000px;}
.yb3{bottom:1072.935000px;}
.y8e{bottom:1074.688500px;}
.y44{bottom:1077.417000px;}
.y69{bottom:1080.784500px;}
.y11a{bottom:1081.768500px;}
.y14a{bottom:1082.640000px;}
.yb2{bottom:1093.825500px;}
.y43{bottom:1098.309000px;}
.y149{bottom:1101.790500px;}
.y15{bottom:1103.263500px;}
.y68{bottom:1105.918500px;}
.yb1{bottom:1114.717500px;}
.y42{bottom:1119.201000px;}
.y148{bottom:1120.941000px;}
.y41{bottom:1140.091500px;}
.y67{bottom:1141.573500px;}
.y40{bottom:1200.196500px;}
.he{height:31.526842px;}
.h6{height:32.565965px;}
.h2{height:37.993262px;}
.h10{height:41.250077px;}
.h8{height:43.217759px;}
.h7{height:43.421105px;}
.h3{height:43.815515px;}
.hd{height:48.848947px;}
.ha{height:51.861658px;}
.h9{height:54.276245px;}
.h5{height:54.547601px;}
.hc{height:55.922168px;}
.h4{height:77.792486px;}
.hb{height:211.479600px;}
.hf{height:212.139000px;}
.h17{height:300.036000px;}
.h16{height:302.019000px;}
.h15{height:302.679000px;}
.h14{height:304.662000px;}
.h12{height:305.322000px;}
.h13{height:390.574500px;}
.h18{height:395.202000px;}
.h11{height:561.080100px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:312.592500px;}
.w3{width:511.515000px;}
.w9{width:520.767000px;}
.wc{width:527.376000px;}
.w8{width:534.645000px;}
.wb{width:535.968000px;}
.wa{width:539.931000px;}
.w7{width:540.594000px;}
.w6{width:557.775000px;}
.w4{width:563.722500px;}
.w2{width:569.010000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x43{left:64.044000px;}
.x27{left:75.825000px;}
.x47{left:85.848000px;}
.x41{left:97.704000px;}
.x44{left:121.584000px;}
.x40{left:125.955000px;}
.x28{left:128.329500px;}
.x42{left:142.356000px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x3{left:269.544000px;}
.x3f{left:275.632500px;}
.x29{left:278.110500px;}
.x5{left:281.479500px;}
.x2a{left:284.916000px;}
.x35{left:310.177490px;}
.x1e{left:330.993000px;}
.x1f{left:345.937500px;}
.x20{left:349.747500px;}
.x12{left:357.238500px;}
.x13{left:364.710000px;}
.x14{left:372.331500px;}
.x15{left:379.804500px;}
.x32{left:381.237000px;}
.x33{left:387.663000px;}
.x3b{left:414.450000px;}
.x3c{left:429.393000px;}
.xc{left:434.755500px;}
.xd{left:442.228500px;}
.x22{left:458.488500px;}
.x2e{left:461.527500px;}
.x2f{left:468.333000px;}
.x1a{left:470.172000px;}
.x23{left:473.433000px;}
.x1b{left:485.116500px;}
.x1c{left:488.928000px;}
.x1d{left:503.871000px;}
.x2b{left:506.888678px;}
.x38{left:515.796359px;}
.x21{left:518.452500px;}
.x2c{left:522.051000px;}
.x45{left:523.471187px;}
.x2d{left:528.858000px;}
.x3a{left:532.210816px;}
.x39{left:534.126196px;}
.x37{left:535.627173px;}
.x18{left:547.860000px;}
.x36{left:553.385644px;}
.x34{left:558.874270px;}
.x19{left:562.803000px;}
.x26{left:564.998992px;}
.x24{left:586.305000px;}
.x16{left:595.204500px;}
.x25{left:601.249500px;}
.x17{left:610.149000px;}
.x6{left:667.110000px;}
.x8{left:668.148000px;}
.x7{left:674.583000px;}
.x9{left:675.619500px;}
.xe{left:690.069000px;}
.xf{left:697.542000px;}
.x10{left:701.352000px;}
.x11{left:708.825000px;}
.x3d{left:731.203500px;}
.xa{left:742.881000px;}
.x3e{left:746.148000px;}
.xb{left:750.354000px;}
.x46{left:762.034500px;}
.x30{left:830.544000px;}
.x31{left:836.970000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls7{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000711pt;}
.ls8{letter-spacing:0.001382pt;}
.ls0{letter-spacing:0.003025pt;}
.ls15{letter-spacing:0.004267pt;}
.ls6{letter-spacing:10.626533pt;}
.ls17{letter-spacing:11.906960pt;}
.ls11{letter-spacing:11.954133pt;}
.ls14{letter-spacing:11.967389pt;}
.ls16{letter-spacing:11.975328pt;}
.ls12{letter-spacing:12.085245pt;}
.lsf{letter-spacing:12.142560pt;}
.ls2{letter-spacing:13.284237pt;}
.lse{letter-spacing:13.923096pt;}
.ls10{letter-spacing:16.217349pt;}
.ls13{letter-spacing:17.226499pt;}
.ls1{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls3{letter-spacing:64.315733pt;}
.lsb{letter-spacing:318.552749pt;}
.lsc{letter-spacing:319.485762pt;}
.lsa{letter-spacing:348.947096pt;}
.ls9{letter-spacing:348.952429pt;}
.ws3a{word-spacing:-11.955200pt;}
.ws25{word-spacing:-10.626800pt;}
.ws9{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.ws6c{word-spacing:-2.922363pt;}
.ws0{word-spacing:-1.859680pt;}
.ws4{word-spacing:-1.791409pt;}
.ws3{word-spacing:-1.785293pt;}
.ws2{word-spacing:-1.748099pt;}
.ws5f{word-spacing:-1.647150pt;}
.ws53{word-spacing:-1.594016pt;}
.ws73{word-spacing:-1.530266pt;}
.ws1c{word-spacing:-1.434614pt;}
.ws87{word-spacing:-1.338982pt;}
.ws47{word-spacing:-1.328347pt;}
.ws61{word-spacing:-1.275213pt;}
.ws57{word-spacing:-1.222079pt;}
.ws1a{word-spacing:-1.115811pt;}
.ws60{word-spacing:-1.062677pt;}
.ws74{word-spacing:-1.052058pt;}
.ws8c{word-spacing:-1.004237pt;}
.ws88{word-spacing:-0.908595pt;}
.ws41{word-spacing:-0.743874pt;}
.ws38{word-spacing:-0.690740pt;}
.ws1b{word-spacing:-0.531339pt;}
.ws5c{word-spacing:-0.371937pt;}
.ws75{word-spacing:-0.334746pt;}
.wsb{word-spacing:-0.318803pt;}
.ws31{word-spacing:-0.265669pt;}
.ws85{word-spacing:-0.239104pt;}
.ws13{word-spacing:-0.212535pt;}
.ws19{word-spacing:-0.159402pt;}
.ws82{word-spacing:-0.143462pt;}
.ws2f{word-spacing:-0.106268pt;}
.ws7d{word-spacing:-0.095642pt;}
.ws14{word-spacing:-0.053134pt;}
.ws86{word-spacing:-0.047821pt;}
.ws84{word-spacing:-0.007006pt;}
.ws92{word-spacing:-0.005137pt;}
.ws8{word-spacing:-0.004860pt;}
.ws81{word-spacing:-0.003260pt;}
.ws24{word-spacing:-0.001460pt;}
.ws7{word-spacing:0.000000pt;}
.ws70{word-spacing:0.047821pt;}
.ws17{word-spacing:0.053134pt;}
.ws18{word-spacing:0.106268pt;}
.ws7f{word-spacing:0.143462pt;}
.ws8d{word-spacing:0.143788pt;}
.ws48{word-spacing:0.159402pt;}
.ws76{word-spacing:0.178629pt;}
.ws72{word-spacing:0.191283pt;}
.ws21{word-spacing:0.212535pt;}
.ws7c{word-spacing:0.239104pt;}
.ws10{word-spacing:0.265669pt;}
.ws6f{word-spacing:0.286925pt;}
.ws42{word-spacing:0.318803pt;}
.ws34{word-spacing:0.371937pt;}
.ws6{word-spacing:0.375335pt;}
.ws1e{word-spacing:0.478205pt;}
.ws49{word-spacing:0.531339pt;}
.ws29{word-spacing:0.584473pt;}
.ws5b{word-spacing:0.637606pt;}
.ws66{word-spacing:0.660642pt;}
.ws69{word-spacing:0.662242pt;}
.ws67{word-spacing:0.664109pt;}
.ws68{word-spacing:0.665975pt;}
.ws7b{word-spacing:0.717312pt;}
.ws4d{word-spacing:0.743874pt;}
.ws22{word-spacing:0.797008pt;}
.ws5a{word-spacing:0.903276pt;}
.ws32{word-spacing:1.009543pt;}
.ws6e{word-spacing:1.052058pt;}
.ws27{word-spacing:1.062677pt;}
.wse{word-spacing:1.115811pt;}
.ws63{word-spacing:1.222079pt;}
.ws64{word-spacing:1.275213pt;}
.ws2e{word-spacing:1.434614pt;}
.ws1f{word-spacing:1.647150pt;}
.ws33{word-spacing:1.700284pt;}
.ws2d{word-spacing:1.806551pt;}
.ws28{word-spacing:1.859685pt;}
.ws1d{word-spacing:1.912819pt;}
.ws8a{word-spacing:1.912832pt;}
.ws89{word-spacing:1.960653pt;}
.wsc{word-spacing:1.965953pt;}
.ws37{word-spacing:2.019087pt;}
.wsf{word-spacing:2.072221pt;}
.ws51{word-spacing:2.125355pt;}
.ws52{word-spacing:2.231622pt;}
.ws12{word-spacing:2.497292pt;}
.ws55{word-spacing:2.534502pt;}
.ws36{word-spacing:2.550426pt;}
.wsa{word-spacing:2.550432pt;}
.ws30{word-spacing:2.709827pt;}
.ws20{word-spacing:2.762961pt;}
.ws7e{word-spacing:2.773606pt;}
.ws8b{word-spacing:2.862225pt;}
.ws83{word-spacing:2.864452pt;}
.ws8e{word-spacing:2.865493pt;}
.ws95{word-spacing:2.865963pt;}
.ws59{word-spacing:2.869229pt;}
.ws7a{word-spacing:2.869248pt;}
.ws94{word-spacing:2.917069pt;}
.ws54{word-spacing:3.028630pt;}
.ws5e{word-spacing:3.081764pt;}
.ws96{word-spacing:3.108352pt;}
.ws4c{word-spacing:3.134898pt;}
.ws71{word-spacing:3.135068pt;}
.ws15{word-spacing:3.185311pt;}
.ws4a{word-spacing:3.188032pt;}
.ws93{word-spacing:3.299635pt;}
.ws2b{word-spacing:3.347434pt;}
.ws78{word-spacing:3.347456pt;}
.ws23{word-spacing:3.400567pt;}
.ws6a{word-spacing:3.453701pt;}
.ws77{word-spacing:3.490918pt;}
.ws43{word-spacing:3.559969pt;}
.ws2c{word-spacing:3.825638pt;}
.ws16{word-spacing:3.825664pt;}
.ws4f{word-spacing:3.878772pt;}
.ws80{word-spacing:3.969126pt;}
.ws90{word-spacing:4.160410pt;}
.ws11{word-spacing:4.250709pt;}
.ws26{word-spacing:4.463245pt;}
.wsd{word-spacing:4.675780pt;}
.ws8f{word-spacing:4.686438pt;}
.ws40{word-spacing:4.782048pt;}
.ws35{word-spacing:4.835182pt;}
.ws58{word-spacing:4.941450pt;}
.ws2a{word-spacing:5.100851pt;}
.ws56{word-spacing:5.366521pt;}
.ws3b{word-spacing:5.403750pt;}
.ws62{word-spacing:5.419654pt;}
.ws39{word-spacing:5.451571pt;}
.ws6d{word-spacing:5.525922pt;}
.ws6b{word-spacing:5.685324pt;}
.ws50{word-spacing:5.791591pt;}
.ws44{word-spacing:5.950993pt;}
.ws4e{word-spacing:6.216662pt;}
.ws5d{word-spacing:6.482332pt;}
.ws46{word-spacing:6.647091pt;}
.ws45{word-spacing:6.694912pt;}
.ws4b{word-spacing:7.066804pt;}
.ws79{word-spacing:13.376101pt;}
.ws91{word-spacing:15.801902pt;}
.ws1{word-spacing:20.215716pt;}
.ws3e{word-spacing:502.678057pt;}
.ws3d{word-spacing:504.537742pt;}
.ws3f{word-spacing:506.186635pt;}
.ws3c{word-spacing:507.141301pt;}
.ws65{word-spacing:600.306426pt;}
._c{margin-left:-22.156822pt;}
._42{margin-left:-21.184614pt;}
._3f{margin-left:-18.868652pt;}
._4{margin-left:-15.100602pt;}
._7{margin-left:-10.616218pt;}
._3d{margin-left:-6.854406pt;}
._8{margin-left:-5.897859pt;}
._2{margin-left:-4.872362pt;}
._1{margin-left:-3.421811pt;}
._5{margin-left:-2.045648pt;}
._e{margin-left:-0.956410pt;}
._9{width:1.787385pt;}
._3{width:3.534076pt;}
._b{width:4.462868pt;}
._41{width:5.792998pt;}
._0{width:9.670336pt;}
._40{width:11.285709pt;}
._d{width:13.177232pt;}
._27{width:14.744642pt;}
._13{width:16.258963pt;}
._25{width:17.454469pt;}
._14{width:18.384318pt;}
._6{width:19.341739pt;}
._1a{width:20.987877pt;}
._15{width:21.891153pt;}
._f{width:22.794429pt;}
._28{width:23.750838pt;}
._12{width:24.707248pt;}
._29{width:26.168423pt;}
._16{width:27.098272pt;}
._19{width:28.155620pt;}
._11{width:29.861233pt;}
._10{width:30.923910pt;}
._2b{width:33.155533pt;}
._3c{width:34.085370pt;}
._26{width:35.292555pt;}
._2a{width:36.609234pt;}
._a{width:48.376563pt;}
._3e{width:78.904320pt;}
._24{width:117.425845pt;}
._22{width:150.475110pt;}
._20{width:151.856591pt;}
._1b{width:158.285789pt;}
._1c{width:227.625485pt;}
._2f{width:297.071449pt;}
._37{width:323.372713pt;}
._1d{width:331.608462pt;}
._1e{width:391.437196pt;}
._2e{width:425.442870pt;}
._2d{width:457.163789pt;}
._30{width:466.377191pt;}
._3a{width:488.778439pt;}
._3b{width:494.594703pt;}
._35{width:506.813678pt;}
._38{width:507.875109pt;}
._36{width:520.499358pt;}
._23{width:524.218729pt;}
._21{width:526.025280pt;}
._1f{width:528.628839pt;}
._39{width:533.782825pt;}
._32{width:600.306426pt;}
._31{width:604.716537pt;}
._34{width:631.283470pt;}
._33{width:637.925203pt;}
._17{width:1649.687733pt;}
._2c{width:2217.751733pt;}
._18{width:2239.005067pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fsa{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fs8{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs7{font-size:53.440000pt;}
.fs9{font-size:55.365867pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:2.175624pt;}
.y7c{bottom:2.894990pt;}
.yb5{bottom:3.145815pt;}
.y9b{bottom:3.317769pt;}
.ye3{bottom:3.546933pt;}
.ya1{bottom:3.567566pt;}
.yaf{bottom:3.843011pt;}
.y106{bottom:4.362331pt;}
.yd7{bottom:4.694909pt;}
.yc4{bottom:4.972323pt;}
.ye0{bottom:5.057908pt;}
.y3f{bottom:40.818667pt;}
.y3e{bottom:88.640000pt;}
.yb0{bottom:88.952000pt;}
.y14{bottom:89.120000pt;}
.y119{bottom:92.080000pt;}
.y9f{bottom:94.430667pt;}
.y13{bottom:105.020000pt;}
.y3d{bottom:107.209333pt;}
.yae{bottom:108.889333pt;}
.y118{bottom:110.650667pt;}
.y9e{bottom:113.001333pt;}
.y147{bottom:113.180000pt;}
.y12{bottom:120.920000pt;}
.y3c{bottom:125.780000pt;}
.y66{bottom:126.366667pt;}
.y117{bottom:129.221333pt;}
.y146{bottom:130.202667pt;}
.y9d{bottom:131.572000pt;}
.y11{bottom:136.821333pt;}
.y3b{bottom:144.350667pt;}
.y145{bottom:147.225333pt;}
.y116{bottom:147.792000pt;}
.y8d{bottom:148.336000pt;}
.yc2{bottom:148.989333pt;}
.y10{bottom:152.721333pt;}
.yd5{bottom:154.430667pt;}
.ye1{bottom:156.144000pt;}
.y65{bottom:158.036000pt;}
.y3a{bottom:162.920000pt;}
.y9c{bottom:163.241333pt;}
.y144{bottom:164.248000pt;}
.y115{bottom:166.361333pt;}
.yc1{bottom:167.560000pt;}
.yf{bottom:168.621333pt;}
.yd4{bottom:173.001333pt;}
.y64{bottom:175.132000pt;}
.ydf{bottom:176.081333pt;}
.y8c{bottom:179.750667pt;}
.y143{bottom:181.270667pt;}
.y39{bottom:181.490667pt;}
.yff{bottom:181.885333pt;}
.y9a{bottom:183.178133pt;}
.ye{bottom:184.521333pt;}
.y114{bottom:184.932000pt;}
.yc0{bottom:186.130667pt;}
.yd3{bottom:191.572000pt;}
.y62{bottom:195.068800pt;}
.y142{bottom:198.293333pt;}
.y8b{bottom:198.321333pt;}
.y38{bottom:200.061333pt;}
.yd{bottom:200.422667pt;}
.yfe{bottom:200.456000pt;}
.y113{bottom:203.502667pt;}
.ybf{bottom:204.700000pt;}
.yd2{bottom:210.141333pt;}
.y141{bottom:215.316000pt;}
.y8a{bottom:216.892000pt;}
.y37{bottom:218.632000pt;}
.yfd{bottom:219.025333pt;}
.y112{bottom:222.072000pt;}
.ybe{bottom:223.270667pt;}
.yc{bottom:224.293333pt;}
.yd1{bottom:228.712000pt;}
.y140{bottom:232.340000pt;}
.y89{bottom:235.461333pt;}
.y36{bottom:237.201333pt;}
.yfc{bottom:237.596000pt;}
.yb{bottom:240.193333pt;}
.y111{bottom:240.642667pt;}
.yd0{bottom:247.282667pt;}
.y13f{bottom:249.362667pt;}
.y87{bottom:254.032000pt;}
.ybd{bottom:254.940000pt;}
.y35{bottom:255.772000pt;}
.ya{bottom:256.093333pt;}
.yfb{bottom:256.166667pt;}
.y88{bottom:258.853333pt;}
.y110{bottom:259.213333pt;}
.ycf{bottom:265.853333pt;}
.y13e{bottom:266.385333pt;}
.y9{bottom:271.994667pt;}
.y86{bottom:272.602667pt;}
.y34{bottom:274.342667pt;}
.yfa{bottom:274.736000pt;}
.y10f{bottom:277.782667pt;}
.y13d{bottom:283.408000pt;}
.y8{bottom:287.894667pt;}
.y85{bottom:291.172000pt;}
.y33{bottom:292.912000pt;}
.yf9{bottom:293.306667pt;}
.y10e{bottom:296.353333pt;}
.yce{bottom:297.521333pt;}
.y13c{bottom:300.430667pt;}
.y7{bottom:303.794667pt;}
.y83{bottom:309.742667pt;}
.y32{bottom:311.482667pt;}
.yf8{bottom:311.877333pt;}
.y84{bottom:314.564000pt;}
.y10d{bottom:314.924000pt;}
.y13b{bottom:317.453333pt;}
.y6{bottom:319.696000pt;}
.y82{bottom:328.313333pt;}
.y31{bottom:330.053333pt;}
.yf7{bottom:330.446667pt;}
.y10c{bottom:333.493333pt;}
.y13a{bottom:334.476000pt;}
.y5{bottom:340.909333pt;}
.y81{bottom:346.882667pt;}
.y30{bottom:348.622667pt;}
.yf6{bottom:349.017333pt;}
.y139{bottom:351.498667pt;}
.y10b{bottom:356.049333pt;}
.y4{bottom:356.809333pt;}
.y80{bottom:365.453333pt;}
.y2f{bottom:367.193333pt;}
.yf5{bottom:367.588000pt;}
.y138{bottom:368.521333pt;}
.y3{bottom:372.710667pt;}
.y137{bottom:385.544000pt;}
.y2e{bottom:385.764000pt;}
.yf4{bottom:386.157333pt;}
.y7f{bottom:388.009333pt;}
.y2{bottom:388.610667pt;}
.y10a{bottom:390.560000pt;}
.y61{bottom:396.094667pt;}
.y136{bottom:402.566667pt;}
.y2d{bottom:404.333333pt;}
.yf3{bottom:404.728000pt;}
.y109{bottom:409.129333pt;}
.y1{bottom:409.824000pt;}
.y60{bottom:414.665333pt;}
.y7e{bottom:415.844000pt;}
.y135{bottom:419.589333pt;}
.yf2{bottom:423.298667pt;}
.y2c{bottom:426.889333pt;}
.y108{bottom:427.700000pt;}
.y7d{bottom:432.938667pt;}
.y5f{bottom:433.236000pt;}
.y134{bottom:436.612000pt;}
.yf1{bottom:441.868000pt;}
.y5e{bottom:451.805333pt;}
.y7b{bottom:452.876000pt;}
.y133{bottom:453.634667pt;}
.yde{bottom:457.392000pt;}
.y107{bottom:459.369333pt;}
.yf0{bottom:464.424000pt;}
.yad{bottom:469.110667pt;}
.y5d{bottom:470.376000pt;}
.y132{bottom:470.657333pt;}
.ydd{bottom:475.962667pt;}
.y105{bottom:479.306667pt;}
.yac{bottom:487.680000pt;}
.y5c{bottom:488.946667pt;}
.ydc{bottom:494.533333pt;}
.yef{bottom:495.840000pt;}
.y2b{bottom:497.300000pt;}
.y131{bottom:504.702667pt;}
.yab{bottom:506.250667pt;}
.y5b{bottom:507.516000pt;}
.ydb{bottom:513.102667pt;}
.yee{bottom:514.409333pt;}
.y130{bottom:521.725333pt;}
.ybc{bottom:522.897333pt;}
.yaa{bottom:524.821333pt;}
.y5a{bottom:530.072000pt;}
.yda{bottom:531.673333pt;}
.y2a{bottom:531.810667pt;}
.yec{bottom:532.980000pt;}
.yed{bottom:537.801333pt;}
.y12f{bottom:538.748000pt;}
.ybb{bottom:541.466667pt;}
.ya9{bottom:543.390667pt;}
.y29{bottom:550.380000pt;}
.yeb{bottom:551.550667pt;}
.y59{bottom:551.789333pt;}
.y12e{bottom:555.770667pt;}
.yba{bottom:560.037333pt;}
.ya8{bottom:561.961333pt;}
.yd9{bottom:562.037333pt;}
.y28{bottom:568.950667pt;}
.yea{bottom:570.120000pt;}
.y12d{bottom:572.793333pt;}
.ycd{bottom:576.053333pt;}
.yb9{bottom:578.608000pt;}
.ya7{bottom:580.532000pt;}
.y58{bottom:586.300000pt;}
.y27{bottom:587.521333pt;}
.ye9{bottom:588.690667pt;}
.y12c{bottom:589.817333pt;}
.ycc{bottom:594.624000pt;}
.yb8{bottom:597.177333pt;}
.ya6{bottom:599.101333pt;}
.y57{bottom:604.869333pt;}
.y26{bottom:606.090667pt;}
.y12b{bottom:606.840000pt;}
.ye8{bottom:607.261333pt;}
.ycb{bottom:613.193333pt;}
.ya5{bottom:617.672000pt;}
.y56{bottom:623.440000pt;}
.y12a{bottom:623.862667pt;}
.y25{bottom:624.661333pt;}
.ye7{bottom:625.830667pt;}
.yb7{bottom:628.846667pt;}
.yca{bottom:631.764000pt;}
.y15b{bottom:634.710667pt;}
.ya4{bottom:636.242667pt;}
.y129{bottom:640.885333pt;}
.y55{bottom:642.010667pt;}
.y24{bottom:643.232000pt;}
.ye6{bottom:644.401333pt;}
.yb6{bottom:645.942667pt;}
.yc9{bottom:650.334667pt;}
.y15a{bottom:651.733333pt;}
.ya3{bottom:654.813333pt;}
.y7a{bottom:657.733333pt;}
.y54{bottom:660.580000pt;}
.y23{bottom:661.801333pt;}
.y128{bottom:661.893333pt;}
.ye5{bottom:662.972000pt;}
.yb4{bottom:665.880000pt;}
.y159{bottom:668.756000pt;}
.yc8{bottom:668.905333pt;}
.y78{bottom:676.304000pt;}
.y53{bottom:679.150667pt;}
.y22{bottom:680.372000pt;}
.y79{bottom:681.125333pt;}
.ya2{bottom:686.481333pt;}
.yc7{bottom:687.474667pt;}
.ye4{bottom:694.641333pt;}
.y77{bottom:694.874667pt;}
.y99{bottom:694.958667pt;}
.y127{bottom:696.402667pt;}
.y52{bottom:697.721333pt;}
.y21{bottom:698.942667pt;}
.yc6{bottom:706.045333pt;}
.ya0{bottom:706.418667pt;}
.y158{bottom:707.006667pt;}
.y76{bottom:713.444000pt;}
.y98{bottom:713.529333pt;}
.ye2{bottom:714.577333pt;}
.y51{bottom:716.290667pt;}
.y20{bottom:717.513333pt;}
.y126{bottom:721.705333pt;}
.y157{bottom:724.029333pt;}
.y75{bottom:732.014667pt;}
.y50{bottom:734.861333pt;}
.y97{bottom:736.085333pt;}
.yc5{bottom:737.714667pt;}
.yd8{bottom:738.301333pt;}
.y125{bottom:739.037333pt;}
.y156{bottom:741.052000pt;}
.y1f{bottom:744.053333pt;}
.y74{bottom:750.585333pt;}
.y4f{bottom:753.432000pt;}
.yc3{bottom:757.652000pt;}
.y96{bottom:757.801333pt;}
.y155{bottom:758.074667pt;}
.yd6{bottom:758.238667pt;}
.y124{bottom:764.340000pt;}
.y73{bottom:769.154667pt;}
.y4e{bottom:772.002667pt;}
.y154{bottom:775.097333pt;}
.y1e{bottom:777.392000pt;}
.y123{bottom:789.642667pt;}
.y4d{bottom:790.572000pt;}
.y72{bottom:791.710667pt;}
.y1d{bottom:791.737333pt;}
.y153{bottom:792.120000pt;}
.y95{bottom:792.312000pt;}
.y1c{bottom:806.084000pt;}
.y4c{bottom:809.142667pt;}
.y94{bottom:810.882667pt;}
.y122{bottom:814.945333pt;}
.y1b{bottom:824.288000pt;}
.y152{bottom:826.165333pt;}
.y4b{bottom:827.713333pt;}
.y93{bottom:829.453333pt;}
.y121{bottom:832.277333pt;}
.y71{bottom:833.174667pt;}
.y1a{bottom:834.776000pt;}
.y151{bottom:843.188000pt;}
.y4a{bottom:846.282667pt;}
.y92{bottom:848.022667pt;}
.y70{bottom:849.114667pt;}
.y120{bottom:849.609333pt;}
.y19{bottom:852.980000pt;}
.y104{bottom:858.653333pt;}
.y150{bottom:860.210667pt;}
.y49{bottom:864.853333pt;}
.y6f{bottom:865.054667pt;}
.y91{bottom:866.593333pt;}
.y11f{bottom:866.941333pt;}
.y103{bottom:874.593333pt;}
.y14f{bottom:877.233333pt;}
.y6e{bottom:880.996000pt;}
.y48{bottom:883.424000pt;}
.y90{bottom:889.148000pt;}
.y18{bottom:890.457333pt;}
.y102{bottom:890.533333pt;}
.y11e{bottom:892.244000pt;}
.y14e{bottom:894.256000pt;}
.y6d{bottom:896.936000pt;}
.y47{bottom:901.993333pt;}
.y101{bottom:906.473333pt;}
.y11d{bottom:909.576000pt;}
.y14d{bottom:911.278667pt;}
.y6c{bottom:912.876000pt;}
.y46{bottom:920.564000pt;}
.y100{bottom:922.414667pt;}
.y17{bottom:924.968000pt;}
.y11c{bottom:926.908000pt;}
.y14c{bottom:928.301333pt;}
.y6b{bottom:928.816000pt;}
.y8f{bottom:936.708000pt;}
.y45{bottom:939.134667pt;}
.y11b{bottom:944.240000pt;}
.y6a{bottom:944.756000pt;}
.y14b{bottom:945.324000pt;}
.y16{bottom:952.824000pt;}
.yb3{bottom:953.720000pt;}
.y8e{bottom:955.278667pt;}
.y44{bottom:957.704000pt;}
.y69{bottom:960.697333pt;}
.y11a{bottom:961.572000pt;}
.y14a{bottom:962.346667pt;}
.yb2{bottom:972.289333pt;}
.y43{bottom:976.274667pt;}
.y149{bottom:979.369333pt;}
.y15{bottom:980.678667pt;}
.y68{bottom:983.038667pt;}
.yb1{bottom:990.860000pt;}
.y42{bottom:994.845333pt;}
.y148{bottom:996.392000pt;}
.y41{bottom:1013.414667pt;}
.y67{bottom:1014.732000pt;}
.y40{bottom:1066.841333pt;}
.he{height:28.023859pt;}
.h6{height:28.947524pt;}
.h2{height:33.771789pt;}
.h10{height:36.666735pt;}
.h8{height:38.415786pt;}
.h7{height:38.596538pt;}
.h3{height:38.947124pt;}
.hd{height:43.421286pt;}
.ha{height:46.099251pt;}
.h9{height:48.245551pt;}
.h5{height:48.486756pt;}
.hc{height:49.708594pt;}
.h4{height:69.148877pt;}
.hb{height:187.981867pt;}
.hf{height:188.568000pt;}
.h17{height:266.698667pt;}
.h16{height:268.461333pt;}
.h15{height:269.048000pt;}
.h14{height:270.810667pt;}
.h12{height:271.397333pt;}
.h13{height:347.177333pt;}
.h18{height:351.290667pt;}
.h11{height:498.737867pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:277.860000pt;}
.w3{width:454.680000pt;}
.w9{width:462.904000pt;}
.wc{width:468.778667pt;}
.w8{width:475.240000pt;}
.wb{width:476.416000pt;}
.wa{width:479.938667pt;}
.w7{width:480.528000pt;}
.w6{width:495.800000pt;}
.w4{width:501.086667pt;}
.w2{width:505.786667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x43{left:56.928000pt;}
.x27{left:67.400000pt;}
.x47{left:76.309333pt;}
.x41{left:86.848000pt;}
.x44{left:108.074667pt;}
.x40{left:111.960000pt;}
.x28{left:114.070667pt;}
.x42{left:126.538667pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x3{left:239.594667pt;}
.x3f{left:245.006667pt;}
.x29{left:247.209333pt;}
.x5{left:250.204000pt;}
.x2a{left:253.258667pt;}
.x35{left:275.713324pt;}
.x1e{left:294.216000pt;}
.x1f{left:307.500000pt;}
.x20{left:310.886667pt;}
.x12{left:317.545333pt;}
.x13{left:324.186667pt;}
.x14{left:330.961333pt;}
.x15{left:337.604000pt;}
.x32{left:338.877333pt;}
.x33{left:344.589333pt;}
.x3b{left:368.400000pt;}
.x3c{left:381.682667pt;}
.xc{left:386.449333pt;}
.xd{left:393.092000pt;}
.x22{left:407.545333pt;}
.x2e{left:410.246667pt;}
.x2f{left:416.296000pt;}
.x1a{left:417.930667pt;}
.x23{left:420.829333pt;}
.x1b{left:431.214667pt;}
.x1c{left:434.602667pt;}
.x1d{left:447.885333pt;}
.x2b{left:450.567714pt;}
.x38{left:458.485652pt;}
.x21{left:460.846667pt;}
.x2c{left:464.045333pt;}
.x45{left:465.307722pt;}
.x2d{left:470.096000pt;}
.x3a{left:473.076280pt;}
.x39{left:474.778841pt;}
.x37{left:476.113043pt;}
.x18{left:486.986667pt;}
.x36{left:491.898350pt;}
.x34{left:496.777129pt;}
.x19{left:500.269333pt;}
.x26{left:502.221327pt;}
.x24{left:521.160000pt;}
.x16{left:529.070667pt;}
.x25{left:534.444000pt;}
.x17{left:542.354667pt;}
.x6{left:592.986667pt;}
.x8{left:593.909333pt;}
.x7{left:599.629333pt;}
.x9{left:600.550667pt;}
.xe{left:613.394667pt;}
.xf{left:620.037333pt;}
.x10{left:623.424000pt;}
.x11{left:630.066667pt;}
.x3d{left:649.958667pt;}
.xa{left:660.338667pt;}
.x3e{left:663.242667pt;}
.xb{left:666.981333pt;}
.x46{left:677.364000pt;}
.x30{left:738.261333pt;}
.x31{left:743.973333pt;}
}




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