
    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_8a8769c3d8e47868f8f8a76b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_2abec1f5f656eebda79ee815.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_190993845e08163c8a0e3f8a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.717000;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_ab1fc5d20393aea701b40796.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_5b6ecd80f5da6d33d243050f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_ebe8ea4357081ac2b4f383c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_fa56fece3d1532b11f2842c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.894000;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_0a86c11b3dfa5fa48bc8d9bb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.665000;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_30e4934400552807fc8e5389.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.898000;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_90d012dbfee30f0ac1a65568.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921000;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_2c2af17f77a9b3a602c9270b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.901000;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_1e5565069b2bc91162e718af.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_5f86eea97f8a1d7020ad792b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.898000;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_dc155bd6b10a1961d8fb1521.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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_bd646495cfc9ce62f74ba78c.woff2')format("woff");}.fff{font-family:fff;line-height:2.262000;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_cd2485e54486e0ada79342a3.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;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_1292db7d40a022a6cc2df449.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.898000;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_382dc32207ba952fab716a50.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.569000;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_36ab165d047acab02d43c8e9.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_cd40163d9dda658ce6c62e8e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.453000;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:ff15;src:url('chunks/assets/font_08d8358b2bc861be78443140.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;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;}
.m2{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);}
.m5{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);}
.mf{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);}
.m15{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);}
.m17{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);}
.m11{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);}
.m13{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);}
.m6{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);}
.m3{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);}
.mb{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);}
.m4{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);}
.m16{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);}
.m12{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);}
.m8{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);}
.m1c{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);}
.m1a{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);}
.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);}
.md{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);}
.m1b{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);}
.me{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);}
.m19{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.mc{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);}
.m10{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);}
.m9{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);}
.m1d{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);}
.m14{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);}
.m1{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);}
.m7{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);}
.vf{vertical-align:-66.348000px;}
.v9{vertical-align:-48.420000px;}
.v2{vertical-align:-12.912000px;}
.v3{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.456000px;}
.v10{vertical-align:14.778000px;}
.vd{vertical-align:18.042000px;}
.v11{vertical-align:21.690000px;}
.vc{vertical-align:24.678000px;}
.v12{vertical-align:32.040000px;}
.v5{vertical-align:40.440000px;}
.v13{vertical-align:46.248000px;}
.ve{vertical-align:53.622000px;}
.v14{vertical-align:56.790000px;}
.v8{vertical-align:63.198000px;}
.v7{vertical-align:65.682000px;}
.v4{vertical-align:81.360000px;}
.v6{vertical-align:89.424000px;}
.vb{vertical-align:107.586000px;}
.va{vertical-align:122.364000px;}
.ls2{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000843px;}
.ls39{letter-spacing:0.000921px;}
.ls2e{letter-spacing:0.001751px;}
.ls28{letter-spacing:0.002012px;}
.ls58{letter-spacing:0.002175px;}
.ls10{letter-spacing:0.002250px;}
.ls1d{letter-spacing:0.002481px;}
.ls53{letter-spacing:0.003093px;}
.ls48{letter-spacing:0.003175px;}
.ls21{letter-spacing:0.004893px;}
.ls3d{letter-spacing:0.005121px;}
.ls46{letter-spacing:0.009308px;}
.ls4a{letter-spacing:0.009778px;}
.ls2c{letter-spacing:0.013477px;}
.ls2d{letter-spacing:0.015276px;}
.ls32{letter-spacing:0.018611px;}
.ls4d{letter-spacing:0.019266px;}
.lsa{letter-spacing:0.022416px;}
.ls2a{letter-spacing:0.026811px;}
.ls57{letter-spacing:1.634585px;}
.ls14{letter-spacing:1.661781px;}
.ls7{letter-spacing:1.673717px;}
.ls25{letter-spacing:1.679647px;}
.ls47{letter-spacing:2.986362px;}
.ls5b{letter-spacing:2.986926px;}
.ls51{letter-spacing:2.988615px;}
.ls23{letter-spacing:2.988710px;}
.ls40{letter-spacing:2.989409px;}
.ls35{letter-spacing:2.991352px;}
.lsb{letter-spacing:2.992362px;}
.ls5e{letter-spacing:4.400593px;}
.ls37{letter-spacing:5.138234px;}
.ls15{letter-spacing:5.914362px;}
.ls9{letter-spacing:6.395989px;}
.ls27{letter-spacing:7.143580px;}
.ls19{letter-spacing:7.161460px;}
.ls1e{letter-spacing:7.578185px;}
.ls5a{letter-spacing:8.313732px;}
.ls59{letter-spacing:9.422891px;}
.ls1f{letter-spacing:9.962012px;}
.ls16{letter-spacing:9.966843px;}
.ls34{letter-spacing:9.982525px;}
.ls50{letter-spacing:12.954615px;}
.lsf{letter-spacing:13.270183px;}
.ls3f{letter-spacing:13.282893px;}
.ls30{letter-spacing:13.509286px;}
.ls60{letter-spacing:15.661207px;}
.lse{letter-spacing:16.270362px;}
.ls22{letter-spacing:16.272710px;}
.ls31{letter-spacing:16.438290px;}
.ls49{letter-spacing:16.602538px;}
.ls18{letter-spacing:16.617617px;}
.ls5{letter-spacing:16.624029px;}
.ls1a{letter-spacing:17.134200px;}
.ls45{letter-spacing:18.231558px;}
.ls3b{letter-spacing:19.597409px;}
.ls3a{letter-spacing:19.666172px;}
.ls33{letter-spacing:19.725948px;}
.ls3c{letter-spacing:19.887460px;}
.ls3{letter-spacing:19.905275px;}
.ls42{letter-spacing:19.965050px;}
.ls4{letter-spacing:20.861684px;}
.ls1c{letter-spacing:22.731031px;}
.ls2b{letter-spacing:22.914710px;}
.ls11{letter-spacing:23.778538px;}
.ls5d{letter-spacing:24.866650px;}
.ls56{letter-spacing:24.926425px;}
.ls4c{letter-spacing:26.241488px;}
.ls8{letter-spacing:26.540366px;}
.ls1b{letter-spacing:26.566677px;}
.ls12{letter-spacing:27.100200px;}
.ls43{letter-spacing:28.214083px;}
.ls4f{letter-spacing:33.214530px;}
.ls4e{letter-spacing:34.849175px;}
.ls55{letter-spacing:35.865360px;}
.ls1{letter-spacing:35.883533px;}
.lsd{letter-spacing:36.196362px;}
.ls6{letter-spacing:36.526677px;}
.ls36{letter-spacing:154.417725px;}
.ls0{letter-spacing:345.347589px;}
.ls38{letter-spacing:684.131742px;}
.ls29{letter-spacing:784.196096px;}
.ls2f{letter-spacing:795.673012px;}
.ls44{letter-spacing:824.484851px;}
.ls24{letter-spacing:837.575707px;}
.ls20{letter-spacing:844.689004px;}
.lsc{letter-spacing:845.645413px;}
.ls4b{letter-spacing:864.654054px;}
.ls54{letter-spacing:882.706285px;}
.ls26{letter-spacing:900.280312px;}
.ls17{letter-spacing:946.666177px;}
.ls41{letter-spacing:953.659922px;}
.ls52{letter-spacing:959.757034px;}
.ls5f{letter-spacing:981.634903px;}
.ls5c{letter-spacing:1040.693196px;}
.ls3e{letter-spacing:1071.836284px;}
.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;}
}
.ws4a{word-spacing:-59.775600px;}
.ws26{word-spacing:-47.324343px;}
.ws1d{word-spacing:-38.937826px;}
.ws27{word-spacing:-31.633157px;}
.ws21{word-spacing:-29.887800px;}
.ws3b{word-spacing:-29.015076px;}
.ws2f{word-spacing:-28.716198px;}
.ws22{word-spacing:-26.540366px;}
.ws30{word-spacing:-25.787194px;}
.ws31{word-spacing:-22.320209px;}
.ws1f{word-spacing:-16.605662px;}
.ws4e{word-spacing:-15.123227px;}
.ws59{word-spacing:-14.286368px;}
.ws2d{word-spacing:-13.531962px;}
.ws4f{word-spacing:-13.270183px;}
.ws5a{word-spacing:-12.971305px;}
.ws33{word-spacing:-12.373549px;}
.ws2a{word-spacing:-12.313774px;}
.ws5c{word-spacing:-12.253998px;}
.wsd{word-spacing:-12.194222px;}
.ws5b{word-spacing:-11.841546px;}
.ws16{word-spacing:-11.835569px;}
.ws1c{word-spacing:-11.716018px;}
.ws1e{word-spacing:-11.656242px;}
.ws1b{word-spacing:-11.476915px;}
.ws29{word-spacing:-11.417140px;}
.ws55{word-spacing:-11.237813px;}
.ws2b{word-spacing:-10.998710px;}
.ws5e{word-spacing:-10.646034px;}
.ws6{word-spacing:-10.635944px;}
.ws40{word-spacing:-10.460730px;}
.ws54{word-spacing:-10.400954px;}
.ws1a{word-spacing:-10.341179px;}
.ws3d{word-spacing:-10.281403px;}
.ws28{word-spacing:-10.221628px;}
.ws3a{word-spacing:-10.161852px;}
.ws50{word-spacing:-10.102076px;}
.ws4{word-spacing:-9.982525px;}
.ws13{word-spacing:-9.922750px;}
.wsf{word-spacing:-9.862974px;}
.wse{word-spacing:-9.803198px;}
.ws41{word-spacing:-9.743423px;}
.ws3e{word-spacing:-9.683647px;}
.ws5f{word-spacing:-9.629849px;}
.wsc{word-spacing:-9.564096px;}
.ws18{word-spacing:-9.504320px;}
.ws5d{word-spacing:-9.390747px;}
.ws48{word-spacing:-9.324994px;}
.ws7{word-spacing:-9.247945px;}
.ws5{word-spacing:-9.194147px;}
.ws2c{word-spacing:-9.151644px;}
.ws10{word-spacing:-9.026116px;}
.ws47{word-spacing:-8.733215px;}
.ws42{word-spacing:-8.368584px;}
.ws34{word-spacing:-7.816601px;}
.ws57{word-spacing:-7.651277px;}
.ws11{word-spacing:-7.531726px;}
.ws3c{word-spacing:-7.412174px;}
.ws56{word-spacing:-7.352399px;}
.ws4d{word-spacing:-6.874194px;}
.ws52{word-spacing:-6.814418px;}
.ws43{word-spacing:-6.694867px;}
.ws20{word-spacing:-6.623136px;}
.ws53{word-spacing:-6.216662px;}
.ws49{word-spacing:-5.917784px;}
.ws25{word-spacing:-5.905829px;}
.ws17{word-spacing:-5.618906px;}
.wsb{word-spacing:-5.027128px;}
.ws51{word-spacing:-4.662497px;}
.ws4c{word-spacing:-4.602721px;}
.ws58{word-spacing:-4.363619px;}
.ws3f{word-spacing:-3.885414px;}
.ws45{word-spacing:-3.646312px;}
.ws46{word-spacing:-3.407209px;}
.ws12{word-spacing:-2.988780px;}
.ws19{word-spacing:-0.896634px;}
.ws35{word-spacing:-0.581352px;}
.ws2{word-spacing:-0.086077px;}
.ws9{word-spacing:-0.071731px;}
.ws2e{word-spacing:-0.047820px;}
.ws8{word-spacing:0.000000px;}
.ws32{word-spacing:0.011955px;}
.wsa{word-spacing:3.076366px;}
.ws24{word-spacing:6.052979px;}
.ws4b{word-spacing:6.059073px;}
.ws36{word-spacing:6.060648px;}
.ws44{word-spacing:6.063299px;}
.ws39{word-spacing:9.384648px;}
.ws1{word-spacing:23.384371px;}
.ws3{word-spacing:26.827469px;}
.ws0{word-spacing:32.192873px;}
.ws15{word-spacing:34.370970px;}
.ws37{word-spacing:90.595899px;}
.ws38{word-spacing:761.995439px;}
.ws23{word-spacing:987.767880px;}
.ws14{word-spacing:2320.937786px;}
._29{margin-left:-9.982744px;}
._1{margin-left:-8.005180px;}
._2{margin-left:-5.881958px;}
._a{margin-left:-4.722272px;}
._5{margin-left:-2.988780px;}
._4{margin-left:-1.673717px;}
._3{width:1.205092px;}
._0{width:2.668393px;}
._2d{width:4.027989px;}
._3f{width:16.617617px;}
._41{width:17.655311px;}
._28{width:19.391244px;}
._26{width:20.971656px;}
._2c{width:24.167241px;}
._2a{width:25.505022px;}
._6{width:26.719693px;}
._f{width:27.836270px;}
._7{width:30.655303px;}
._34{width:31.922520px;}
._3e{width:34.672198px;}
._40{width:35.865360px;}
._36{width:39.442316px;}
._37{width:43.856131px;}
._2e{width:45.549007px;}
._35{width:46.744519px;}
._30{width:56.657689px;}
._27{width:69.449668px;}
._2b{width:129.884968px;}
._38{width:211.151369px;}
._32{width:238.255962px;}
._31{width:245.369258px;}
._2f{width:260.382514px;}
._33{width:289.304324px;}
._3d{width:354.612809px;}
._3a{width:488.844857px;}
._39{width:514.608140px;}
._3c{width:586.123708px;}
._3b{width:590.044948px;}
._10{width:676.420690px;}
._17{width:982.043753px;}
._1f{width:1065.789368px;}
._11{width:1310.890837px;}
._24{width:1390.311101px;}
._1a{width:1449.056198px;}
._25{width:1493.782664px;}
._1b{width:1539.989203px;}
._14{width:1616.023766px;}
._13{width:1671.086674px;}
._1c{width:1674.278730px;}
._e{width:1685.243911px;}
._15{width:1691.470153px;}
._19{width:1715.918374px;}
._22{width:1785.736274px;}
._b{width:1811.917987px;}
._9{width:1864.915048px;}
._12{width:1893.800980px;}
._21{width:1929.496592px;}
._18{width:1983.987518px;}
._c{width:2003.692176px;}
._1d{width:2028.986380px;}
._d{width:2032.094683px;}
._20{width:2036.151309px;}
._23{width:2106.534197px;}
._16{width:2199.992417px;}
._8{width:2329.215632px;}
._1e{width:2336.812386px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.887800px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.yb5{bottom:155.830500px;}
.y2d{bottom:160.314000px;}
.y101{bottom:164.050500px;}
.yb4{bottom:173.016000px;}
.y48{bottom:187.213500px;}
.y100{bottom:190.948500px;}
.ye4{bottom:197.355000px;}
.y7e{bottom:203.758500px;}
.y2c{bottom:204.138000px;}
.y63{bottom:209.656500px;}
.yb3{bottom:212.664000px;}
.y47{bottom:214.113000px;}
.yff{bottom:217.848000px;}
.y2b{bottom:232.027500px;}
.ye3{bottom:234.396000px;}
.ycc{bottom:235.372500px;}
.y62{bottom:236.556000px;}
.yb2{bottom:239.562000px;}
.y46{bottom:241.011000px;}
.yfe{bottom:244.747500px;}
.y7d{bottom:252.717000px;}
.yd{bottom:255.738000px;}
.y2a{bottom:259.915500px;}
.y61{bottom:263.455500px;}
.ye2{bottom:271.143000px;}
.yfd{bottom:271.647000px;}
.y45{bottom:273.166500px;}
.yb1{bottom:287.721000px;}
.y29{bottom:287.805000px;}
.y99{bottom:289.170000px;}
.yc{bottom:295.339500px;}
.yfc{bottom:298.545000px;}
.y44{bottom:300.064500px;}
.y60{bottom:313.114500px;}
.ycb{bottom:315.628500px;}
.y28{bottom:315.694500px;}
.y7c{bottom:317.880000px;}
.ye1{bottom:319.596000px;}
.yfb{bottom:325.444500px;}
.y43{bottom:326.964000px;}
.yb{bottom:334.941000px;}
.y7b{bottom:342.537000px;}
.y27{bottom:343.584000px;}
.y7a{bottom:344.778000px;}
.yb0{bottom:348.258000px;}
.y98{bottom:349.141500px;}
.yca{bottom:351.028500px;}
.yfa{bottom:352.344000px;}
.y42{bottom:353.863500px;}
.y26{bottom:371.473500px;}
.ya{bottom:374.542500px;}
.y77{bottom:374.607000px;}
.yaf{bottom:375.157500px;}
.y97{bottom:376.041000px;}
.yc9{bottom:377.928000px;}
.y76{bottom:377.971500px;}
.yf9{bottom:379.243500px;}
.y5f{bottom:381.987000px;}
.ye0{bottom:382.069500px;}
.y41{bottom:386.017500px;}
.y75{bottom:388.222500px;}
.y79{bottom:391.404000px;}
.y78{bottom:398.332500px;}
.y96{bottom:402.940500px;}
.yc8{bottom:404.827500px;}
.yf8{bottom:406.141500px;}
.y5e{bottom:408.886500px;}
.ydf{bottom:408.969000px;}
.y40{bottom:412.917000px;}
.y9{bottom:414.144000px;}
.yae{bottom:414.804000px;}
.y25{bottom:415.296000px;}
.y95{bottom:429.840000px;}
.y74{bottom:431.667000px;}
.yc7{bottom:431.727000px;}
.yf7{bottom:433.041000px;}
.yde{bottom:435.868500px;}
.y3f{bottom:439.816500px;}
.y5b{bottom:440.113500px;}
.y24{bottom:443.185500px;}
.y5a{bottom:443.479500px;}
.y59{bottom:453.730500px;}
.yad{bottom:454.452000px;}
.y5d{bottom:456.912000px;}
.yc6{bottom:458.625000px;}
.yf6{bottom:459.940500px;}
.ydd{bottom:462.766500px;}
.y5c{bottom:463.839000px;}
.y72{bottom:464.860500px;}
.y3e{bottom:466.716000px;}
.y23{bottom:471.075000px;}
.y73{bottom:471.415500px;}
.y71{bottom:475.110000px;}
.y94{bottom:477.999000px;}
.yc5{bottom:486.123000px;}
.ydc{bottom:489.666000px;}
.y58{bottom:498.573000px;}
.y22{bottom:498.964500px;}
.yac{bottom:502.611000px;}
.ydb{bottom:516.565500px;}
.y70{bottom:518.554500px;}
.y3d{bottom:520.129500px;}
.y21{bottom:526.854000px;}
.y8{bottom:531.609000px;}
.y93{bottom:537.970500px;}
.yc4{bottom:546.877500px;}
.y57{bottom:548.232000px;}
.yf5{bottom:554.088000px;}
.y6f{bottom:561.999000px;}
.yab{bottom:563.146500px;}
.yda{bottom:565.018500px;}
.y92{bottom:570.640500px;}
.y20{bottom:570.676500px;}
.y91{bottom:574.335000px;}
.yf4{bottom:580.986000px;}
.y7{bottom:584.020500px;}
.yaa{bottom:590.046000px;}
.y6e{bottom:605.442000px;}
.yc3{bottom:606.982500px;}
.yf3{bottom:607.885500px;}
.y3c{bottom:608.928000px;}
.y90{bottom:610.701000px;}
.y6{bottom:610.920000px;}
.y56{bottom:617.106000px;}
.y1f{bottom:619.827000px;}
.ya9{bottom:624.594000px;}
.yd9{bottom:627.492000px;}
.y8f{bottom:633.028500px;}
.yc2{bottom:633.882000px;}
.y5{bottom:637.818000px;}
.y8e{bottom:639.585000px;}
.y8d{bottom:643.279500px;}
.y54{bottom:647.220000px;}
.ya8{bottom:651.493500px;}
.y55{bottom:653.776500px;}
.yd8{bottom:654.391500px;}
.y6d{bottom:654.402000px;}
.yf2{bottom:656.044500px;}
.y53{bottom:657.471000px;}
.y3b{bottom:661.282500px;}
.y8c{bottom:670.177500px;}
.yc1{bottom:671.025000px;}
.ya7{bottom:678.391500px;}
.yd7{bottom:681.291000px;}
.y52{bottom:688.870500px;}
.y8b{bottom:697.077000px;}
.y1e{bottom:703.002000px;}
.yc0{bottom:708.168000px;}
.yd6{bottom:708.189000px;}
.y3a{bottom:713.635500px;}
.y51{bottom:715.768500px;}
.yf1{bottom:716.760000px;}
.y6c{bottom:719.563500px;}
.ya6{bottom:726.550500px;}
.y1d{bottom:729.901500px;}
.ybf{bottom:735.067500px;}
.yd5{bottom:735.088500px;}
.yf0{bottom:743.659500px;}
.y8a{bottom:745.236000px;}
.y6b{bottom:746.463000px;}
.y50{bottom:760.612500px;}
.ybe{bottom:761.967000px;}
.y39{bottom:765.990000px;}
.y1c{bottom:766.852500px;}
.y6a{bottom:773.362500px;}
.yef{bottom:780.652500px;}
.yd4{bottom:783.541500px;}
.yee{bottom:784.347000px;}
.ya5{bottom:787.087500px;}
.y4{bottom:788.899500px;}
.y1b{bottom:793.750500px;}
.y38{bottom:798.145500px;}
.y89{bottom:805.207500px;}
.y4f{bottom:805.455000px;}
.ybd{bottom:810.126000px;}
.ya4{bottom:813.987000px;}
.y1a{bottom:820.650000px;}
.y69{bottom:822.321000px;}
.yed{bottom:825.036000px;}
.y37{bottom:830.299500px;}
.y88{bottom:832.107000px;}
.ya3{bottom:840.886500px;}
.yd3{bottom:846.015000px;}
.y19{bottom:847.549500px;}
.y68{bottom:849.220500px;}
.y4e{bottom:855.114000px;}
.y87{bottom:859.006500px;}
.y36{bottom:862.453500px;}
.yec{bottom:865.723500px;}
.ya2{bottom:867.786000px;}
.ybc{bottom:870.231000px;}
.yd2{bottom:872.914500px;}
.y18{bottom:874.449000px;}
.y86{bottom:881.334000px;}
.y35{bottom:894.609000px;}
.ybb{bottom:897.130500px;}
.yd1{bottom:899.814000px;}
.y17{bottom:901.347000px;}
.y67{bottom:901.548000px;}
.y85{bottom:901.695000px;}
.yeb{bottom:902.716500px;}
.yea{bottom:906.411000px;}
.ya1{bottom:915.945000px;}
.y84{bottom:918.484500px;}
.y4d{bottom:923.988000px;}
.yba{bottom:924.030000px;}
.yd0{bottom:926.713500px;}
.y16{bottom:928.246500px;}
.ye9{bottom:933.310500px;}
.ya0{bottom:942.843000px;}
.y3{bottom:942.895500px;}
.y83{bottom:945.382500px;}
.y34{bottom:946.963500px;}
.yb9{bottom:950.928000px;}
.y66{bottom:951.876000px;}
.ycf{bottom:953.611500px;}
.y15{bottom:966.951000px;}
.y4c{bottom:968.830500px;}
.y2{bottom:974.277000px;}
.yb8{bottom:977.827500px;}
.y33{bottom:979.117500px;}
.ye8{bottom:981.469500px;}
.y9f{bottom:991.813500px;}
.y82{bottom:993.541500px;}
.y14{bottom:994.840500px;}
.y13{bottom:1000.264500px;}
.yce{bottom:1002.064500px;}
.y32{bottom:1011.271500px;}
.y4b{bottom:1013.673000px;}
.yb7{bottom:1025.986500px;}
.y9e{bottom:1027.213500px;}
.y11{bottom:1027.960500px;}
.y12{bottom:1033.899000px;}
.y1{bottom:1040.139000px;}
.y4a{bottom:1040.572500px;}
.ye7{bottom:1042.185000px;}
.y31{bottom:1043.427000px;}
.y65{bottom:1045.419000px;}
.ycd{bottom:1050.517500px;}
.y81{bottom:1053.513000px;}
.y9d{bottom:1054.113000px;}
.ye6{bottom:1069.084500px;}
.y30{bottom:1075.581000px;}
.y10{bottom:1077.126000px;}
.y80{bottom:1080.412500px;}
.y9c{bottom:1081.011000px;}
.yb6{bottom:1086.093000px;}
.y49{bottom:1090.231500px;}
.ye5{bottom:1104.487500px;}
.y2f{bottom:1107.736500px;}
.y9b{bottom:1107.910500px;}
.yf{bottom:1108.509000px;}
.y7f{bottom:1112.991000px;}
.y9a{bottom:1135.407000px;}
.y64{bottom:1138.962000px;}
.ye{bottom:1139.890500px;}
.y2e{bottom:1192.194000px;}
.ha{height:29.457331px;}
.h9{height:31.800699px;}
.h7{height:37.927872px;}
.hc{height:41.842920px;}
.hb{height:42.799330px;}
.h6{height:44.831700px;}
.h1e{height:48.074125px;}
.h8{height:49.090950px;}
.h5{height:50.211840px;}
.h19{height:51.147331px;}
.h3{height:53.798400px;}
.h15{height:54.135331px;}
.h1a{height:54.141331px;}
.h14{height:56.013024px;}
.h18{height:56.019024px;}
.h20{height:59.181024px;}
.h16{height:59.609700px;}
.h2{height:60.254040px;}
.h10{height:65.589024px;}
.h4{height:67.226503px;}
.hd{height:83.751024px;}
.h1f{height:83.757024px;}
.h11{height:85.265700px;}
.he{height:85.271700px;}
.h1c{height:85.835700px;}
.hf{height:95.139331px;}
.h1d{height:100.049700px;}
.h13{height:109.743024px;}
.h17{height:109.749024px;}
.h1b{height:126.275700px;}
.h12{height:130.976125px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:106.215000px;}
.x14{left:108.000000px;}
.x17{left:113.811000px;}
.x35{left:118.285500px;}
.x16{left:119.623500px;}
.xb{left:120.882000px;}
.x6c{left:125.968500px;}
.x1c{left:130.416000px;}
.x6d{left:132.241500px;}
.x18{left:136.413000px;}
.x19{left:137.451000px;}
.x3f{left:143.985000px;}
.x24{left:150.334500px;}
.x65{left:151.587000px;}
.x13{left:158.809500px;}
.x5f{left:166.345500px;}
.x4c{left:171.943500px;}
.x12{left:173.754000px;}
.x25{left:175.314000px;}
.x60{left:179.278500px;}
.x34{left:182.605500px;}
.x66{left:188.511000px;}
.x4d{left:200.571000px;}
.x1{left:204.213000px;}
.x30{left:209.908500px;}
.x44{left:212.808000px;}
.xf{left:214.422000px;}
.x31{left:216.913500px;}
.x10{left:221.125500px;}
.x69{left:222.945000px;}
.x6f{left:228.091500px;}
.x74{left:230.244000px;}
.x45{left:234.597000px;}
.x6b{left:235.708500px;}
.x5c{left:239.320500px;}
.x73{left:243.490500px;}
.x6a{left:247.767000px;}
.x40{left:254.491500px;}
.x36{left:259.411500px;}
.x46{left:263.376000px;}
.x2{left:274.819500px;}
.x75{left:275.952000px;}
.x61{left:279.117000px;}
.x1d{left:280.512000px;}
.x47{left:284.793000px;}
.x41{left:291.736500px;}
.x5b{left:300.798000px;}
.x4e{left:303.225000px;}
.x48{left:311.848500px;}
.x2f{left:313.756500px;}
.x5a{left:315.273000px;}
.x5d{left:317.361000px;}
.x4b{left:319.344000px;}
.x4a{left:323.221500px;}
.x6{left:329.793000px;}
.x1e{left:332.155500px;}
.xa{left:342.615000px;}
.x42{left:345.439500px;}
.x43{left:346.758000px;}
.x3{left:349.677000px;}
.x21{left:352.128000px;}
.x37{left:355.911000px;}
.x22{left:359.878500px;}
.x5e{left:362.277000px;}
.x29{left:363.562500px;}
.x11{left:364.890000px;}
.x68{left:366.780000px;}
.x38{left:371.593500px;}
.x1b{left:373.006500px;}
.x32{left:376.015500px;}
.x26{left:377.379000px;}
.x5{left:381.384000px;}
.x59{left:384.936000px;}
.x62{left:386.041500px;}
.x33{left:387.181500px;}
.xd{left:389.935500px;}
.x7{left:392.640000px;}
.x4{left:394.558500px;}
.x23{left:397.383000px;}
.x71{left:400.881000px;}
.x70{left:402.648000px;}
.x8{left:405.966000px;}
.x4f{left:407.329500px;}
.x15{left:409.203000px;}
.x55{left:414.480000px;}
.x56{left:421.485000px;}
.x50{left:426.181500px;}
.x2a{left:427.509000px;}
.xc{left:436.860000px;}
.x27{left:441.387000px;}
.x63{left:444.852000px;}
.x2b{left:447.567000px;}
.x39{left:454.230000px;}
.x3b{left:456.880500px;}
.x64{left:460.584000px;}
.x57{left:461.697000px;}
.x67{left:469.201500px;}
.x2c{left:471.153000px;}
.x2d{left:475.042500px;}
.x3c{left:480.468000px;}
.x51{left:483.049500px;}
.x3d{left:484.356000px;}
.x72{left:487.777500px;}
.x58{left:496.746000px;}
.x28{left:517.387500px;}
.xe{left:519.187500px;}
.x3a{left:526.702500px;}
.x52{left:529.866000px;}
.x2e{left:541.032000px;}
.x49{left:547.884000px;}
.x3e{left:550.345500px;}
.x53{left:571.779000px;}
.x54{left:617.487000px;}
.x1f{left:632.133000px;}
.x20{left:650.893500px;}
.x6e{left:791.013000px;}
.x1a{left:799.195500px;}
@media print{
.vf{vertical-align:-58.976000pt;}
.v9{vertical-align:-43.040000pt;}
.v2{vertical-align:-11.477333pt;}
.v3{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.738667pt;}
.v10{vertical-align:13.136000pt;}
.vd{vertical-align:16.037333pt;}
.v11{vertical-align:19.280000pt;}
.vc{vertical-align:21.936000pt;}
.v12{vertical-align:28.480000pt;}
.v5{vertical-align:35.946667pt;}
.v13{vertical-align:41.109333pt;}
.ve{vertical-align:47.664000pt;}
.v14{vertical-align:50.480000pt;}
.v8{vertical-align:56.176000pt;}
.v7{vertical-align:58.384000pt;}
.v4{vertical-align:72.320000pt;}
.v6{vertical-align:79.488000pt;}
.vb{vertical-align:95.632000pt;}
.va{vertical-align:108.768000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000749pt;}
.ls39{letter-spacing:0.000818pt;}
.ls2e{letter-spacing:0.001556pt;}
.ls28{letter-spacing:0.001788pt;}
.ls58{letter-spacing:0.001933pt;}
.ls10{letter-spacing:0.002000pt;}
.ls1d{letter-spacing:0.002205pt;}
.ls53{letter-spacing:0.002749pt;}
.ls48{letter-spacing:0.002823pt;}
.ls21{letter-spacing:0.004349pt;}
.ls3d{letter-spacing:0.004552pt;}
.ls46{letter-spacing:0.008273pt;}
.ls4a{letter-spacing:0.008692pt;}
.ls2c{letter-spacing:0.011980pt;}
.ls2d{letter-spacing:0.013578pt;}
.ls32{letter-spacing:0.016543pt;}
.ls4d{letter-spacing:0.017126pt;}
.lsa{letter-spacing:0.019925pt;}
.ls2a{letter-spacing:0.023832pt;}
.ls57{letter-spacing:1.452964pt;}
.ls14{letter-spacing:1.477138pt;}
.ls7{letter-spacing:1.487748pt;}
.ls25{letter-spacing:1.493020pt;}
.ls47{letter-spacing:2.654544pt;}
.ls5b{letter-spacing:2.655045pt;}
.ls51{letter-spacing:2.656546pt;}
.ls23{letter-spacing:2.656631pt;}
.ls40{letter-spacing:2.657253pt;}
.ls35{letter-spacing:2.658980pt;}
.lsb{letter-spacing:2.659878pt;}
.ls5e{letter-spacing:3.911638pt;}
.ls37{letter-spacing:4.567319pt;}
.ls15{letter-spacing:5.257211pt;}
.ls9{letter-spacing:5.685324pt;}
.ls27{letter-spacing:6.349849pt;}
.ls19{letter-spacing:6.365742pt;}
.ls1e{letter-spacing:6.736165pt;}
.ls5a{letter-spacing:7.389984pt;}
.ls59{letter-spacing:8.375903pt;}
.ls1f{letter-spacing:8.855121pt;}
.ls16{letter-spacing:8.859416pt;}
.ls34{letter-spacing:8.873356pt;}
.ls50{letter-spacing:11.515213pt;}
.lsf{letter-spacing:11.795718pt;}
.ls3f{letter-spacing:11.807016pt;}
.ls30{letter-spacing:12.008254pt;}
.ls60{letter-spacing:13.921073pt;}
.lse{letter-spacing:14.462544pt;}
.ls22{letter-spacing:14.464631pt;}
.ls31{letter-spacing:14.611813pt;}
.ls49{letter-spacing:14.757812pt;}
.ls18{letter-spacing:14.771215pt;}
.ls5{letter-spacing:14.776915pt;}
.ls1a{letter-spacing:15.230400pt;}
.ls45{letter-spacing:16.205829pt;}
.ls3b{letter-spacing:17.419919pt;}
.ls3a{letter-spacing:17.481042pt;}
.ls33{letter-spacing:17.534176pt;}
.ls3c{letter-spacing:17.677742pt;}
.ls3{letter-spacing:17.693578pt;}
.ls42{letter-spacing:17.746711pt;}
.ls4{letter-spacing:18.543719pt;}
.ls1c{letter-spacing:20.205361pt;}
.ls2b{letter-spacing:20.368631pt;}
.ls11{letter-spacing:21.136479pt;}
.ls5d{letter-spacing:22.103689pt;}
.ls56{letter-spacing:22.156822pt;}
.ls4c{letter-spacing:23.325767pt;}
.ls8{letter-spacing:23.591437pt;}
.ls1b{letter-spacing:23.614824pt;}
.ls12{letter-spacing:24.089067pt;}
.ls43{letter-spacing:25.079185pt;}
.ls4f{letter-spacing:29.524026pt;}
.ls4e{letter-spacing:30.977044pt;}
.ls55{letter-spacing:31.880320pt;}
.ls1{letter-spacing:31.896474pt;}
.lsd{letter-spacing:32.174544pt;}
.ls6{letter-spacing:32.468157pt;}
.ls36{letter-spacing:137.260200pt;}
.ls0{letter-spacing:306.975635pt;}
.ls38{letter-spacing:608.117104pt;}
.ls29{letter-spacing:697.063197pt;}
.ls2f{letter-spacing:707.264899pt;}
.ls44{letter-spacing:732.875423pt;}
.ls24{letter-spacing:744.511740pt;}
.ls20{letter-spacing:750.834670pt;}
.lsc{letter-spacing:751.684812pt;}
.ls4b{letter-spacing:768.581381pt;}
.ls54{letter-spacing:784.627809pt;}
.ls26{letter-spacing:800.249166pt;}
.ls17{letter-spacing:841.481046pt;}
.ls41{letter-spacing:847.697709pt;}
.ls52{letter-spacing:853.117363pt;}
.ls5f{letter-spacing:872.564358pt;}
.ls5c{letter-spacing:925.060619pt;}
.ls3e{letter-spacing:952.743363pt;}
.ws4a{word-spacing:-53.133867pt;}
.ws26{word-spacing:-42.066082pt;}
.ws1d{word-spacing:-34.611401pt;}
.ws27{word-spacing:-28.118362pt;}
.ws21{word-spacing:-26.566933pt;}
.ws3b{word-spacing:-25.791179pt;}
.ws2f{word-spacing:-25.525510pt;}
.ws22{word-spacing:-23.591437pt;}
.ws30{word-spacing:-22.921950pt;}
.ws31{word-spacing:-19.840186pt;}
.ws1f{word-spacing:-14.760588pt;}
.ws4e{word-spacing:-13.442868pt;}
.ws59{word-spacing:-12.698994pt;}
.ws2d{word-spacing:-12.028410pt;}
.ws4f{word-spacing:-11.795718pt;}
.ws5a{word-spacing:-11.530049pt;}
.ws33{word-spacing:-10.998710pt;}
.ws2a{word-spacing:-10.945577pt;}
.ws5c{word-spacing:-10.892443pt;}
.wsd{word-spacing:-10.839309pt;}
.ws5b{word-spacing:-10.525819pt;}
.ws16{word-spacing:-10.520506pt;}
.ws1c{word-spacing:-10.414238pt;}
.ws1e{word-spacing:-10.361104pt;}
.ws1b{word-spacing:-10.201702pt;}
.ws29{word-spacing:-10.148569pt;}
.ws55{word-spacing:-9.989167pt;}
.ws2b{word-spacing:-9.776631pt;}
.ws5e{word-spacing:-9.463142pt;}
.ws6{word-spacing:-9.454172pt;}
.ws40{word-spacing:-9.298427pt;}
.ws54{word-spacing:-9.245293pt;}
.ws1a{word-spacing:-9.192159pt;}
.ws3d{word-spacing:-9.139025pt;}
.ws28{word-spacing:-9.085891pt;}
.ws3a{word-spacing:-9.032757pt;}
.ws50{word-spacing:-8.979623pt;}
.ws4{word-spacing:-8.873356pt;}
.ws13{word-spacing:-8.820222pt;}
.wsf{word-spacing:-8.767088pt;}
.wse{word-spacing:-8.713954pt;}
.ws41{word-spacing:-8.660820pt;}
.ws3e{word-spacing:-8.607686pt;}
.ws5f{word-spacing:-8.559866pt;}
.wsc{word-spacing:-8.501419pt;}
.ws18{word-spacing:-8.448285pt;}
.ws5d{word-spacing:-8.347330pt;}
.ws48{word-spacing:-8.288883pt;}
.ws7{word-spacing:-8.220396pt;}
.ws5{word-spacing:-8.172575pt;}
.ws2c{word-spacing:-8.134795pt;}
.ws10{word-spacing:-8.023214pt;}
.ws47{word-spacing:-7.762858pt;}
.ws42{word-spacing:-7.438741pt;}
.ws34{word-spacing:-6.948090pt;}
.ws57{word-spacing:-6.801135pt;}
.ws11{word-spacing:-6.694867pt;}
.ws3c{word-spacing:-6.588599pt;}
.ws56{word-spacing:-6.535466pt;}
.ws4d{word-spacing:-6.110395pt;}
.ws52{word-spacing:-6.057261pt;}
.ws43{word-spacing:-5.950993pt;}
.ws20{word-spacing:-5.887232pt;}
.ws53{word-spacing:-5.525922pt;}
.ws49{word-spacing:-5.260253pt;}
.ws25{word-spacing:-5.249626pt;}
.ws17{word-spacing:-4.994583pt;}
.wsb{word-spacing:-4.468558pt;}
.ws51{word-spacing:-4.144442pt;}
.ws4c{word-spacing:-4.091308pt;}
.ws58{word-spacing:-3.878772pt;}
.ws3f{word-spacing:-3.453701pt;}
.ws45{word-spacing:-3.241166pt;}
.ws46{word-spacing:-3.028630pt;}
.ws12{word-spacing:-2.656693pt;}
.ws19{word-spacing:-0.797008pt;}
.ws35{word-spacing:-0.516758pt;}
.ws2{word-spacing:-0.076513pt;}
.ws9{word-spacing:-0.063761pt;}
.ws2e{word-spacing:-0.042507pt;}
.ws8{word-spacing:0.000000pt;}
.ws32{word-spacing:0.010627pt;}
.wsa{word-spacing:2.734548pt;}
.ws24{word-spacing:5.380425pt;}
.ws4b{word-spacing:5.385842pt;}
.ws36{word-spacing:5.387242pt;}
.ws44{word-spacing:5.389599pt;}
.ws39{word-spacing:8.341909pt;}
.ws1{word-spacing:20.786108pt;}
.ws3{word-spacing:23.846639pt;}
.ws0{word-spacing:28.615887pt;}
.ws15{word-spacing:30.551973pt;}
.ws37{word-spacing:80.529688pt;}
.ws38{word-spacing:677.329279pt;}
.ws23{word-spacing:878.015893pt;}
.ws14{word-spacing:2063.055810pt;}
._29{margin-left:-8.873551pt;}
._1{margin-left:-7.115715pt;}
._2{margin-left:-5.228407pt;}
._a{margin-left:-4.197575pt;}
._5{margin-left:-2.656693pt;}
._4{margin-left:-1.487748pt;}
._3{width:1.071193pt;}
._0{width:2.371905pt;}
._2d{width:3.580435pt;}
._3f{width:14.771215pt;}
._41{width:15.693610pt;}
._28{width:17.236661pt;}
._26{width:18.641472pt;}
._2c{width:21.481992pt;}
._2a{width:22.671131pt;}
._6{width:23.750838pt;}
._f{width:24.743351pt;}
._7{width:27.249158pt;}
._34{width:28.375573pt;}
._3e{width:30.819731pt;}
._40{width:31.880320pt;}
._36{width:35.059837pt;}
._37{width:38.983228pt;}
._2e{width:40.488006pt;}
._35{width:41.550684pt;}
._30{width:50.362390pt;}
._27{width:61.733038pt;}
._2b{width:115.453305pt;}
._38{width:187.690106pt;}
._32{width:211.783077pt;}
._31{width:218.106007pt;}
._2f{width:231.451123pt;}
._33{width:257.159399pt;}
._3d{width:315.211386pt;}
._3a{width:434.528762pt;}
._39{width:457.429458pt;}
._3c{width:520.998851pt;}
._3b{width:524.484398pt;}
._10{width:601.262835pt;}
._17{width:872.927780pt;}
._1f{width:947.368327pt;}
._11{width:1165.236300pt;}
._24{width:1235.832090pt;}
._1a{width:1288.049954pt;}
._25{width:1327.806813pt;}
._1b{width:1368.879292pt;}
._14{width:1436.465570pt;}
._13{width:1485.410377pt;}
._1c{width:1488.247760pt;}
._e{width:1497.994588pt;}
._15{width:1503.529025pt;}
._19{width:1525.260777pt;}
._22{width:1587.321133pt;}
._b{width:1610.593766pt;}
._9{width:1657.702265pt;}
._12{width:1683.378649pt;}
._21{width:1715.108082pt;}
._18{width:1763.544460pt;}
._c{width:1781.059712pt;}
._1d{width:1803.543449pt;}
._d{width:1806.306385pt;}
._20{width:1809.912274pt;}
._23{width:1872.474842pt;}
._16{width:1955.548815pt;}
._8{width:2070.413895pt;}
._1e{width:2077.166565pt;}
.fs7{font-size:26.566933pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.yb5{bottom:138.516000pt;}
.y2d{bottom:142.501333pt;}
.y101{bottom:145.822667pt;}
.yb4{bottom:153.792000pt;}
.y48{bottom:166.412000pt;}
.y100{bottom:169.732000pt;}
.ye4{bottom:175.426667pt;}
.y7e{bottom:181.118667pt;}
.y2c{bottom:181.456000pt;}
.y63{bottom:186.361333pt;}
.yb3{bottom:189.034667pt;}
.y47{bottom:190.322667pt;}
.yff{bottom:193.642667pt;}
.y2b{bottom:206.246667pt;}
.ye3{bottom:208.352000pt;}
.ycc{bottom:209.220000pt;}
.y62{bottom:210.272000pt;}
.yb2{bottom:212.944000pt;}
.y46{bottom:214.232000pt;}
.yfe{bottom:217.553333pt;}
.y7d{bottom:224.637333pt;}
.yd{bottom:227.322667pt;}
.y2a{bottom:231.036000pt;}
.y61{bottom:234.182667pt;}
.ye2{bottom:241.016000pt;}
.yfd{bottom:241.464000pt;}
.y45{bottom:242.814667pt;}
.yb1{bottom:255.752000pt;}
.y29{bottom:255.826667pt;}
.y99{bottom:257.040000pt;}
.yc{bottom:262.524000pt;}
.yfc{bottom:265.373333pt;}
.y44{bottom:266.724000pt;}
.y60{bottom:278.324000pt;}
.ycb{bottom:280.558667pt;}
.y28{bottom:280.617333pt;}
.y7c{bottom:282.560000pt;}
.ye1{bottom:284.085333pt;}
.yfb{bottom:289.284000pt;}
.y43{bottom:290.634667pt;}
.yb{bottom:297.725333pt;}
.y7b{bottom:304.477333pt;}
.y27{bottom:305.408000pt;}
.y7a{bottom:306.469333pt;}
.yb0{bottom:309.562667pt;}
.y98{bottom:310.348000pt;}
.yca{bottom:312.025333pt;}
.yfa{bottom:313.194667pt;}
.y42{bottom:314.545333pt;}
.y26{bottom:330.198667pt;}
.ya{bottom:332.926667pt;}
.y77{bottom:332.984000pt;}
.yaf{bottom:333.473333pt;}
.y97{bottom:334.258667pt;}
.yc9{bottom:335.936000pt;}
.y76{bottom:335.974667pt;}
.yf9{bottom:337.105333pt;}
.y5f{bottom:339.544000pt;}
.ye0{bottom:339.617333pt;}
.y41{bottom:343.126667pt;}
.y75{bottom:345.086667pt;}
.y79{bottom:347.914667pt;}
.y78{bottom:354.073333pt;}
.y96{bottom:358.169333pt;}
.yc8{bottom:359.846667pt;}
.yf8{bottom:361.014667pt;}
.y5e{bottom:363.454667pt;}
.ydf{bottom:363.528000pt;}
.y40{bottom:367.037333pt;}
.y9{bottom:368.128000pt;}
.yae{bottom:368.714667pt;}
.y25{bottom:369.152000pt;}
.y95{bottom:382.080000pt;}
.y74{bottom:383.704000pt;}
.yc7{bottom:383.757333pt;}
.yf7{bottom:384.925333pt;}
.yde{bottom:387.438667pt;}
.y3f{bottom:390.948000pt;}
.y5b{bottom:391.212000pt;}
.y24{bottom:393.942667pt;}
.y5a{bottom:394.204000pt;}
.y59{bottom:403.316000pt;}
.yad{bottom:403.957333pt;}
.y5d{bottom:406.144000pt;}
.yc6{bottom:407.666667pt;}
.yf6{bottom:408.836000pt;}
.ydd{bottom:411.348000pt;}
.y5c{bottom:412.301333pt;}
.y72{bottom:413.209333pt;}
.y3e{bottom:414.858667pt;}
.y23{bottom:418.733333pt;}
.y73{bottom:419.036000pt;}
.y71{bottom:422.320000pt;}
.y94{bottom:424.888000pt;}
.yc5{bottom:432.109333pt;}
.ydc{bottom:435.258667pt;}
.y58{bottom:443.176000pt;}
.y22{bottom:443.524000pt;}
.yac{bottom:446.765333pt;}
.ydb{bottom:459.169333pt;}
.y70{bottom:460.937333pt;}
.y3d{bottom:462.337333pt;}
.y21{bottom:468.314667pt;}
.y8{bottom:472.541333pt;}
.y93{bottom:478.196000pt;}
.yc4{bottom:486.113333pt;}
.y57{bottom:487.317333pt;}
.yf5{bottom:492.522667pt;}
.y6f{bottom:499.554667pt;}
.yab{bottom:500.574667pt;}
.yda{bottom:502.238667pt;}
.y92{bottom:507.236000pt;}
.y20{bottom:507.268000pt;}
.y91{bottom:510.520000pt;}
.yf4{bottom:516.432000pt;}
.y7{bottom:519.129333pt;}
.yaa{bottom:524.485333pt;}
.y6e{bottom:538.170667pt;}
.yc3{bottom:539.540000pt;}
.yf3{bottom:540.342667pt;}
.y3c{bottom:541.269333pt;}
.y90{bottom:542.845333pt;}
.y6{bottom:543.040000pt;}
.y56{bottom:548.538667pt;}
.y1f{bottom:550.957333pt;}
.ya9{bottom:555.194667pt;}
.yd9{bottom:557.770667pt;}
.y8f{bottom:562.692000pt;}
.yc2{bottom:563.450667pt;}
.y5{bottom:566.949333pt;}
.y8e{bottom:568.520000pt;}
.y8d{bottom:571.804000pt;}
.y54{bottom:575.306667pt;}
.ya8{bottom:579.105333pt;}
.y55{bottom:581.134667pt;}
.yd8{bottom:581.681333pt;}
.y6d{bottom:581.690667pt;}
.yf2{bottom:583.150667pt;}
.y53{bottom:584.418667pt;}
.y3b{bottom:587.806667pt;}
.y8c{bottom:595.713333pt;}
.yc1{bottom:596.466667pt;}
.ya7{bottom:603.014667pt;}
.yd7{bottom:605.592000pt;}
.y52{bottom:612.329333pt;}
.y8b{bottom:619.624000pt;}
.y1e{bottom:624.890667pt;}
.yc0{bottom:629.482667pt;}
.yd6{bottom:629.501333pt;}
.y3a{bottom:634.342667pt;}
.y51{bottom:636.238667pt;}
.yf1{bottom:637.120000pt;}
.y6c{bottom:639.612000pt;}
.ya6{bottom:645.822667pt;}
.y1d{bottom:648.801333pt;}
.ybf{bottom:653.393333pt;}
.yd5{bottom:653.412000pt;}
.yf0{bottom:661.030667pt;}
.y8a{bottom:662.432000pt;}
.y6b{bottom:663.522667pt;}
.y50{bottom:676.100000pt;}
.ybe{bottom:677.304000pt;}
.y39{bottom:680.880000pt;}
.y1c{bottom:681.646667pt;}
.y6a{bottom:687.433333pt;}
.yef{bottom:693.913333pt;}
.yd4{bottom:696.481333pt;}
.yee{bottom:697.197333pt;}
.ya5{bottom:699.633333pt;}
.y4{bottom:701.244000pt;}
.y1b{bottom:705.556000pt;}
.y38{bottom:709.462667pt;}
.y89{bottom:715.740000pt;}
.y4f{bottom:715.960000pt;}
.ybd{bottom:720.112000pt;}
.ya4{bottom:723.544000pt;}
.y1a{bottom:729.466667pt;}
.y69{bottom:730.952000pt;}
.yed{bottom:733.365333pt;}
.y37{bottom:738.044000pt;}
.y88{bottom:739.650667pt;}
.ya3{bottom:747.454667pt;}
.yd3{bottom:752.013333pt;}
.y19{bottom:753.377333pt;}
.y68{bottom:754.862667pt;}
.y4e{bottom:760.101333pt;}
.y87{bottom:763.561333pt;}
.y36{bottom:766.625333pt;}
.yec{bottom:769.532000pt;}
.ya2{bottom:771.365333pt;}
.ybc{bottom:773.538667pt;}
.yd2{bottom:775.924000pt;}
.y18{bottom:777.288000pt;}
.y86{bottom:783.408000pt;}
.y35{bottom:795.208000pt;}
.ybb{bottom:797.449333pt;}
.yd1{bottom:799.834667pt;}
.y17{bottom:801.197333pt;}
.y67{bottom:801.376000pt;}
.y85{bottom:801.506667pt;}
.yeb{bottom:802.414667pt;}
.yea{bottom:805.698667pt;}
.ya1{bottom:814.173333pt;}
.y84{bottom:816.430667pt;}
.y4d{bottom:821.322667pt;}
.yba{bottom:821.360000pt;}
.yd0{bottom:823.745333pt;}
.y16{bottom:825.108000pt;}
.ye9{bottom:829.609333pt;}
.ya0{bottom:838.082667pt;}
.y3{bottom:838.129333pt;}
.y83{bottom:840.340000pt;}
.y34{bottom:841.745333pt;}
.yb9{bottom:845.269333pt;}
.y66{bottom:846.112000pt;}
.ycf{bottom:847.654667pt;}
.y15{bottom:859.512000pt;}
.y4c{bottom:861.182667pt;}
.y2{bottom:866.024000pt;}
.yb8{bottom:869.180000pt;}
.y33{bottom:870.326667pt;}
.ye8{bottom:872.417333pt;}
.y9f{bottom:881.612000pt;}
.y82{bottom:883.148000pt;}
.y14{bottom:884.302667pt;}
.y13{bottom:889.124000pt;}
.yce{bottom:890.724000pt;}
.y32{bottom:898.908000pt;}
.y4b{bottom:901.042667pt;}
.yb7{bottom:911.988000pt;}
.y9e{bottom:913.078667pt;}
.y11{bottom:913.742667pt;}
.y12{bottom:919.021333pt;}
.y1{bottom:924.568000pt;}
.y4a{bottom:924.953333pt;}
.ye7{bottom:926.386667pt;}
.y31{bottom:927.490667pt;}
.y65{bottom:929.261333pt;}
.ycd{bottom:933.793333pt;}
.y81{bottom:936.456000pt;}
.y9d{bottom:936.989333pt;}
.ye6{bottom:950.297333pt;}
.y30{bottom:956.072000pt;}
.y10{bottom:957.445333pt;}
.y80{bottom:960.366667pt;}
.y9c{bottom:960.898667pt;}
.yb6{bottom:965.416000pt;}
.y49{bottom:969.094667pt;}
.ye5{bottom:981.766667pt;}
.y2f{bottom:984.654667pt;}
.y9b{bottom:984.809333pt;}
.yf{bottom:985.341333pt;}
.y7f{bottom:989.325333pt;}
.y9a{bottom:1009.250667pt;}
.y64{bottom:1012.410667pt;}
.ye{bottom:1013.236000pt;}
.y2e{bottom:1059.728000pt;}
.ha{height:26.184294pt;}
.h9{height:28.267288pt;}
.h7{height:33.713664pt;}
.hc{height:37.193707pt;}
.hb{height:38.043849pt;}
.h6{height:39.850400pt;}
.h1e{height:42.732556pt;}
.h8{height:43.636400pt;}
.h5{height:44.632747pt;}
.h19{height:45.464294pt;}
.h3{height:47.820800pt;}
.h15{height:48.120294pt;}
.h1a{height:48.125628pt;}
.h14{height:49.789355pt;}
.h18{height:49.794688pt;}
.h20{height:52.605355pt;}
.h16{height:52.986400pt;}
.h2{height:53.559147pt;}
.h10{height:58.301355pt;}
.h4{height:59.756892pt;}
.hd{height:74.445355pt;}
.h1f{height:74.450688pt;}
.h11{height:75.791733pt;}
.he{height:75.797067pt;}
.h1c{height:76.298400pt;}
.hf{height:84.568294pt;}
.h1d{height:88.933067pt;}
.h13{height:97.549355pt;}
.h17{height:97.554688pt;}
.h1b{height:112.245067pt;}
.h12{height:116.423222pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:94.413333pt;}
.x14{left:96.000000pt;}
.x17{left:101.165333pt;}
.x35{left:105.142667pt;}
.x16{left:106.332000pt;}
.xb{left:107.450667pt;}
.x6c{left:111.972000pt;}
.x1c{left:115.925333pt;}
.x6d{left:117.548000pt;}
.x18{left:121.256000pt;}
.x19{left:122.178667pt;}
.x3f{left:127.986667pt;}
.x24{left:133.630667pt;}
.x65{left:134.744000pt;}
.x13{left:141.164000pt;}
.x5f{left:147.862667pt;}
.x4c{left:152.838667pt;}
.x12{left:154.448000pt;}
.x25{left:155.834667pt;}
.x60{left:159.358667pt;}
.x34{left:162.316000pt;}
.x66{left:167.565333pt;}
.x4d{left:178.285333pt;}
.x1{left:181.522667pt;}
.x30{left:186.585333pt;}
.x44{left:189.162667pt;}
.xf{left:190.597333pt;}
.x31{left:192.812000pt;}
.x10{left:196.556000pt;}
.x69{left:198.173333pt;}
.x6f{left:202.748000pt;}
.x74{left:204.661333pt;}
.x45{left:208.530667pt;}
.x6b{left:209.518667pt;}
.x5c{left:212.729333pt;}
.x73{left:216.436000pt;}
.x6a{left:220.237333pt;}
.x40{left:226.214667pt;}
.x36{left:230.588000pt;}
.x46{left:234.112000pt;}
.x2{left:244.284000pt;}
.x75{left:245.290667pt;}
.x61{left:248.104000pt;}
.x1d{left:249.344000pt;}
.x47{left:253.149333pt;}
.x41{left:259.321333pt;}
.x5b{left:267.376000pt;}
.x4e{left:269.533333pt;}
.x48{left:277.198667pt;}
.x2f{left:278.894667pt;}
.x5a{left:280.242667pt;}
.x5d{left:282.098667pt;}
.x4b{left:283.861333pt;}
.x4a{left:287.308000pt;}
.x6{left:293.149333pt;}
.x1e{left:295.249333pt;}
.xa{left:304.546667pt;}
.x42{left:307.057333pt;}
.x43{left:308.229333pt;}
.x3{left:310.824000pt;}
.x21{left:313.002667pt;}
.x37{left:316.365333pt;}
.x22{left:319.892000pt;}
.x5e{left:322.024000pt;}
.x29{left:323.166667pt;}
.x11{left:324.346667pt;}
.x68{left:326.026667pt;}
.x38{left:330.305333pt;}
.x1b{left:331.561333pt;}
.x32{left:334.236000pt;}
.x26{left:335.448000pt;}
.x5{left:339.008000pt;}
.x59{left:342.165333pt;}
.x62{left:343.148000pt;}
.x33{left:344.161333pt;}
.xd{left:346.609333pt;}
.x7{left:349.013333pt;}
.x4{left:350.718667pt;}
.x23{left:353.229333pt;}
.x71{left:356.338667pt;}
.x70{left:357.909333pt;}
.x8{left:360.858667pt;}
.x4f{left:362.070667pt;}
.x15{left:363.736000pt;}
.x55{left:368.426667pt;}
.x56{left:374.653333pt;}
.x50{left:378.828000pt;}
.x2a{left:380.008000pt;}
.xc{left:388.320000pt;}
.x27{left:392.344000pt;}
.x63{left:395.424000pt;}
.x2b{left:397.837333pt;}
.x39{left:403.760000pt;}
.x3b{left:406.116000pt;}
.x64{left:409.408000pt;}
.x57{left:410.397333pt;}
.x67{left:417.068000pt;}
.x2c{left:418.802667pt;}
.x2d{left:422.260000pt;}
.x3c{left:427.082667pt;}
.x51{left:429.377333pt;}
.x3d{left:430.538667pt;}
.x72{left:433.580000pt;}
.x58{left:441.552000pt;}
.x28{left:459.900000pt;}
.xe{left:461.500000pt;}
.x3a{left:468.180000pt;}
.x52{left:470.992000pt;}
.x2e{left:480.917333pt;}
.x49{left:487.008000pt;}
.x3e{left:489.196000pt;}
.x53{left:508.248000pt;}
.x54{left:548.877333pt;}
.x1f{left:561.896000pt;}
.x20{left:578.572000pt;}
.x6e{left:703.122667pt;}
.x1a{left:710.396000pt;}
}




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