
    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_b88f72a2a1d49de2da20b728.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958000;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_85963133ebbe2112f1f75645.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.946000;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_1b5403b394b9af016e1e63be.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.944000;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_7722045679af8d9c8d8c3b9b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937000;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_0d3c718f5d195def2b8fd9c6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946000;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_473393f1af1abd6832c68072.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946000;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_07e273e2e71764e7697ffe2b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.829000;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_5033f3da5f92565c8bc7b803.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946000;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_473393f1af1abd6832c68072.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946000;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_5ea205ad402c2ce430e2af3e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.919000;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_f761fce59b8b7f234f4a8e7d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.936000;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_73380535f0439a56726e7fe8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.111000;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;}
.m1{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);}
.mc{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);}
.m1f{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);}
.m23{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);}
.mf{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);}
.m5{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);}
.md{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);}
.m12{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);}
.ma{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);}
.m15{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);}
.m27{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);}
.m10{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);}
.m13{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);}
.m1c{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);}
.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);}
.m17{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);}
.m21{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);}
.m6{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);}
.m24{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);}
.m3{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);}
.m1d{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);}
.m9{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m28{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);}
.m22{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);}
.m29{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);}
.m20{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);}
.me{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);}
.m26{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);}
.m2{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);}
.m25{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);}
.m4{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);}
.m1e{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);}
.m19{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);}
.m18{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);}
.m11{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);}
.mb{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);}
.m1a{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m7{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);}
.m1b{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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:10.275192px;}
.ls1{letter-spacing:11.957100px;}
.ls6{letter-spacing:13.281192px;}
.ls0{letter-spacing:13.450860px;}
.ls4{letter-spacing:14.821230px;}
.ls3{letter-spacing:15.001230px;}
.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;}
}
.ws75{word-spacing:-61.212672px;}
.ws76{word-spacing:-51.841674px;}
.ws3{word-spacing:-14.944500px;}
.ws9d{word-spacing:-11.955000px;}
.ws28{word-spacing:-4.781881px;}
.ws49{word-spacing:-4.603085px;}
.ws9b{word-spacing:-4.304255px;}
.ws81{word-spacing:-4.244298px;}
.wsa{word-spacing:-4.064844px;}
.ws46{word-spacing:-4.005485px;}
.ws2e{word-spacing:-3.826031px;}
.ws5e{word-spacing:-3.527261px;}
.ws9{word-spacing:-3.467244px;}
.ws8f{word-spacing:-3.347807px;}
.ws66{word-spacing:-3.287850px;}
.ws6a{word-spacing:-3.227833px;}
.ws51{word-spacing:-3.040002px;}
.ws52{word-spacing:-2.989020px;}
.ws23{word-spacing:-2.869643px;}
.ws4d{word-spacing:-2.809626px;}
.ws56{word-spacing:-2.630232px;}
.ws2c{word-spacing:-2.570215px;}
.ws79{word-spacing:-2.510796px;}
.ws4e{word-spacing:-2.331402px;}
.ws9e{word-spacing:-2.295695px;}
.ws65{word-spacing:-2.271385px;}
.ws4a{word-spacing:-2.211965px;}
.ws30{word-spacing:-2.092589px;}
.ws2f{word-spacing:-2.091991px;}
.ws41{word-spacing:-1.913195px;}
.ws88{word-spacing:-1.912597px;}
.ws92{word-spacing:-1.793161px;}
.ws22{word-spacing:-1.733741px;}
.ws77{word-spacing:-1.673784px;}
.ws3c{word-spacing:-1.613767px;}
.ws62{word-spacing:-1.554348px;}
.ws5b{word-spacing:-1.494390px;}
.ws39{word-spacing:-1.434971px;}
.ws40{word-spacing:-1.434373px;}
.ws2d{word-spacing:-1.374954px;}
.ws42{word-spacing:-1.314937px;}
.ws97{word-spacing:-1.254979px;}
.ws3d{word-spacing:-1.136141px;}
.ws6f{word-spacing:-0.896730px;}
.ws2b{word-spacing:-0.836713px;}
.ws1a{word-spacing:-0.777353px;}
.ws43{word-spacing:-0.717336px;}
.wse{word-spacing:-0.537942px;}
.ws4{word-spacing:-0.418506px;}
.ws6b{word-spacing:-0.358489px;}
.wsa4{word-spacing:-0.334931px;}
.ws69{word-spacing:-0.318126px;}
.wsd{word-spacing:-0.299129px;}
.wsc{word-spacing:-0.239112px;}
.wsa2{word-spacing:-0.238957px;}
.ws14{word-spacing:-0.215399px;}
.ws59{word-spacing:-0.183744px;}
.ws31{word-spacing:-0.179693px;}
.ws33{word-spacing:-0.179095px;}
.wsa5{word-spacing:-0.143556px;}
.ws7{word-spacing:-0.119735px;}
.ws7f{word-spacing:-0.119078px;}
.ws12{word-spacing:-0.107377px;}
.ws1c{word-spacing:-0.095544px;}
.ws3b{word-spacing:-0.071730px;}
.wsf{word-spacing:-0.059778px;}
.ws5{word-spacing:-0.059718px;}
.wsad{word-spacing:-0.048155px;}
.wsae{word-spacing:-0.047533px;}
.ws63{word-spacing:-0.012390px;}
.ws26{word-spacing:-0.000299px;}
.ws20{word-spacing:-0.000143px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:0.000299px;}
.wsa3{word-spacing:0.000478px;}
.ws17{word-spacing:0.009732px;}
.ws1f{word-spacing:0.047868px;}
.ws44{word-spacing:0.049686px;}
.ws29{word-spacing:0.059718px;}
.ws1e{word-spacing:0.095879px;}
.ws13{word-spacing:0.107377px;}
.ws10{word-spacing:0.119676px;}
.wsa9{word-spacing:0.143269px;}
.ws8{word-spacing:0.179095px;}
.ws37{word-spacing:0.179693px;}
.wsa8{word-spacing:0.191280px;}
.ws25{word-spacing:0.239112px;}
.ws1d{word-spacing:0.239243px;}
.ws16{word-spacing:0.268765px;}
.ws5c{word-spacing:0.298531px;}
.ws19{word-spacing:0.299129px;}
.ws35{word-spacing:0.358489px;}
.ws7e{word-spacing:0.418506px;}
.ws64{word-spacing:0.477925px;}
.ws6d{word-spacing:0.537942px;}
.ws6e{word-spacing:0.597900px;}
.ws72{word-spacing:0.717336px;}
.wsb2{word-spacing:0.764833px;}
.ws3e{word-spacing:0.777353px;}
.ws68{word-spacing:0.836713px;}
.ws87{word-spacing:0.956149px;}
.ws7a{word-spacing:1.016166px;}
.wsb4{word-spacing:1.099669px;}
.ws24{word-spacing:1.195560px;}
.ws4c{word-spacing:1.255577px;}
.ws34{word-spacing:1.434971px;}
.ws27{word-spacing:1.554348px;}
.ws9c{word-spacing:1.721233px;}
.ws61{word-spacing:1.733144px;}
.ws55{word-spacing:1.793161px;}
.ws71{word-spacing:1.853178px;}
.ws3f{word-spacing:1.912597px;}
.ws73{word-spacing:1.913195px;}
.ws57{word-spacing:1.972554px;}
.ws93{word-spacing:2.032572px;}
.ws7b{word-spacing:2.091991px;}
.ws5f{word-spacing:2.152008px;}
.ws1b{word-spacing:2.152043px;}
.ws4f{word-spacing:2.271385px;}
.ws90{word-spacing:2.331402px;}
.ws89{word-spacing:2.450778px;}
.ws4b{word-spacing:2.510796px;}
.ws84{word-spacing:2.630232px;}
.ws53{word-spacing:2.692853px;}
.wsb1{word-spacing:2.725644px;}
.ws54{word-spacing:2.749609px;}
.ws96{word-spacing:2.929002px;}
.ws38{word-spacing:2.989020px;}
.ws8d{word-spacing:3.108396px;}
.ws8b{word-spacing:3.227833px;}
.wsb{word-spacing:3.287850px;}
.ws8e{word-spacing:3.347209px;}
.ws83{word-spacing:3.407226px;}
.ws8c{word-spacing:3.467244px;}
.ws60{word-spacing:3.766074px;}
.ws36{word-spacing:3.826031px;}
.ws9a{word-spacing:3.885450px;}
.ws58{word-spacing:3.945468px;}
.ws8a{word-spacing:4.004887px;}
.ws32{word-spacing:4.064844px;}
.ws95{word-spacing:4.124861px;}
.ws91{word-spacing:4.244298px;}
.ws94{word-spacing:4.363674px;}
.ws6c{word-spacing:4.483051px;}
.ws5a{word-spacing:4.543068px;}
.ws82{word-spacing:5.200686px;}
.ws98{word-spacing:5.320122px;}
.ws2a{word-spacing:5.618953px;}
.ws50{word-spacing:5.917723px;}
.ws5d{word-spacing:5.977740px;}
.ws7d{word-spacing:6.395947px;}
.ws47{word-spacing:6.814752px;}
.ws99{word-spacing:6.874769px;}
.ws7c{word-spacing:7.412412px;}
.ws9f{word-spacing:7.938359px;}
.wsa0{word-spacing:9.659736px;}
.wsb0{word-spacing:10.090259px;}
.wsab{word-spacing:11.763624px;}
.wsa6{word-spacing:11.811062px;}
.wsaf{word-spacing:11.811636px;}
.ws21{word-spacing:11.907037px;}
.wsa7{word-spacing:12.098460px;}
.wsb3{word-spacing:13.054812px;}
.ws80{word-spacing:13.223142px;}
.ws11{word-spacing:13.395204px;}
.ws15{word-spacing:13.663969px;}
.ws78{word-spacing:14.764987px;}
.ws45{word-spacing:14.884722px;}
.ws67{word-spacing:14.944440px;}
.ws74{word-spacing:16.489190px;}
.ws86{word-spacing:17.216184px;}
.ws3a{word-spacing:17.860770px;}
.wsac{word-spacing:18.410987px;}
.ws70{word-spacing:21.759491px;}
.wsaa{word-spacing:22.476000px;}
.wsb5{word-spacing:23.910840px;}
.ws85{word-spacing:29.247630px;}
.wsa1{word-spacing:30.078732px;}
.ws0{word-spacing:30.870398px;}
.ws1{word-spacing:30.870522px;}
.ws48{word-spacing:59.718222px;}
.ws18{word-spacing:71.658270px;}
._1{margin-left:-5.738400px;}
._2{margin-left:-4.518990px;}
._4{margin-left:-3.091988px;}
._0{margin-left:-1.239408px;}
._5{width:1.075950px;}
._3{width:2.554345px;}
._d{width:4.782778px;}
._f{width:6.625259px;}
._e{width:11.485835px;}
._b{width:12.673115px;}
._13{width:13.722437px;}
._c{width:14.766003px;}
._17{width:15.855393px;}
._16{width:16.880221px;}
._12{width:22.762511px;}
._11{width:24.149100px;}
._19{width:28.175060px;}
._8{width:29.879592px;}
._10{width:32.160684px;}
._18{width:35.990496px;}
._14{width:46.672272px;}
._9{width:59.778000px;}
._7{width:71.730000px;}
._15{width:127.248924px;}
._a{width:1037.383221px;}
._6{width:1658.104260px;}
.fc2{color:rgb(21,81,150);}
.fc1{color:rgb(114,23,122);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820000px;}
.fs3{font-size:53.796000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:59.778000px;}
.fs1{font-size:71.730000px;}
.fs0{font-size:123.978000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:43.905000px;}
.y33{bottom:114.619500px;}
.y5a{bottom:116.664000px;}
.ydf{bottom:118.147500px;}
.y32{bottom:129.564000px;}
.y7e{bottom:132.553500px;}
.y59{bottom:134.596500px;}
.yde{bottom:136.080000px;}
.y31{bottom:144.508500px;}
.y7d{bottom:150.486000px;}
.y58{bottom:152.530500px;}
.y30{bottom:160.947000px;}
.ya2{bottom:168.418500px;}
.y57{bottom:170.463000px;}
.yc4{bottom:172.902000px;}
.y2f{bottom:177.385500px;}
.yf2{bottom:183.594000px;}
.y7c{bottom:184.573500px;}
.ya1{bottom:186.351000px;}
.y56{bottom:188.395500px;}
.y2e{bottom:192.328500px;}
.yf1{bottom:201.526500px;}
.ya0{bottom:204.283500px;}
.y55{bottom:206.328000px;}
.y2d{bottom:207.273000px;}
.y10f{bottom:208.767000px;}
.y9f{bottom:222.216000px;}
.y2c{bottom:222.217500px;}
.yc3{bottom:223.836000px;}
.y54{bottom:224.260500px;}
.y2b{bottom:237.160500px;}
.y9e{bottom:240.150000px;}
.yc2{bottom:241.768500px;}
.y53{bottom:242.193000px;}
.y2a{bottom:252.105000px;}
.y9d{bottom:258.082500px;}
.y52{bottom:260.127000px;}
.y10e{bottom:264.060000px;}
.y9c{bottom:276.015000px;}
.y51{bottom:278.059500px;}
.y29{bottom:279.787500px;}
.y10d{bottom:281.992500px;}
.y9b{bottom:293.947500px;}
.y50{bottom:295.992000px;}
.y28{bottom:297.720000px;}
.y10c{bottom:299.925000px;}
.y9a{bottom:311.880000px;}
.y4f{bottom:313.924500px;}
.y10b{bottom:317.857500px;}
.y27{bottom:320.136000px;}
.y99{bottom:329.812500px;}
.y4e{bottom:331.857000px;}
.y10a{bottom:335.791500px;}
.y98{bottom:347.746500px;}
.y4d{bottom:349.789500px;}
.y109{bottom:353.724000px;}
.y26{bottom:356.398500px;}
.ydd{bottom:361.726500px;}
.y97{bottom:365.679000px;}
.y4c{bottom:367.723500px;}
.y108{bottom:371.656500px;}
.y25{bottom:372.837000px;}
.ydc{bottom:379.659000px;}
.y96{bottom:383.611500px;}
.y4b{bottom:385.656000px;}
.y24{bottom:389.275500px;}
.y107{bottom:389.589000px;}
.ydb{bottom:397.591500px;}
.yb0{bottom:401.544000px;}
.y4a{bottom:403.588500px;}
.y23{bottom:405.714000px;}
.y95{bottom:406.027500px;}
.y106{bottom:407.521500px;}
.yda{bottom:415.524000px;}
.yaf{bottom:419.476500px;}
.yf0{bottom:419.614500px;}
.y49{bottom:421.521000px;}
.y22{bottom:422.152500px;}
.y105{bottom:425.454000px;}
.yd9{bottom:433.456500px;}
.y94{bottom:437.409000px;}
.yef{bottom:437.547000px;}
.y21{bottom:438.591000px;}
.y48{bottom:439.453500px;}
.y104{bottom:443.388000px;}
.yd8{bottom:451.390500px;}
.y20{bottom:455.029500px;}
.y93{bottom:455.343000px;}
.yee{bottom:455.481000px;}
.y47{bottom:457.386000px;}
.y103{bottom:461.320500px;}
.yd7{bottom:469.323000px;}
.y92{bottom:473.275500px;}
.yed{bottom:473.413500px;}
.y46{bottom:475.320000px;}
.y1f{bottom:479.139000px;}
.y102{bottom:479.253000px;}
.yd6{bottom:487.255500px;}
.y91{bottom:491.208000px;}
.yec{bottom:491.346000px;}
.y45{bottom:493.252500px;}
.y1e{bottom:497.071500px;}
.y101{bottom:497.185500px;}
.yc1{bottom:497.737500px;}
.y7b{bottom:503.419500px;}
.yd5{bottom:505.188000px;}
.y90{bottom:509.140500px;}
.yeb{bottom:509.278500px;}
.y44{bottom:511.185000px;}
.y1d{bottom:515.004000px;}
.y100{bottom:515.118000px;}
.yc0{bottom:515.670000px;}
.y7a{bottom:521.352000px;}
.yd4{bottom:523.120500px;}
.y8f{bottom:527.073000px;}
.yea{bottom:527.211000px;}
.y43{bottom:529.117500px;}
.ybf{bottom:533.602500px;}
.yff{bottom:537.534000px;}
.y79{bottom:539.286000px;}
.yd3{bottom:541.053000px;}
.y1c{bottom:542.566500px;}
.y8e{bottom:545.005500px;}
.ye9{bottom:545.143500px;}
.y42{bottom:547.050000px;}
.ybe{bottom:551.536500px;}
.y78{bottom:557.218500px;}
.yd2{bottom:558.987000px;}
.y1b{bottom:560.500500px;}
.y8d{bottom:562.939500px;}
.ye8{bottom:563.077500px;}
.y41{bottom:564.982500px;}
.ybd{bottom:569.469000px;}
.y77{bottom:575.151000px;}
.yd1{bottom:576.919500px;}
.y1a{bottom:578.433000px;}
.y8c{bottom:580.872000px;}
.ye7{bottom:581.010000px;}
.y40{bottom:582.916500px;}
.ybc{bottom:587.401500px;}
.yfe{bottom:592.827000px;}
.y76{bottom:593.083500px;}
.yd0{bottom:594.852000px;}
.y19{bottom:596.365500px;}
.y8b{bottom:598.804500px;}
.ye6{bottom:598.942500px;}
.yc6{bottom:600.837000px;}
.y3f{bottom:600.849000px;}
.ybb{bottom:605.334000px;}
.yfd{bottom:610.759500px;}
.y75{bottom:611.016000px;}
.ycf{bottom:612.784500px;}
.y18{bottom:614.298000px;}
.y8a{bottom:616.737000px;}
.ye5{bottom:616.875000px;}
.yc5{bottom:618.771000px;}
.y3e{bottom:618.781500px;}
.yba{bottom:623.266500px;}
.yfc{bottom:628.692000px;}
.y74{bottom:628.948500px;}
.yce{bottom:630.717000px;}
.y17{bottom:632.230500px;}
.y89{bottom:634.669500px;}
.ye4{bottom:634.807500px;}
.y3d{bottom:636.714000px;}
.yae{bottom:639.153000px;}
.yb9{bottom:641.199000px;}
.yfb{bottom:646.624500px;}
.y73{bottom:646.882500px;}
.ycd{bottom:648.649500px;}
.y16{bottom:650.163000px;}
.y88{bottom:652.602000px;}
.ye3{bottom:652.740000px;}
.y3c{bottom:654.646500px;}
.yb8{bottom:659.133000px;}
.yfa{bottom:664.558500px;}
.y72{bottom:664.815000px;}
.y15{bottom:668.097000px;}
.y87{bottom:670.536000px;}
.ye2{bottom:670.674000px;}
.ycc{bottom:671.065500px;}
.y3b{bottom:672.579000px;}
.yad{bottom:674.247000px;}
.yb7{bottom:677.065500px;}
.yf9{bottom:682.491000px;}
.y71{bottom:682.747500px;}
.y14{bottom:686.029500px;}
.y86{bottom:688.468500px;}
.ye1{bottom:688.606500px;}
.y3a{bottom:690.513000px;}
.yac{bottom:692.181000px;}
.yb6{bottom:694.998000px;}
.yf8{bottom:700.423500px;}
.y70{bottom:700.680000px;}
.ycb{bottom:702.930000px;}
.y13{bottom:703.962000px;}
.y85{bottom:706.401000px;}
.y39{bottom:708.445500px;}
.yab{bottom:710.113500px;}
.ye0{bottom:711.022500px;}
.yb5{bottom:712.930500px;}
.yf7{bottom:718.356000px;}
.y6f{bottom:718.612500px;}
.yca{bottom:720.862500px;}
.y12{bottom:721.894500px;}
.y84{bottom:724.333500px;}
.y38{bottom:726.378000px;}
.yaa{bottom:728.046000px;}
.yb4{bottom:730.863000px;}
.yf6{bottom:736.288500px;}
.y6e{bottom:736.545000px;}
.y11{bottom:739.827000px;}
.y83{bottom:742.266000px;}
.yc9{bottom:743.278500px;}
.y37{bottom:744.310500px;}
.ya9{bottom:745.978500px;}
.yf5{bottom:754.221000px;}
.y6d{bottom:754.479000px;}
.y10{bottom:757.759500px;}
.y82{bottom:760.198500px;}
.yb3{bottom:762.069000px;}
.y36{bottom:762.243000px;}
.ya8{bottom:763.911000px;}
.yf4{bottom:772.155000px;}
.y6c{bottom:772.411500px;}
.yf{bottom:775.693500px;}
.y81{bottom:778.132500px;}
.yb2{bottom:780.001500px;}
.y35{bottom:780.175500px;}
.ya7{bottom:781.843500px;}
.y121{bottom:791.581500px;}
.ye{bottom:793.626000px;}
.yf3{bottom:794.571000px;}
.y6b{bottom:794.827500px;}
.y80{bottom:796.065000px;}
.yb1{bottom:797.934000px;}
.y34{bottom:798.109500px;}
.ya6{bottom:799.777500px;}
.y120{bottom:806.526000px;}
.y130{bottom:811.008000px;}
.yc8{bottom:813.997500px;}
.y6a{bottom:815.748000px;}
.yd{bottom:816.042000px;}
.ya5{bottom:817.710000px;}
.y7f{bottom:818.481000px;}
.y11f{bottom:821.469000px;}
.y12f{bottom:825.952500px;}
.yc7{bottom:831.930000px;}
.ya4{bottom:835.642500px;}
.y11e{bottom:836.413500px;}
.y12e{bottom:840.897000px;}
.y9{bottom:847.080000px;}
.y69{bottom:849.862500px;}
.y11d{bottom:851.358000px;}
.y12d{bottom:855.840000px;}
.y8{bottom:865.012500px;}
.y11c{bottom:866.301000px;}
.y68{bottom:867.796500px;}
.yc{bottom:868.002000px;}
.y12c{bottom:870.784500px;}
.y11b{bottom:881.245500px;}
.y7{bottom:882.945000px;}
.y67{bottom:885.729000px;}
.yb{bottom:885.934500px;}
.ya3{bottom:891.378000px;}
.y11a{bottom:896.190000px;}
.y12b{bottom:900.672000px;}
.y6{bottom:900.879000px;}
.y66{bottom:903.661500px;}
.ya{bottom:903.867000px;}
.y119{bottom:911.133000px;}
.y12a{bottom:915.616500px;}
.y65{bottom:921.594000px;}
.y5{bottom:921.799500px;}
.y118{bottom:926.077500px;}
.y129{bottom:930.561000px;}
.y64{bottom:939.526500px;}
.y117{bottom:941.020500px;}
.y4{bottom:942.721500px;}
.y128{bottom:945.504000px;}
.y116{bottom:955.965000px;}
.y63{bottom:957.459000px;}
.y127{bottom:960.448500px;}
.y115{bottom:970.909500px;}
.y62{bottom:975.393000px;}
.y114{bottom:985.852500px;}
.y3{bottom:986.146500px;}
.y126{bottom:990.336000px;}
.y61{bottom:993.325500px;}
.y113{bottom:1000.797000px;}
.y125{bottom:1005.280500px;}
.y60{bottom:1011.258000px;}
.y112{bottom:1015.741500px;}
.y124{bottom:1020.223500px;}
.y2{bottom:1022.013000px;}
.y5f{bottom:1029.190500px;}
.y111{bottom:1030.684500px;}
.y123{bottom:1035.168000px;}
.y110{bottom:1045.629000px;}
.y5e{bottom:1047.123000px;}
.y122{bottom:1050.112500px;}
.y1{bottom:1057.878000px;}
.y5d{bottom:1065.055500px;}
.y5c{bottom:1105.405500px;}
.hf{height:5.977800px;}
.ha{height:33.808740px;}
.h9{height:33.856560px;}
.hb{height:37.152000px;}
.h8{height:38.087568px;}
.h7{height:38.733120px;}
.he{height:41.725044px;}
.h6{height:41.844600px;}
.h4{height:42.263046px;}
.h3{height:42.322824px;}
.hd{height:42.860826px;}
.hc{height:43.040160px;}
.h2{height:50.784840px;}
.h5{height:51.645600px;}
.h1{height:89.264160px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:81.000000px;}
.x46{left:86.559000px;}
.x2{left:94.080000px;}
.x26{left:95.944500px;}
.x37{left:101.178000px;}
.x47{left:106.177500px;}
.x24{left:107.487000px;}
.x41{left:117.612000px;}
.x42{left:130.315500px;}
.x40{left:134.799000px;}
.x8{left:141.684000px;}
.x1{left:146.179500px;}
.x6{left:155.245500px;}
.xe{left:156.661500px;}
.x25{left:167.799000px;}
.x7{left:204.919500px;}
.x5{left:220.605000px;}
.x4{left:222.523500px;}
.x3f{left:261.610500px;}
.x3a{left:299.097000px;}
.x3b{left:316.434000px;}
.x3{left:351.436500px;}
.x3c{left:355.914000px;}
.x3d{left:373.251000px;}
.x22{left:387.438000px;}
.x23{left:394.387500px;}
.x38{left:427.738500px;}
.x39{left:434.686500px;}
.x21{left:452.250000px;}
.xf{left:476.932500px;}
.x49{left:482.491500px;}
.x14{left:491.877000px;}
.x43{left:497.331000px;}
.x48{left:502.266000px;}
.x44{left:513.546000px;}
.xc{left:525.571500px;}
.x3e{left:530.731500px;}
.x27{left:542.937000px;}
.x2c{left:552.504000px;}
.x28{left:553.594500px;}
.x2d{left:556.494000px;}
.x29{left:568.368000px;}
.x9{left:571.410000px;}
.xb{left:573.952500px;}
.xa{left:578.412000px;}
.x2e{left:581.097000px;}
.x2a{left:591.703500px;}
.x2f{left:595.512000px;}
.x30{left:599.502000px;}
.x1f{left:607.422000px;}
.x31{left:610.594500px;}
.x20{left:614.371500px;}
.x45{left:616.714500px;}
.x2b{left:617.983500px;}
.x32{left:624.103500px;}
.x33{left:638.518500px;}
.x34{left:642.508500px;}
.x35{left:648.655500px;}
.x12{left:675.385500px;}
.x36{left:676.518000px;}
.x13{left:682.335000px;}
.x10{left:696.793500px;}
.x11{left:703.743000px;}
.x1b{left:732.921000px;}
.x15{left:744.462000px;}
.x1c{left:746.818500px;}
.x16{left:751.410000px;}
.x17{left:757.665000px;}
.x18{left:764.613000px;}
.x19{left:770.868000px;}
.x1a{left:777.817500px;}
.x1d{left:799.140000px;}
.x1e{left:806.089500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:9.133504pt;}
.ls1{letter-spacing:10.628533pt;}
.ls6{letter-spacing:11.805504pt;}
.ls0{letter-spacing:11.956320pt;}
.ls4{letter-spacing:13.174427pt;}
.ls3{letter-spacing:13.334427pt;}
.ws75{word-spacing:-54.411264pt;}
.ws76{word-spacing:-46.081488pt;}
.ws3{word-spacing:-13.284000pt;}
.ws9d{word-spacing:-10.626667pt;}
.ws28{word-spacing:-4.250561pt;}
.ws49{word-spacing:-4.091631pt;}
.ws9b{word-spacing:-3.826005pt;}
.ws81{word-spacing:-3.772709pt;}
.wsa{word-spacing:-3.613195pt;}
.ws46{word-spacing:-3.560431pt;}
.ws2e{word-spacing:-3.400917pt;}
.ws5e{word-spacing:-3.135343pt;}
.ws9{word-spacing:-3.081994pt;}
.ws8f{word-spacing:-2.975829pt;}
.ws66{word-spacing:-2.922533pt;}
.ws6a{word-spacing:-2.869185pt;}
.ws51{word-spacing:-2.702224pt;}
.ws52{word-spacing:-2.656906pt;}
.ws23{word-spacing:-2.550794pt;}
.ws4d{word-spacing:-2.497445pt;}
.ws56{word-spacing:-2.337984pt;}
.ws2c{word-spacing:-2.284635pt;}
.ws79{word-spacing:-2.231818pt;}
.ws4e{word-spacing:-2.072357pt;}
.ws9e{word-spacing:-2.040618pt;}
.ws65{word-spacing:-2.019009pt;}
.ws4a{word-spacing:-1.966191pt;}
.ws30{word-spacing:-1.860079pt;}
.ws2f{word-spacing:-1.859547pt;}
.ws41{word-spacing:-1.700618pt;}
.ws88{word-spacing:-1.700086pt;}
.ws92{word-spacing:-1.593921pt;}
.ws22{word-spacing:-1.541103pt;}
.ws77{word-spacing:-1.487808pt;}
.ws3c{word-spacing:-1.434459pt;}
.ws62{word-spacing:-1.381642pt;}
.ws5b{word-spacing:-1.328347pt;}
.ws39{word-spacing:-1.275530pt;}
.ws40{word-spacing:-1.274998pt;}
.ws2d{word-spacing:-1.222181pt;}
.ws42{word-spacing:-1.168833pt;}
.ws97{word-spacing:-1.115537pt;}
.ws3d{word-spacing:-1.009903pt;}
.ws6f{word-spacing:-0.797093pt;}
.ws2b{word-spacing:-0.743745pt;}
.ws1a{word-spacing:-0.690981pt;}
.ws43{word-spacing:-0.637632pt;}
.wse{word-spacing:-0.478171pt;}
.ws4{word-spacing:-0.372005pt;}
.ws6b{word-spacing:-0.318657pt;}
.wsa4{word-spacing:-0.297717pt;}
.ws69{word-spacing:-0.282778pt;}
.wsd{word-spacing:-0.265893pt;}
.wsc{word-spacing:-0.212544pt;}
.wsa2{word-spacing:-0.212406pt;}
.ws14{word-spacing:-0.191466pt;}
.ws59{word-spacing:-0.163328pt;}
.ws31{word-spacing:-0.159727pt;}
.ws33{word-spacing:-0.159195pt;}
.wsa5{word-spacing:-0.127605pt;}
.ws7{word-spacing:-0.106431pt;}
.ws7f{word-spacing:-0.105847pt;}
.ws12{word-spacing:-0.095446pt;}
.ws1c{word-spacing:-0.084928pt;}
.ws3b{word-spacing:-0.063760pt;}
.wsf{word-spacing:-0.053136pt;}
.ws5{word-spacing:-0.053083pt;}
.wsad{word-spacing:-0.042804pt;}
.wsae{word-spacing:-0.042252pt;}
.ws63{word-spacing:-0.011013pt;}
.ws26{word-spacing:-0.000266pt;}
.ws20{word-spacing:-0.000128pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:0.000266pt;}
.wsa3{word-spacing:0.000425pt;}
.ws17{word-spacing:0.008651pt;}
.ws1f{word-spacing:0.042549pt;}
.ws44{word-spacing:0.044165pt;}
.ws29{word-spacing:0.053083pt;}
.ws1e{word-spacing:0.085226pt;}
.ws13{word-spacing:0.095446pt;}
.ws10{word-spacing:0.106378pt;}
.wsa9{word-spacing:0.127350pt;}
.ws8{word-spacing:0.159195pt;}
.ws37{word-spacing:0.159727pt;}
.wsa8{word-spacing:0.170027pt;}
.ws25{word-spacing:0.212544pt;}
.ws1d{word-spacing:0.212661pt;}
.ws16{word-spacing:0.238902pt;}
.ws5c{word-spacing:0.265361pt;}
.ws19{word-spacing:0.265893pt;}
.ws35{word-spacing:0.318657pt;}
.ws7e{word-spacing:0.372005pt;}
.ws64{word-spacing:0.424822pt;}
.ws6d{word-spacing:0.478171pt;}
.ws6e{word-spacing:0.531466pt;}
.ws72{word-spacing:0.637632pt;}
.wsb2{word-spacing:0.679852pt;}
.ws3e{word-spacing:0.690981pt;}
.ws68{word-spacing:0.743745pt;}
.ws87{word-spacing:0.849910pt;}
.ws7a{word-spacing:0.903259pt;}
.wsb4{word-spacing:0.977483pt;}
.ws24{word-spacing:1.062720pt;}
.ws4c{word-spacing:1.116069pt;}
.ws34{word-spacing:1.275530pt;}
.ws27{word-spacing:1.381642pt;}
.ws9c{word-spacing:1.529985pt;}
.ws61{word-spacing:1.540572pt;}
.ws55{word-spacing:1.593921pt;}
.ws71{word-spacing:1.647269pt;}
.ws3f{word-spacing:1.700086pt;}
.ws73{word-spacing:1.700618pt;}
.ws57{word-spacing:1.753382pt;}
.ws93{word-spacing:1.806730pt;}
.ws7b{word-spacing:1.859547pt;}
.ws5f{word-spacing:1.912896pt;}
.ws1b{word-spacing:1.912928pt;}
.ws4f{word-spacing:2.019009pt;}
.ws90{word-spacing:2.072357pt;}
.ws89{word-spacing:2.178470pt;}
.ws4b{word-spacing:2.231818pt;}
.ws84{word-spacing:2.337984pt;}
.ws53{word-spacing:2.393647pt;}
.wsb1{word-spacing:2.422795pt;}
.ws54{word-spacing:2.444097pt;}
.ws96{word-spacing:2.603558pt;}
.ws38{word-spacing:2.656906pt;}
.ws8d{word-spacing:2.763019pt;}
.ws8b{word-spacing:2.869185pt;}
.wsb{word-spacing:2.922533pt;}
.ws8e{word-spacing:2.975297pt;}
.ws83{word-spacing:3.028646pt;}
.ws8c{word-spacing:3.081994pt;}
.ws60{word-spacing:3.347621pt;}
.ws36{word-spacing:3.400917pt;}
.ws9a{word-spacing:3.453734pt;}
.ws58{word-spacing:3.507082pt;}
.ws8a{word-spacing:3.559899pt;}
.ws32{word-spacing:3.613195pt;}
.ws95{word-spacing:3.666543pt;}
.ws91{word-spacing:3.772709pt;}
.ws94{word-spacing:3.878822pt;}
.ws6c{word-spacing:3.984934pt;}
.ws5a{word-spacing:4.038283pt;}
.ws82{word-spacing:4.622832pt;}
.ws98{word-spacing:4.728998pt;}
.ws2a{word-spacing:4.994625pt;}
.ws50{word-spacing:5.260198pt;}
.ws5d{word-spacing:5.313547pt;}
.ws7d{word-spacing:5.685286pt;}
.ws47{word-spacing:6.057557pt;}
.ws99{word-spacing:6.110906pt;}
.ws7c{word-spacing:6.588811pt;}
.ws9f{word-spacing:7.056319pt;}
.wsa0{word-spacing:8.586432pt;}
.wsb0{word-spacing:8.969119pt;}
.wsab{word-spacing:10.456555pt;}
.wsa6{word-spacing:10.498722pt;}
.wsaf{word-spacing:10.499232pt;}
.ws21{word-spacing:10.584032pt;}
.wsa7{word-spacing:10.754187pt;}
.wsb3{word-spacing:11.604277pt;}
.ws80{word-spacing:11.753904pt;}
.ws11{word-spacing:11.906848pt;}
.ws15{word-spacing:12.145750pt;}
.ws78{word-spacing:13.124433pt;}
.ws45{word-spacing:13.230864pt;}
.ws67{word-spacing:13.283947pt;}
.ws74{word-spacing:14.657058pt;}
.ws86{word-spacing:15.303274pt;}
.ws3a{word-spacing:15.876240pt;}
.wsac{word-spacing:16.365322pt;}
.ws70{word-spacing:19.341770pt;}
.wsaa{word-spacing:19.978667pt;}
.wsb5{word-spacing:21.254080pt;}
.ws85{word-spacing:25.997894pt;}
.wsa1{word-spacing:26.736651pt;}
.ws0{word-spacing:27.440354pt;}
.ws1{word-spacing:27.440464pt;}
.ws48{word-spacing:53.082864pt;}
.ws18{word-spacing:63.696240pt;}
._1{margin-left:-5.100800pt;}
._2{margin-left:-4.016880pt;}
._4{margin-left:-2.748434pt;}
._0{margin-left:-1.101696pt;}
._5{width:0.956400pt;}
._3{width:2.270529pt;}
._d{width:4.251358pt;}
._f{width:5.889119pt;}
._e{width:10.209631pt;}
._b{width:11.264991pt;}
._13{width:12.197722pt;}
._c{width:13.125336pt;}
._17{width:14.093683pt;}
._16{width:15.004641pt;}
._12{width:20.233343pt;}
._11{width:21.465867pt;}
._19{width:25.044498pt;}
._8{width:26.559637pt;}
._10{width:28.587274pt;}
._18{width:31.991552pt;}
._14{width:41.486464pt;}
._9{width:53.136000pt;}
._7{width:63.760000pt;}
._15{width:113.110155pt;}
._a{width:922.118418pt;}
._6{width:1473.870454pt;}
.fs4{font-size:42.506667pt;}
.fs3{font-size:47.818667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.136000pt;}
.fs1{font-size:63.760000pt;}
.fs0{font-size:110.202667pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:39.026667pt;}
.y33{bottom:101.884000pt;}
.y5a{bottom:103.701333pt;}
.ydf{bottom:105.020000pt;}
.y32{bottom:115.168000pt;}
.y7e{bottom:117.825333pt;}
.y59{bottom:119.641333pt;}
.yde{bottom:120.960000pt;}
.y31{bottom:128.452000pt;}
.y7d{bottom:133.765333pt;}
.y58{bottom:135.582667pt;}
.y30{bottom:143.064000pt;}
.ya2{bottom:149.705333pt;}
.y57{bottom:151.522667pt;}
.yc4{bottom:153.690667pt;}
.y2f{bottom:157.676000pt;}
.yf2{bottom:163.194667pt;}
.y7c{bottom:164.065333pt;}
.ya1{bottom:165.645333pt;}
.y56{bottom:167.462667pt;}
.y2e{bottom:170.958667pt;}
.yf1{bottom:179.134667pt;}
.ya0{bottom:181.585333pt;}
.y55{bottom:183.402667pt;}
.y2d{bottom:184.242667pt;}
.y10f{bottom:185.570667pt;}
.y9f{bottom:197.525333pt;}
.y2c{bottom:197.526667pt;}
.yc3{bottom:198.965333pt;}
.y54{bottom:199.342667pt;}
.y2b{bottom:210.809333pt;}
.y9e{bottom:213.466667pt;}
.yc2{bottom:214.905333pt;}
.y53{bottom:215.282667pt;}
.y2a{bottom:224.093333pt;}
.y9d{bottom:229.406667pt;}
.y52{bottom:231.224000pt;}
.y10e{bottom:234.720000pt;}
.y9c{bottom:245.346667pt;}
.y51{bottom:247.164000pt;}
.y29{bottom:248.700000pt;}
.y10d{bottom:250.660000pt;}
.y9b{bottom:261.286667pt;}
.y50{bottom:263.104000pt;}
.y28{bottom:264.640000pt;}
.y10c{bottom:266.600000pt;}
.y9a{bottom:277.226667pt;}
.y4f{bottom:279.044000pt;}
.y10b{bottom:282.540000pt;}
.y27{bottom:284.565333pt;}
.y99{bottom:293.166667pt;}
.y4e{bottom:294.984000pt;}
.y10a{bottom:298.481333pt;}
.y98{bottom:309.108000pt;}
.y4d{bottom:310.924000pt;}
.y109{bottom:314.421333pt;}
.y26{bottom:316.798667pt;}
.ydd{bottom:321.534667pt;}
.y97{bottom:325.048000pt;}
.y4c{bottom:326.865333pt;}
.y108{bottom:330.361333pt;}
.y25{bottom:331.410667pt;}
.ydc{bottom:337.474667pt;}
.y96{bottom:340.988000pt;}
.y4b{bottom:342.805333pt;}
.y24{bottom:346.022667pt;}
.y107{bottom:346.301333pt;}
.ydb{bottom:353.414667pt;}
.yb0{bottom:356.928000pt;}
.y4a{bottom:358.745333pt;}
.y23{bottom:360.634667pt;}
.y95{bottom:360.913333pt;}
.y106{bottom:362.241333pt;}
.yda{bottom:369.354667pt;}
.yaf{bottom:372.868000pt;}
.yf0{bottom:372.990667pt;}
.y49{bottom:374.685333pt;}
.y22{bottom:375.246667pt;}
.y105{bottom:378.181333pt;}
.yd9{bottom:385.294667pt;}
.y94{bottom:388.808000pt;}
.yef{bottom:388.930667pt;}
.y21{bottom:389.858667pt;}
.y48{bottom:390.625333pt;}
.y104{bottom:394.122667pt;}
.yd8{bottom:401.236000pt;}
.y20{bottom:404.470667pt;}
.y93{bottom:404.749333pt;}
.yee{bottom:404.872000pt;}
.y47{bottom:406.565333pt;}
.y103{bottom:410.062667pt;}
.yd7{bottom:417.176000pt;}
.y92{bottom:420.689333pt;}
.yed{bottom:420.812000pt;}
.y46{bottom:422.506667pt;}
.y1f{bottom:425.901333pt;}
.y102{bottom:426.002667pt;}
.yd6{bottom:433.116000pt;}
.y91{bottom:436.629333pt;}
.yec{bottom:436.752000pt;}
.y45{bottom:438.446667pt;}
.y1e{bottom:441.841333pt;}
.y101{bottom:441.942667pt;}
.yc1{bottom:442.433333pt;}
.y7b{bottom:447.484000pt;}
.yd5{bottom:449.056000pt;}
.y90{bottom:452.569333pt;}
.yeb{bottom:452.692000pt;}
.y44{bottom:454.386667pt;}
.y1d{bottom:457.781333pt;}
.y100{bottom:457.882667pt;}
.yc0{bottom:458.373333pt;}
.y7a{bottom:463.424000pt;}
.yd4{bottom:464.996000pt;}
.y8f{bottom:468.509333pt;}
.yea{bottom:468.632000pt;}
.y43{bottom:470.326667pt;}
.ybf{bottom:474.313333pt;}
.yff{bottom:477.808000pt;}
.y79{bottom:479.365333pt;}
.yd3{bottom:480.936000pt;}
.y1c{bottom:482.281333pt;}
.y8e{bottom:484.449333pt;}
.ye9{bottom:484.572000pt;}
.y42{bottom:486.266667pt;}
.ybe{bottom:490.254667pt;}
.y78{bottom:495.305333pt;}
.yd2{bottom:496.877333pt;}
.y1b{bottom:498.222667pt;}
.y8d{bottom:500.390667pt;}
.ye8{bottom:500.513333pt;}
.y41{bottom:502.206667pt;}
.ybd{bottom:506.194667pt;}
.y77{bottom:511.245333pt;}
.yd1{bottom:512.817333pt;}
.y1a{bottom:514.162667pt;}
.y8c{bottom:516.330667pt;}
.ye7{bottom:516.453333pt;}
.y40{bottom:518.148000pt;}
.ybc{bottom:522.134667pt;}
.yfe{bottom:526.957333pt;}
.y76{bottom:527.185333pt;}
.yd0{bottom:528.757333pt;}
.y19{bottom:530.102667pt;}
.y8b{bottom:532.270667pt;}
.ye6{bottom:532.393333pt;}
.yc6{bottom:534.077333pt;}
.y3f{bottom:534.088000pt;}
.ybb{bottom:538.074667pt;}
.yfd{bottom:542.897333pt;}
.y75{bottom:543.125333pt;}
.ycf{bottom:544.697333pt;}
.y18{bottom:546.042667pt;}
.y8a{bottom:548.210667pt;}
.ye5{bottom:548.333333pt;}
.yc5{bottom:550.018667pt;}
.y3e{bottom:550.028000pt;}
.yba{bottom:554.014667pt;}
.yfc{bottom:558.837333pt;}
.y74{bottom:559.065333pt;}
.yce{bottom:560.637333pt;}
.y17{bottom:561.982667pt;}
.y89{bottom:564.150667pt;}
.ye4{bottom:564.273333pt;}
.y3d{bottom:565.968000pt;}
.yae{bottom:568.136000pt;}
.yb9{bottom:569.954667pt;}
.yfb{bottom:574.777333pt;}
.y73{bottom:575.006667pt;}
.ycd{bottom:576.577333pt;}
.y16{bottom:577.922667pt;}
.y88{bottom:580.090667pt;}
.ye3{bottom:580.213333pt;}
.y3c{bottom:581.908000pt;}
.yb8{bottom:585.896000pt;}
.yfa{bottom:590.718667pt;}
.y72{bottom:590.946667pt;}
.y15{bottom:593.864000pt;}
.y87{bottom:596.032000pt;}
.ye2{bottom:596.154667pt;}
.ycc{bottom:596.502667pt;}
.y3b{bottom:597.848000pt;}
.yad{bottom:599.330667pt;}
.yb7{bottom:601.836000pt;}
.yf9{bottom:606.658667pt;}
.y71{bottom:606.886667pt;}
.y14{bottom:609.804000pt;}
.y86{bottom:611.972000pt;}
.ye1{bottom:612.094667pt;}
.y3a{bottom:613.789333pt;}
.yac{bottom:615.272000pt;}
.yb6{bottom:617.776000pt;}
.yf8{bottom:622.598667pt;}
.y70{bottom:622.826667pt;}
.ycb{bottom:624.826667pt;}
.y13{bottom:625.744000pt;}
.y85{bottom:627.912000pt;}
.y39{bottom:629.729333pt;}
.yab{bottom:631.212000pt;}
.ye0{bottom:632.020000pt;}
.yb5{bottom:633.716000pt;}
.yf7{bottom:638.538667pt;}
.y6f{bottom:638.766667pt;}
.yca{bottom:640.766667pt;}
.y12{bottom:641.684000pt;}
.y84{bottom:643.852000pt;}
.y38{bottom:645.669333pt;}
.yaa{bottom:647.152000pt;}
.yb4{bottom:649.656000pt;}
.yf6{bottom:654.478667pt;}
.y6e{bottom:654.706667pt;}
.y11{bottom:657.624000pt;}
.y83{bottom:659.792000pt;}
.yc9{bottom:660.692000pt;}
.y37{bottom:661.609333pt;}
.ya9{bottom:663.092000pt;}
.yf5{bottom:670.418667pt;}
.y6d{bottom:670.648000pt;}
.y10{bottom:673.564000pt;}
.y82{bottom:675.732000pt;}
.yb3{bottom:677.394667pt;}
.y36{bottom:677.549333pt;}
.ya8{bottom:679.032000pt;}
.yf4{bottom:686.360000pt;}
.y6c{bottom:686.588000pt;}
.yf{bottom:689.505333pt;}
.y81{bottom:691.673333pt;}
.yb2{bottom:693.334667pt;}
.y35{bottom:693.489333pt;}
.ya7{bottom:694.972000pt;}
.y121{bottom:703.628000pt;}
.ye{bottom:705.445333pt;}
.yf3{bottom:706.285333pt;}
.y6b{bottom:706.513333pt;}
.y80{bottom:707.613333pt;}
.yb1{bottom:709.274667pt;}
.y34{bottom:709.430667pt;}
.ya6{bottom:710.913333pt;}
.y120{bottom:716.912000pt;}
.y130{bottom:720.896000pt;}
.yc8{bottom:723.553333pt;}
.y6a{bottom:725.109333pt;}
.yd{bottom:725.370667pt;}
.ya5{bottom:726.853333pt;}
.y7f{bottom:727.538667pt;}
.y11f{bottom:730.194667pt;}
.y12f{bottom:734.180000pt;}
.yc7{bottom:739.493333pt;}
.ya4{bottom:742.793333pt;}
.y11e{bottom:743.478667pt;}
.y12e{bottom:747.464000pt;}
.y9{bottom:752.960000pt;}
.y69{bottom:755.433333pt;}
.y11d{bottom:756.762667pt;}
.y12d{bottom:760.746667pt;}
.y8{bottom:768.900000pt;}
.y11c{bottom:770.045333pt;}
.y68{bottom:771.374667pt;}
.yc{bottom:771.557333pt;}
.y12c{bottom:774.030667pt;}
.y11b{bottom:783.329333pt;}
.y7{bottom:784.840000pt;}
.y67{bottom:787.314667pt;}
.yb{bottom:787.497333pt;}
.ya3{bottom:792.336000pt;}
.y11a{bottom:796.613333pt;}
.y12b{bottom:800.597333pt;}
.y6{bottom:800.781333pt;}
.y66{bottom:803.254667pt;}
.ya{bottom:803.437333pt;}
.y119{bottom:809.896000pt;}
.y12a{bottom:813.881333pt;}
.y65{bottom:819.194667pt;}
.y5{bottom:819.377333pt;}
.y118{bottom:823.180000pt;}
.y129{bottom:827.165333pt;}
.y64{bottom:835.134667pt;}
.y117{bottom:836.462667pt;}
.y4{bottom:837.974667pt;}
.y128{bottom:840.448000pt;}
.y116{bottom:849.746667pt;}
.y63{bottom:851.074667pt;}
.y127{bottom:853.732000pt;}
.y115{bottom:863.030667pt;}
.y62{bottom:867.016000pt;}
.y114{bottom:876.313333pt;}
.y3{bottom:876.574667pt;}
.y126{bottom:880.298667pt;}
.y61{bottom:882.956000pt;}
.y113{bottom:889.597333pt;}
.y125{bottom:893.582667pt;}
.y60{bottom:898.896000pt;}
.y112{bottom:902.881333pt;}
.y124{bottom:906.865333pt;}
.y2{bottom:908.456000pt;}
.y5f{bottom:914.836000pt;}
.y111{bottom:916.164000pt;}
.y123{bottom:920.149333pt;}
.y110{bottom:929.448000pt;}
.y5e{bottom:930.776000pt;}
.y122{bottom:933.433333pt;}
.y1{bottom:940.336000pt;}
.y5d{bottom:946.716000pt;}
.y5c{bottom:982.582667pt;}
.hf{height:5.313600pt;}
.ha{height:30.052213pt;}
.h9{height:30.094720pt;}
.hb{height:33.024000pt;}
.h8{height:33.855616pt;}
.h7{height:34.429440pt;}
.he{height:37.088928pt;}
.h6{height:37.195200pt;}
.h4{height:37.567152pt;}
.h3{height:37.620288pt;}
.hd{height:38.098512pt;}
.hc{height:38.257920pt;}
.h2{height:45.142080pt;}
.h5{height:45.907200pt;}
.h1{height:79.345920pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:72.000000pt;}
.x46{left:76.941333pt;}
.x2{left:83.626667pt;}
.x26{left:85.284000pt;}
.x37{left:89.936000pt;}
.x47{left:94.380000pt;}
.x24{left:95.544000pt;}
.x41{left:104.544000pt;}
.x42{left:115.836000pt;}
.x40{left:119.821333pt;}
.x8{left:125.941333pt;}
.x1{left:129.937333pt;}
.x6{left:137.996000pt;}
.xe{left:139.254667pt;}
.x25{left:149.154667pt;}
.x7{left:182.150667pt;}
.x5{left:196.093333pt;}
.x4{left:197.798667pt;}
.x3f{left:232.542667pt;}
.x3a{left:265.864000pt;}
.x3b{left:281.274667pt;}
.x3{left:312.388000pt;}
.x3c{left:316.368000pt;}
.x3d{left:331.778667pt;}
.x22{left:344.389333pt;}
.x23{left:350.566667pt;}
.x38{left:380.212000pt;}
.x39{left:386.388000pt;}
.x21{left:402.000000pt;}
.xf{left:423.940000pt;}
.x49{left:428.881333pt;}
.x14{left:437.224000pt;}
.x43{left:442.072000pt;}
.x48{left:446.458667pt;}
.x44{left:456.485333pt;}
.xc{left:467.174667pt;}
.x3e{left:471.761333pt;}
.x27{left:482.610667pt;}
.x2c{left:491.114667pt;}
.x28{left:492.084000pt;}
.x2d{left:494.661333pt;}
.x29{left:505.216000pt;}
.x9{left:507.920000pt;}
.xb{left:510.180000pt;}
.xa{left:514.144000pt;}
.x2e{left:516.530667pt;}
.x2a{left:525.958667pt;}
.x2f{left:529.344000pt;}
.x30{left:532.890667pt;}
.x1f{left:539.930667pt;}
.x31{left:542.750667pt;}
.x20{left:546.108000pt;}
.x45{left:548.190667pt;}
.x2b{left:549.318667pt;}
.x32{left:554.758667pt;}
.x33{left:567.572000pt;}
.x34{left:571.118667pt;}
.x35{left:576.582667pt;}
.x12{left:600.342667pt;}
.x36{left:601.349333pt;}
.x13{left:606.520000pt;}
.x10{left:619.372000pt;}
.x11{left:625.549333pt;}
.x1b{left:651.485333pt;}
.x15{left:661.744000pt;}
.x1c{left:663.838667pt;}
.x16{left:667.920000pt;}
.x17{left:673.480000pt;}
.x18{left:679.656000pt;}
.x19{left:685.216000pt;}
.x1a{left:691.393333pt;}
.x1d{left:710.346667pt;}
.x1e{left:716.524000pt;}
}




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