
    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_d5b2f415eeb16cf380828551.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;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_678cf9a1a525d27d2a12e07e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_aaeaf9e03aa2e118ecf62a17.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_dcfae6e592cd7683c9977c4f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.226000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;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_6e2ca3a57c6013f3a8667bd9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_71cf8d1e3da6da39e0b31ce6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.486000;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_a6f9cbcfb183036f293a3573.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.765000;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_1e5e1eb6d97958e6bc0493af.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_0032eda973bbb88e321c2d96.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000488;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_79e95bfed23d39eb0cda893d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000488;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_9d8bdb23c4d7899d7fe5519b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.225586;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_4449ad0c6fdd4fd54234888a.woff2')format("woff");}.fff{font-family:fff;line-height:1.000488;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_f708595d8a2befde3ddef2ab.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000488;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_0749bb28cba9d8b36962ee21.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.225586;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_20dc74a652d2df6ecedbbc3b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.734000;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;}
.m3{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);}
.m16{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);}
.m9{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);}
.m12{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);}
.m26{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);}
.me{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);}
.m18{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);}
.m10{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);}
.md{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);}
.m22{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);}
.m17{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);}
.m1e{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);}
.m24{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.m1b{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);}
.m1{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);}
.m1f{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);}
.m19{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);}
.m1c{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);}
.m8{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);}
.m5{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);}
.m27{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);}
.ma{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);}
.m14{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);}
.mf{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);}
.m25{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);}
.m23{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);}
.m15{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);}
.m4{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);}
.mb{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);}
.m13{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);}
.m21{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);}
.m11{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);}
.mc{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);}
.m2{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);}
.m6{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:32.874000px;}
.ls9{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.000229px;}
.ls21{letter-spacing:0.000396px;}
.ls17{letter-spacing:0.000406px;}
.ls13{letter-spacing:0.000435px;}
.ls30{letter-spacing:0.000466px;}
.ls20{letter-spacing:0.000489px;}
.ls23{letter-spacing:0.000706px;}
.ls36{letter-spacing:0.000800px;}
.ls31{letter-spacing:0.000810px;}
.ls2e{letter-spacing:0.000838px;}
.ls29{letter-spacing:0.001729px;}
.ls34{letter-spacing:0.001996px;}
.ls24{letter-spacing:0.002517px;}
.ls26{letter-spacing:0.003674px;}
.ls1c{letter-spacing:0.003984px;}
.ls2b{letter-spacing:0.005398px;}
.ls33{letter-spacing:0.005481px;}
.ls14{letter-spacing:0.337680px;}
.ls15{letter-spacing:0.358560px;}
.ls16{letter-spacing:0.378000px;}
.ls1e{letter-spacing:0.548815px;}
.ls19{letter-spacing:0.717483px;}
.lsa{letter-spacing:1.275394px;}
.ls4{letter-spacing:1.861130px;}
.ls0{letter-spacing:2.989200px;}
.ls1{letter-spacing:2.998354px;}
.ls1a{letter-spacing:3.553200px;}
.ls1d{letter-spacing:3.559200px;}
.ls8{letter-spacing:11.954850px;}
.ls3c{letter-spacing:12.405502px;}
.ls3a{letter-spacing:12.736114px;}
.ls3e{letter-spacing:13.298672px;}
.lsc{letter-spacing:13.444090px;}
.ls37{letter-spacing:13.448400px;}
.lsd{letter-spacing:13.450090px;}
.ls3b{letter-spacing:13.454400px;}
.ls38{letter-spacing:13.745522px;}
.ls3d{letter-spacing:13.770808px;}
.ls5{letter-spacing:13.950481px;}
.lsf{letter-spacing:14.094088px;}
.ls11{letter-spacing:14.100088px;}
.ls10{letter-spacing:14.121725px;}
.lse{letter-spacing:14.127725px;}
.ls12{letter-spacing:14.346144px;}
.ls25{letter-spacing:14.608613px;}
.ls32{letter-spacing:14.694928px;}
.ls2f{letter-spacing:14.749574px;}
.ls22{letter-spacing:14.762783px;}
.ls2a{letter-spacing:14.788346px;}
.ls18{letter-spacing:14.944200px;}
.ls1f{letter-spacing:15.013402px;}
.ls28{letter-spacing:15.083876px;}
.ls39{letter-spacing:15.844518px;}
.ls2c{letter-spacing:15.906692px;}
.ls2d{letter-spacing:15.912575px;}
.ls6{letter-spacing:17.511825px;}
.ls7{letter-spacing:17.517708px;}
.ls1b{letter-spacing:18.018082px;}
.ls35{letter-spacing:18.220988px;}
.lsb{letter-spacing:20.847119px;}
.ls2{letter-spacing:70.236600px;}
.ls3{letter-spacing:72.353510px;}
.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;}
}
.ws29{word-spacing:-14.943900px;}
.ws1{word-spacing:-14.355754px;}
.ws3e{word-spacing:-13.500000px;}
.ws7f{word-spacing:-13.449600px;}
.ws3d{word-spacing:-12.060000px;}
.ws15{word-spacing:-11.955150px;}
.ws3{word-spacing:-11.357400px;}
.ws5e{word-spacing:-3.227882px;}
.ws90{word-spacing:-3.012710px;}
.ws7b{word-spacing:-2.391024px;}
.ws4e{word-spacing:-2.271473px;}
.ws64{word-spacing:-2.211697px;}
.wsab{word-spacing:-2.044339px;}
.ws8{word-spacing:-1.908367px;}
.ws35{word-spacing:-1.793268px;}
.ws7c{word-spacing:-1.733492px;}
.ws37{word-spacing:-1.673717px;}
.wsa3{word-spacing:-1.398758px;}
.wsa5{word-spacing:-1.344960px;}
.ws7{word-spacing:-1.322630px;}
.ws68{word-spacing:-1.255288px;}
.wsa4{word-spacing:-1.022170px;}
.wsb{word-spacing:-1.016185px;}
.ws97{word-spacing:-0.968371px;}
.ws18{word-spacing:-0.956410px;}
.ws5d{word-spacing:-0.777083px;}
.ws49{word-spacing:-0.753178px;}
.ws99{word-spacing:-0.699379px;}
.ws38{word-spacing:-0.597756px;}
.ws4a{word-spacing:-0.484186px;}
.ws3c{word-spacing:-0.478205px;}
.ws82{word-spacing:-0.430387px;}
.ws3b{word-spacing:-0.358654px;}
.ws43{word-spacing:-0.322790px;}
.ws21{word-spacing:-0.298878px;}
.ws80{word-spacing:-0.268992px;}
.ws78{word-spacing:-0.267339px;}
.ws20{word-spacing:-0.239102px;}
.ws8d{word-spacing:-0.215194px;}
.ws33{word-spacing:-0.191282px;}
.wsc{word-spacing:-0.179327px;}
.ws4b{word-spacing:-0.161395px;}
.ws12{word-spacing:-0.119551px;}
.wsa0{word-spacing:-0.107597px;}
.ws2b{word-spacing:-0.059776px;}
.ws44{word-spacing:-0.053798px;}
.ws16{word-spacing:-0.047821px;}
.ws4{word-spacing:-0.005189px;}
.ws0{word-spacing:0.000000px;}
.ws62{word-spacing:0.000900px;}
.ws5{word-spacing:0.053798px;}
.wse{word-spacing:0.059776px;}
.ws7d{word-spacing:0.107597px;}
.ws54{word-spacing:0.119551px;}
.ws4d{word-spacing:0.161395px;}
.wsa{word-spacing:0.179327px;}
.ws7e{word-spacing:0.215194px;}
.ws22{word-spacing:0.239102px;}
.ws4c{word-spacing:0.268992px;}
.ws1f{word-spacing:0.298878px;}
.wsa8{word-spacing:0.322790px;}
.ws47{word-spacing:0.358654px;}
.ws76{word-spacing:0.385330px;}
.ws77{word-spacing:0.418429px;}
.ws5b{word-spacing:0.478205px;}
.ws55{word-spacing:0.537980px;}
.ws63{word-spacing:0.568500px;}
.ws30{word-spacing:0.647568px;}
.ws1b{word-spacing:0.657532px;}
.ws2c{word-spacing:0.669533px;}
.ws2e{word-spacing:0.673200px;}
.ws72{word-spacing:0.717307px;}
.ws1c{word-spacing:0.777083px;}
.ws56{word-spacing:0.836858px;}
.ws67{word-spacing:0.896634px;}
.ws96{word-spacing:0.914573px;}
.ws75{word-spacing:0.956410px;}
.ws88{word-spacing:1.022170px;}
.ws5a{word-spacing:1.075961px;}
.ws60{word-spacing:1.135736px;}
.wsa6{word-spacing:1.291162px;}
.ws4f{word-spacing:1.315063px;}
.ws10{word-spacing:1.434614px;}
.ws48{word-spacing:1.494390px;}
.ws8f{word-spacing:1.506355px;}
.ws69{word-spacing:1.554166px;}
.ws28{word-spacing:1.613941px;}
.ws87{word-spacing:1.613952px;}
.ws1a{word-spacing:1.673717px;}
.ws19{word-spacing:1.733492px;}
.ws41{word-spacing:1.775347px;}
.ws32{word-spacing:1.817183px;}
.ws93{word-spacing:1.882944px;}
.ws83{word-spacing:2.205734px;}
.ws50{word-spacing:2.211697px;}
.ws74{word-spacing:2.271473px;}
.ws95{word-spacing:2.367130px;}
.ws6a{word-spacing:2.391024px;}
.ws1e{word-spacing:2.510575px;}
.wsd{word-spacing:2.570351px;}
.ws45{word-spacing:2.869229px;}
.ws71{word-spacing:2.988780px;}
.ws6c{word-spacing:3.048556px;}
.ws9e{word-spacing:3.225446px;}
.ws79{word-spacing:3.227882px;}
.ws8b{word-spacing:3.227904px;}
.ws66{word-spacing:3.287658px;}
.ws53{word-spacing:3.347434px;}
.ws52{word-spacing:3.407209px;}
.ws81{word-spacing:3.496896px;}
.ws92{word-spacing:3.550694px;}
.ws13{word-spacing:3.583475px;}
.ws17{word-spacing:3.586536px;}
.ws34{word-spacing:3.646312px;}
.ws3a{word-spacing:3.706087px;}
.ws84{word-spacing:3.765888px;}
.wsae{word-spacing:3.819686px;}
.ws58{word-spacing:3.885414px;}
.ws6d{word-spacing:3.945190px;}
.ws27{word-spacing:4.004965px;}
.ws70{word-spacing:4.064741px;}
.ws11{word-spacing:4.184292px;}
.ws39{word-spacing:4.244068px;}
.ws57{word-spacing:4.423394px;}
.ws1d{word-spacing:4.483170px;}
.wsa2{word-spacing:4.519066px;}
.ws6f{word-spacing:4.542946px;}
.ws6e{word-spacing:4.662497px;}
.ws86{word-spacing:4.788058px;}
.ws51{word-spacing:4.961375px;}
.ws5f{word-spacing:5.080926px;}
.ws46{word-spacing:5.260253px;}
.ws40{word-spacing:5.379840px;}
.ws9c{word-spacing:5.487437px;}
.ws3f{word-spacing:5.756429px;}
.ws9{word-spacing:5.858009px;}
.ws2a{word-spacing:5.917784px;}
.ws6b{word-spacing:6.037336px;}
.ws23{word-spacing:6.336214px;}
.wsf{word-spacing:6.395989px;}
.ws26{word-spacing:6.635092px;}
.ws25{word-spacing:6.694867px;}
.ws61{word-spacing:6.814418px;}
.wsac{word-spacing:7.208986px;}
.ws7a{word-spacing:7.830604px;}
.ws42{word-spacing:7.854566px;}
.ws59{word-spacing:7.950155px;}
.ws65{word-spacing:9.026116px;}
.ws9a{word-spacing:9.038131px;}
.ws73{word-spacing:9.145667px;}
.ws89{word-spacing:10.759680px;}
.ws14{word-spacing:11.902415px;}
.ws98{word-spacing:12.427430px;}
.wsad{word-spacing:13.234406px;}
.ws91{word-spacing:13.388342px;}
.ws9b{word-spacing:13.392451px;}
.wsa7{word-spacing:13.393334px;}
.ws8a{word-spacing:13.393498px;}
.wsa1{word-spacing:13.395802px;}
.ws9d{word-spacing:13.398403px;}
.ws36{word-spacing:13.808164px;}
.wsaa{word-spacing:14.041382px;}
.ws5c{word-spacing:14.884124px;}
.ws8e{word-spacing:16.354714px;}
.ws9f{word-spacing:16.622986px;}
.ws8c{word-spacing:16.677504px;}
.wsa9{word-spacing:17.107891px;}
.ws24{word-spacing:18.948865px;}
.ws94{word-spacing:22.649126px;}
.ws85{word-spacing:28.405555px;}
.ws2{word-spacing:40.042186px;}
.ws6{word-spacing:46.324500px;}
.ws31{word-spacing:260.491853px;}
.ws2f{word-spacing:260.545651px;}
.ws2d{word-spacing:385.059888px;}
._29{margin-left:-21.096797px;}
._0{margin-left:-9.683712px;}
._3{margin-left:-7.711052px;}
._1{margin-left:-6.665401px;}
._4{margin-left:-4.841856px;}
._14{margin-left:-3.718160px;}
._8{margin-left:-2.047382px;}
._5{margin-left:-1.022170px;}
._9{width:1.091170px;}
._2{width:3.026605px;}
._21{width:4.552218px;}
._20{width:6.711609px;}
._1f{width:8.589102px;}
._1d{width:9.785150px;}
._22{width:11.660875px;}
._1e{width:12.713748px;}
._13{width:14.196570px;}
._6{width:15.709133px;}
._7{width:17.645875px;}
._15{width:18.709763px;}
._a{width:19.815747px;}
._12{width:21.339889px;}
._c{width:22.371086px;}
._11{width:24.209118px;}
._2a{width:25.285248px;}
._b{width:26.433129px;}
._28{width:27.772302px;}
._23{width:29.230268px;}
._24{width:30.545332px;}
._e{width:31.621292px;}
._25{width:34.251419px;}
._d{width:39.293565px;}
._27{width:42.620003px;}
._26{width:46.362384px;}
._16{width:117.336221px;}
._17{width:130.786435px;}
._1b{width:187.218432px;}
._19{width:276.954163px;}
._18{width:355.446931px;}
._1a{width:360.718272px;}
._f{width:781.106180px;}
._10{width:2063.175600px;}
._1c{width:2138.171952px;}
.fc6{color:rgb(41,43,44);}
.fc5{color:rgb(41,43,44);}
.fc4{color:rgb(8,117,183);}
.fc3{color:transparent;}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(61,108,54);}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fse{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fsa{font-size:48.240000px;}
.fs5{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs9{font-size:56.058000px;}
.fsb{font-size:59.760000px;}
.fs1{font-size:59.775600px;}
.fsd{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:109.609560px;}
.ya7{bottom:-342.152520px;}
.ya6{bottom:-303.816480px;}
.ya5{bottom:-283.647480px;}
.ya4{bottom:-263.493420px;}
.ya3{bottom:-243.145140px;}
.ya2{bottom:-222.991080px;}
.ya1{bottom:-202.657740px;}
.ya0{bottom:-182.488740px;}
.y9f{bottom:-162.155400px;}
.y9e{bottom:-141.986400px;}
.y7f{bottom:-114.838500px;}
.y9d{bottom:-104.374500px;}
.y7e{bottom:-95.398500px;}
.y9c{bottom:-84.745500px;}
.y7d{bottom:-75.958500px;}
.y9b{bottom:-65.305500px;}
.y7c{bottom:-56.343000px;}
.y9a{bottom:-45.865500px;}
.y7b{bottom:-36.903000px;}
.y99{bottom:-26.250000px;}
.y7a{bottom:-17.463000px;}
.y98{bottom:-1.774500px;}
.y0{bottom:0.000000px;}
.y25{bottom:3.425340px;}
.y79{bottom:7.011960px;}
.y24{bottom:14.151273px;}
.y2{bottom:17.650257px;}
.y32{bottom:63.780000px;}
.y85{bottom:105.415500px;}
.yb5{bottom:112.927500px;}
.yfe{bottom:113.349000px;}
.y63{bottom:115.368000px;}
.ycc{bottom:116.607000px;}
.y84{bottom:124.648500px;}
.yb4{bottom:133.191000px;}
.yfd{bottom:133.612500px;}
.y62{bottom:135.633000px;}
.ycb{bottom:136.870500px;}
.y14b{bottom:138.859500px;}
.y83{bottom:143.880000px;}
.yb3{bottom:153.454500px;}
.yfc{bottom:153.877500px;}
.y61{bottom:155.896500px;}
.yca{bottom:157.134000px;}
.y14a{bottom:158.227500px;}
.y82{bottom:163.113000px;}
.yb2{bottom:173.719500px;}
.yfb{bottom:174.141000px;}
.y60{bottom:176.161500px;}
.yc9{bottom:177.399000px;}
.y149{bottom:177.595500px;}
.y81{bottom:182.346000px;}
.y11a{bottom:184.153500px;}
.yb1{bottom:193.983000px;}
.yfa{bottom:194.404500px;}
.y5f{bottom:196.425000px;}
.y148{bottom:196.962000px;}
.yc8{bottom:197.662500px;}
.y31{bottom:197.845500px;}
.y119{bottom:199.351500px;}
.y80{bottom:201.579000px;}
.yb0{bottom:214.248000px;}
.y118{bottom:214.549500px;}
.yf9{bottom:214.669500px;}
.y147{bottom:216.330000px;}
.y5e{bottom:216.688500px;}
.yc7{bottom:217.927500px;}
.y6d{bottom:224.008500px;}
.yaf{bottom:234.511500px;}
.yf8{bottom:234.933000px;}
.y146{bottom:235.696500px;}
.y30{bottom:236.041500px;}
.y5d{bottom:236.953500px;}
.yc6{bottom:238.191000px;}
.y117{bottom:238.714500px;}
.y116{bottom:253.912500px;}
.yae{bottom:254.775000px;}
.y145{bottom:255.064500px;}
.yf7{bottom:255.198000px;}
.y2f{bottom:256.305000px;}
.yc5{bottom:258.454500px;}
.y115{bottom:269.110500px;}
.y5c{bottom:271.114500px;}
.y144{bottom:274.432500px;}
.yad{bottom:275.040000px;}
.y2e{bottom:276.570000px;}
.yc4{bottom:278.719500px;}
.yf6{bottom:284.428500px;}
.y5b{bottom:285.312000px;}
.y143{bottom:293.799000px;}
.y2d{bottom:296.833500px;}
.yc3{bottom:298.983000px;}
.y5a{bottom:299.509500px;}
.y114{bottom:302.241000px;}
.yac{bottom:310.039500px;}
.y142{bottom:313.167000px;}
.y2c{bottom:317.098500px;}
.yf5{bottom:319.248000px;}
.y59{bottom:321.210000px;}
.y113{bottom:322.504500px;}
.yc2{bottom:328.213500px;}
.yab{bottom:329.272500px;}
.y141{bottom:332.533500px;}
.y2b{bottom:337.362000px;}
.y58{bottom:337.648500px;}
.yf4{bottom:339.511500px;}
.y112{bottom:342.769500px;}
.yaa{bottom:348.505500px;}
.y140{bottom:351.901500px;}
.y57{bottom:354.087000px;}
.y2a{bottom:357.625500px;}
.yf3{bottom:359.775000px;}
.yc1{bottom:363.033000px;}
.ya9{bottom:367.738500px;}
.y56{bottom:370.525500px;}
.y13f{bottom:371.269500px;}
.y29{bottom:377.890500px;}
.yf2{bottom:380.040000px;}
.y111{bottom:383.298000px;}
.y55{bottom:386.962500px;}
.ya8{bottom:386.971500px;}
.y13e{bottom:390.636000px;}
.yc0{bottom:397.852500px;}
.y28{bottom:398.154000px;}
.yf0{bottom:400.303500px;}
.y54{bottom:403.476000px;}
.y110{bottom:403.561500px;}
.yf1{bottom:405.729000px;}
.y89{bottom:409.401000px;}
.y13d{bottom:410.004000px;}
.ybf{bottom:418.117500px;}
.y27{bottom:418.419000px;}
.yef{bottom:420.568500px;}
.y10f{bottom:423.825000px;}
.y53{bottom:427.192500px;}
.y13c{bottom:429.370500px;}
.ybe{bottom:438.381000px;}
.y26{bottom:438.682500px;}
.yee{bottom:440.832000px;}
.y10e{bottom:444.090000px;}
.y13b{bottom:448.738500px;}
.ybd{bottom:458.644500px;}
.y52{bottom:458.811000px;}
.yed{bottom:461.095500px;}
.y10d{bottom:464.353500px;}
.y97{bottom:464.966040px;}
.y13a{bottom:468.106500px;}
.y23{bottom:474.115464px;}
.y22{bottom:474.508500px;}
.ybc{bottom:478.909500px;}
.yec{bottom:481.360500px;}
.y10c{bottom:484.618500px;}
.y96{bottom:485.135040px;}
.y139{bottom:487.473000px;}
.y51{bottom:495.915000px;}
.ybb{bottom:499.173000px;}
.yeb{bottom:501.624000px;}
.y10b{bottom:504.882000px;}
.y95{bottom:505.468380px;}
.y138{bottom:506.841000px;}
.y21{bottom:512.905500px;}
.y50{bottom:516.180000px;}
.yba{bottom:519.438000px;}
.ye9{bottom:521.889000px;}
.y10a{bottom:525.145500px;}
.y94{bottom:525.622440px;}
.y137{bottom:526.207500px;}
.yea{bottom:527.313000px;}
.y20{bottom:531.063000px;}
.y4f{bottom:536.443500px;}
.yb9{bottom:539.701500px;}
.ye8{bottom:542.152500px;}
.y109{bottom:545.410500px;}
.y136{bottom:545.575500px;}
.y93{bottom:545.970720px;}
.y1f{bottom:554.101500px;}
.y4e{bottom:556.708500px;}
.ye7{bottom:559.686000px;}
.yb8{bottom:559.965000px;}
.ye6{bottom:562.416000px;}
.y135{bottom:564.943500px;}
.y108{bottom:565.674000px;}
.y92{bottom:566.124780px;}
.y1e{bottom:572.259000px;}
.yb7{bottom:580.230000px;}
.ye5{bottom:582.681000px;}
.y134{bottom:584.310000px;}
.y4d{bottom:585.939000px;}
.y91{bottom:586.293780px;}
.y1d{bottom:590.415000px;}
.yb6{bottom:600.493500px;}
.ye3{bottom:602.944500px;}
.y133{bottom:603.678000px;}
.y107{bottom:606.202500px;}
.y90{bottom:606.627120px;}
.ye4{bottom:608.370000px;}
.y1c{bottom:608.572500px;}
.y4c{bottom:620.758500px;}
.y132{bottom:623.044500px;}
.ye2{bottom:623.209500px;}
.y106{bottom:626.466000px;}
.y1b{bottom:626.730000px;}
.y8f{bottom:626.796120px;}
.y4b{bottom:641.022000px;}
.y131{bottom:642.412500px;}
.ye1{bottom:643.473000px;}
.y1a{bottom:644.886000px;}
.y105{bottom:646.731000px;}
.y8e{bottom:647.129460px;}
.y19{bottom:658.161000px;}
.ye0{bottom:661.006500px;}
.y4a{bottom:661.285500px;}
.y130{bottom:661.780500px;}
.ydf{bottom:663.736500px;}
.y104{bottom:666.994500px;}
.y8d{bottom:667.283520px;}
.y12f{bottom:681.147000px;}
.y18{bottom:681.201000px;}
.y49{bottom:681.550500px;}
.yde{bottom:684.001500px;}
.y103{bottom:687.258000px;}
.y8c{bottom:687.631800px;}
.y17{bottom:699.357000px;}
.y12e{bottom:700.515000px;}
.y48{bottom:701.814000px;}
.y78{bottom:702.349440px;}
.ydd{bottom:704.265000px;}
.y102{bottom:707.523000px;}
.y8b{bottom:707.785860px;}
.y16{bottom:712.632000px;}
.y12d{bottom:719.883000px;}
.y47{bottom:722.077500px;}
.y77{bottom:722.697720px;}
.y101{bottom:727.786500px;}
.ydc{bottom:733.495500px;}
.y15{bottom:735.672000px;}
.y12c{bottom:739.249500px;}
.y46{bottom:742.342500px;}
.y76{bottom:742.851780px;}
.y8a{bottom:745.054500px;}
.y100{bottom:748.051500px;}
.y14{bottom:753.828000px;}
.y15d{bottom:753.865500px;}
.y12b{bottom:758.617500px;}
.y45{bottom:762.606000px;}
.y75{bottom:763.020780px;}
.y13{bottom:767.103000px;}
.ydb{bottom:768.315000px;}
.y15c{bottom:773.233500px;}
.y12a{bottom:777.984000px;}
.y44{bottom:782.871000px;}
.y74{bottom:783.354120px;}
.yda{bottom:788.578500px;}
.y12{bottom:790.143000px;}
.y15b{bottom:792.601500px;}
.y129{bottom:797.352000px;}
.y43{bottom:803.134500px;}
.y73{bottom:803.523120px;}
.y11{bottom:808.299000px;}
.yd9{bottom:808.843500px;}
.y128{bottom:816.720000px;}
.y10{bottom:821.574000px;}
.y42{bottom:823.398000px;}
.y72{bottom:823.856460px;}
.y15a{bottom:825.552000px;}
.yf{bottom:826.456500px;}
.yd8{bottom:829.107000px;}
.y127{bottom:836.086500px;}
.yff{bottom:838.074000px;}
.ye{bottom:839.731500px;}
.y41{bottom:843.663000px;}
.y71{bottom:844.010520px;}
.y159{bottom:844.918500px;}
.yd7{bottom:849.372000px;}
.y126{bottom:855.454500px;}
.yd{bottom:862.770000px;}
.y40{bottom:863.926500px;}
.y158{bottom:864.286500px;}
.y70{bottom:864.358800px;}
.yd6{bottom:869.635500px;}
.y88{bottom:872.893500px;}
.y125{bottom:874.821000px;}
.yc{bottom:876.045000px;}
.y157{bottom:883.653000px;}
.y3f{bottom:884.191500px;}
.y6f{bottom:884.512860px;}
.yd5{bottom:889.899000px;}
.y87{bottom:893.157000px;}
.y124{bottom:894.189000px;}
.yb{bottom:899.085000px;}
.y156{bottom:903.021000px;}
.y3e{bottom:904.455000px;}
.yd4{bottom:910.164000px;}
.ya{bottom:912.358500px;}
.y86{bottom:913.422000px;}
.y123{bottom:913.557000px;}
.y6e{bottom:921.781500px;}
.y155{bottom:922.389000px;}
.y3d{bottom:924.718500px;}
.yd3{bottom:930.427500px;}
.y122{bottom:932.923500px;}
.y6c{bottom:933.685500px;}
.y9{bottom:935.398500px;}
.y154{bottom:941.755500px;}
.y3c{bottom:944.983500px;}
.yd2{bottom:950.692500px;}
.y6b{bottom:953.949000px;}
.y8{bottom:957.639000px;}
.y153{bottom:961.123500px;}
.y121{bottom:961.257000px;}
.y3b{bottom:965.247000px;}
.yd1{bottom:970.956000px;}
.y6a{bottom:974.214000px;}
.y7{bottom:977.904000px;}
.y152{bottom:980.490000px;}
.y3a{bottom:985.512000px;}
.yd0{bottom:991.219500px;}
.y69{bottom:994.477500px;}
.y6{bottom:998.167500px;}
.y151{bottom:999.858000px;}
.y120{bottom:1000.710000px;}
.y39{bottom:1005.775500px;}
.ycf{bottom:1011.484500px;}
.y68{bottom:1014.742500px;}
.y150{bottom:1019.226000px;}
.y11f{bottom:1024.873500px;}
.y38{bottom:1026.039000px;}
.yce{bottom:1031.748000px;}
.y67{bottom:1035.006000px;}
.y14f{bottom:1038.592500px;}
.y11e{bottom:1040.071500px;}
.y5{bottom:1040.848500px;}
.y37{bottom:1046.304000px;}
.y66{bottom:1055.269500px;}
.y14e{bottom:1057.960500px;}
.ycd{bottom:1060.978500px;}
.y36{bottom:1066.567500px;}
.y11d{bottom:1070.467500px;}
.y4{bottom:1071.244500px;}
.y65{bottom:1075.534500px;}
.y14d{bottom:1077.327000px;}
.y11c{bottom:1085.667000px;}
.y35{bottom:1086.832500px;}
.y64{bottom:1095.798000px;}
.y14c{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y11b{bottom:1100.865000px;}
.y34{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y33{bottom:1168.366500px;}
.ha{height:25.508090px;}
.h1c{height:31.526842px;}
.hc{height:33.112997px;}
.hb{height:34.199443px;}
.h11{height:38.896243px;}
.h8{height:39.457760px;}
.h13{height:40.866282px;}
.h1b{height:41.482876px;}
.h10{height:41.723369px;}
.h1a{height:42.840113px;}
.hd{height:43.217759px;}
.h19{height:43.623633px;}
.h4{height:43.815515px;}
.h15{height:45.060117px;}
.hf{height:45.094826px;}
.h17{height:50.440430px;}
.h9{height:50.731891px;}
.h2{height:50.930649px;}
.h7{height:54.541601px;}
.h6{height:54.547601px;}
.h16{height:55.820742px;}
.he{height:56.368391px;}
.h3{height:74.315282px;}
.h5{height:77.792486px;}
.h12{height:83.605891px;}
.h18{height:439.852500px;}
.h14{height:686.485500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:204.405766px;}
.w4{width:372.304500px;}
.w5{width:605.583750px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x2d{left:-144.351120px;}
.x2f{left:-112.494000px;}
.x31{left:-28.104870px;}
.x0{left:0.000000px;}
.x32{left:3.743610px;}
.x8{left:29.274117px;}
.x2{left:56.757342px;}
.x3{left:113.754000px;}
.x1{left:114.802500px;}
.x6{left:122.110500px;}
.x4{left:123.307500px;}
.x30{left:143.666250px;}
.x5{left:146.170500px;}
.x5c{left:162.457500px;}
.x5d{left:171.688500px;}
.x29{left:173.925000px;}
.x27{left:182.821500px;}
.x43{left:187.431000px;}
.x9{left:191.481000px;}
.x12{left:201.982500px;}
.x34{left:203.677500px;}
.x13{left:209.455500px;}
.x14{left:213.243000px;}
.x26{left:217.642500px;}
.xa{left:219.721500px;}
.x52{left:223.360500px;}
.x4c{left:226.116000px;}
.xb{left:229.623000px;}
.x4d{left:233.587500px;}
.x69{left:237.706500px;}
.x28{left:239.188500px;}
.x61{left:244.392000px;}
.x5e{left:245.724000px;}
.x76{left:252.097500px;}
.x78{left:254.101500px;}
.x24{left:255.226500px;}
.x2a{left:258.622500px;}
.x2c{left:260.305500px;}
.x77{left:265.518000px;}
.x41{left:270.358500px;}
.x68{left:278.916000px;}
.x42{left:285.301500px;}
.x53{left:293.308500px;}
.x54{left:299.734500px;}
.x10{left:314.547000px;}
.x11{left:322.018500px;}
.x2e{left:363.799500px;}
.x48{left:379.816500px;}
.x49{left:394.759500px;}
.x64{left:402.934500px;}
.x25{left:408.324000px;}
.x2b{left:417.429000px;}
.xe{left:418.723500px;}
.x65{left:423.550500px;}
.xf{left:426.195000px;}
.x55{left:431.050500px;}
.x62{left:432.759000px;}
.x44{left:433.873500px;}
.x63{left:441.990000px;}
.x3d{left:446.676000px;}
.x45{left:448.818000px;}
.x46{left:452.587500px;}
.x3e{left:461.620500px;}
.x3f{left:465.430500px;}
.x47{left:467.532000px;}
.x40{left:480.375000px;}
.x1b{left:482.532000px;}
.x38{left:484.333500px;}
.x1c{left:492.432000px;}
.x39{left:495.586500px;}
.x3a{left:503.058000px;}
.x5b{left:504.757500px;}
.x4a{left:507.273000px;}
.x4b{left:514.744500px;}
.x5f{left:530.271000px;}
.x72{left:535.984500px;}
.x60{left:543.751500px;}
.x73{left:562.882500px;}
.x66{left:567.876000px;}
.x67{left:582.819000px;}
.x6f{left:590.964000px;}
.x3b{left:595.945500px;}
.x3c{left:603.417000px;}
.x33{left:608.380350px;}
.x15{left:610.468500px;}
.x16{left:617.940000px;}
.x6a{left:619.758000px;}
.x1d{left:633.949500px;}
.x56{left:636.462000px;}
.x1e{left:641.422500px;}
.x57{left:643.933500px;}
.x1f{left:645.232500px;}
.x6b{left:646.656000px;}
.x58{left:649.957500px;}
.x17{left:653.512500px;}
.xc{left:661.756500px;}
.x18{left:663.412500px;}
.xd{left:669.228000px;}
.x20{left:677.676000px;}
.x21{left:685.147500px;}
.x22{left:688.809000px;}
.x4e{left:694.419000px;}
.x7{left:701.339982px;}
.x74{left:702.552000px;}
.x23{left:703.753500px;}
.x4f{left:709.362000px;}
.x6e{left:720.939000px;}
.x75{left:729.450000px;}
.x6c{left:731.286000px;}
.x50{left:742.449000px;}
.x35{left:745.624500px;}
.x70{left:749.526000px;}
.x51{left:751.678500px;}
.x36{left:753.097500px;}
.x37{left:756.904500px;}
.x6d{left:758.185500px;}
.x59{left:759.301500px;}
.x19{left:764.367000px;}
.x5a{left:766.107000px;}
.x1a{left:771.838500px;}
.x71{left:776.425500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:29.221333pt;}
.ls9{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.000203pt;}
.ls21{letter-spacing:0.000352pt;}
.ls17{letter-spacing:0.000361pt;}
.ls13{letter-spacing:0.000387pt;}
.ls30{letter-spacing:0.000414pt;}
.ls20{letter-spacing:0.000434pt;}
.ls23{letter-spacing:0.000627pt;}
.ls36{letter-spacing:0.000711pt;}
.ls31{letter-spacing:0.000720pt;}
.ls2e{letter-spacing:0.000745pt;}
.ls29{letter-spacing:0.001537pt;}
.ls34{letter-spacing:0.001774pt;}
.ls24{letter-spacing:0.002237pt;}
.ls26{letter-spacing:0.003266pt;}
.ls1c{letter-spacing:0.003541pt;}
.ls2b{letter-spacing:0.004798pt;}
.ls33{letter-spacing:0.004872pt;}
.ls14{letter-spacing:0.300160pt;}
.ls15{letter-spacing:0.318720pt;}
.ls16{letter-spacing:0.336000pt;}
.ls1e{letter-spacing:0.487835pt;}
.ls19{letter-spacing:0.637762pt;}
.lsa{letter-spacing:1.133683pt;}
.ls4{letter-spacing:1.654338pt;}
.ls0{letter-spacing:2.657067pt;}
.ls1{letter-spacing:2.665203pt;}
.ls1a{letter-spacing:3.158400pt;}
.ls1d{letter-spacing:3.163733pt;}
.ls8{letter-spacing:10.626533pt;}
.ls3c{letter-spacing:11.027113pt;}
.ls3a{letter-spacing:11.320990pt;}
.ls3e{letter-spacing:11.821042pt;}
.lsc{letter-spacing:11.950302pt;}
.ls37{letter-spacing:11.954133pt;}
.lsd{letter-spacing:11.955635pt;}
.ls3b{letter-spacing:11.959467pt;}
.ls38{letter-spacing:12.218242pt;}
.ls3d{letter-spacing:12.240718pt;}
.ls5{letter-spacing:12.400427pt;}
.lsf{letter-spacing:12.528078pt;}
.ls11{letter-spacing:12.533411pt;}
.ls10{letter-spacing:12.552644pt;}
.lse{letter-spacing:12.557978pt;}
.ls12{letter-spacing:12.752128pt;}
.ls25{letter-spacing:12.985434pt;}
.ls32{letter-spacing:13.062158pt;}
.ls2f{letter-spacing:13.110733pt;}
.ls22{letter-spacing:13.122474pt;}
.ls2a{letter-spacing:13.145197pt;}
.ls18{letter-spacing:13.283733pt;}
.ls1f{letter-spacing:13.345247pt;}
.ls28{letter-spacing:13.407890pt;}
.ls39{letter-spacing:14.084016pt;}
.ls2c{letter-spacing:14.139282pt;}
.ls2d{letter-spacing:14.144511pt;}
.ls6{letter-spacing:15.566067pt;}
.ls7{letter-spacing:15.571296pt;}
.ls1b{letter-spacing:16.016073pt;}
.ls35{letter-spacing:16.196434pt;}
.lsb{letter-spacing:18.530773pt;}
.ls2{letter-spacing:62.432533pt;}
.ls3{letter-spacing:64.314231pt;}
.ws29{word-spacing:-13.283467pt;}
.ws1{word-spacing:-12.760670pt;}
.ws3e{word-spacing:-12.000000pt;}
.ws7f{word-spacing:-11.955200pt;}
.ws3d{word-spacing:-10.720000pt;}
.ws15{word-spacing:-10.626800pt;}
.ws3{word-spacing:-10.095467pt;}
.ws5e{word-spacing:-2.869229pt;}
.ws90{word-spacing:-2.677965pt;}
.ws7b{word-spacing:-2.125355pt;}
.ws4e{word-spacing:-2.019087pt;}
.ws64{word-spacing:-1.965953pt;}
.wsab{word-spacing:-1.817190pt;}
.ws8{word-spacing:-1.696326pt;}
.ws35{word-spacing:-1.594016pt;}
.ws7c{word-spacing:-1.540882pt;}
.ws37{word-spacing:-1.487748pt;}
.wsa3{word-spacing:-1.243341pt;}
.wsa5{word-spacing:-1.195520pt;}
.ws7{word-spacing:-1.175671pt;}
.ws68{word-spacing:-1.115811pt;}
.wsa4{word-spacing:-0.908595pt;}
.wsb{word-spacing:-0.903276pt;}
.ws97{word-spacing:-0.860774pt;}
.ws18{word-spacing:-0.850142pt;}
.ws5d{word-spacing:-0.690740pt;}
.ws49{word-spacing:-0.669491pt;}
.ws99{word-spacing:-0.621670pt;}
.ws38{word-spacing:-0.531339pt;}
.ws4a{word-spacing:-0.430387pt;}
.ws3c{word-spacing:-0.425071pt;}
.ws82{word-spacing:-0.382566pt;}
.ws3b{word-spacing:-0.318803pt;}
.ws43{word-spacing:-0.286925pt;}
.ws21{word-spacing:-0.265669pt;}
.ws80{word-spacing:-0.239104pt;}
.ws78{word-spacing:-0.237634pt;}
.ws20{word-spacing:-0.212535pt;}
.ws8d{word-spacing:-0.191283pt;}
.ws33{word-spacing:-0.170029pt;}
.wsc{word-spacing:-0.159402pt;}
.ws4b{word-spacing:-0.143462pt;}
.ws12{word-spacing:-0.106268pt;}
.wsa0{word-spacing:-0.095642pt;}
.ws2b{word-spacing:-0.053134pt;}
.ws44{word-spacing:-0.047821pt;}
.ws16{word-spacing:-0.042507pt;}
.ws4{word-spacing:-0.004612pt;}
.ws0{word-spacing:0.000000pt;}
.ws62{word-spacing:0.000800pt;}
.ws5{word-spacing:0.047821pt;}
.wse{word-spacing:0.053134pt;}
.ws7d{word-spacing:0.095642pt;}
.ws54{word-spacing:0.106268pt;}
.ws4d{word-spacing:0.143462pt;}
.wsa{word-spacing:0.159402pt;}
.ws7e{word-spacing:0.191283pt;}
.ws22{word-spacing:0.212535pt;}
.ws4c{word-spacing:0.239104pt;}
.ws1f{word-spacing:0.265669pt;}
.wsa8{word-spacing:0.286925pt;}
.ws47{word-spacing:0.318803pt;}
.ws76{word-spacing:0.342516pt;}
.ws77{word-spacing:0.371937pt;}
.ws5b{word-spacing:0.425071pt;}
.ws55{word-spacing:0.478205pt;}
.ws63{word-spacing:0.505333pt;}
.ws30{word-spacing:0.575616pt;}
.ws1b{word-spacing:0.584473pt;}
.ws2c{word-spacing:0.595140pt;}
.ws2e{word-spacing:0.598400pt;}
.ws72{word-spacing:0.637606pt;}
.ws1c{word-spacing:0.690740pt;}
.ws56{word-spacing:0.743874pt;}
.ws67{word-spacing:0.797008pt;}
.ws96{word-spacing:0.812954pt;}
.ws75{word-spacing:0.850142pt;}
.ws88{word-spacing:0.908595pt;}
.ws5a{word-spacing:0.956410pt;}
.ws60{word-spacing:1.009543pt;}
.wsa6{word-spacing:1.147699pt;}
.ws4f{word-spacing:1.168945pt;}
.ws10{word-spacing:1.275213pt;}
.ws48{word-spacing:1.328347pt;}
.ws8f{word-spacing:1.338982pt;}
.ws69{word-spacing:1.381481pt;}
.ws28{word-spacing:1.434614pt;}
.ws87{word-spacing:1.434624pt;}
.ws1a{word-spacing:1.487748pt;}
.ws19{word-spacing:1.540882pt;}
.ws41{word-spacing:1.578086pt;}
.ws32{word-spacing:1.615274pt;}
.ws93{word-spacing:1.673728pt;}
.ws83{word-spacing:1.960653pt;}
.ws50{word-spacing:1.965953pt;}
.ws74{word-spacing:2.019087pt;}
.ws95{word-spacing:2.104115pt;}
.ws6a{word-spacing:2.125355pt;}
.ws1e{word-spacing:2.231622pt;}
.wsd{word-spacing:2.284756pt;}
.ws45{word-spacing:2.550426pt;}
.ws71{word-spacing:2.656693pt;}
.ws6c{word-spacing:2.709827pt;}
.ws9e{word-spacing:2.867063pt;}
.ws79{word-spacing:2.869229pt;}
.ws8b{word-spacing:2.869248pt;}
.ws66{word-spacing:2.922363pt;}
.ws53{word-spacing:2.975497pt;}
.ws52{word-spacing:3.028630pt;}
.ws81{word-spacing:3.108352pt;}
.ws92{word-spacing:3.156173pt;}
.ws13{word-spacing:3.185311pt;}
.ws17{word-spacing:3.188032pt;}
.ws34{word-spacing:3.241166pt;}
.ws3a{word-spacing:3.294300pt;}
.ws84{word-spacing:3.347456pt;}
.wsae{word-spacing:3.395277pt;}
.ws58{word-spacing:3.453701pt;}
.ws6d{word-spacing:3.506835pt;}
.ws27{word-spacing:3.559969pt;}
.ws70{word-spacing:3.613103pt;}
.ws11{word-spacing:3.719371pt;}
.ws39{word-spacing:3.772505pt;}
.ws57{word-spacing:3.931906pt;}
.ws1d{word-spacing:3.985040pt;}
.wsa2{word-spacing:4.016947pt;}
.ws6f{word-spacing:4.038174pt;}
.ws6e{word-spacing:4.144442pt;}
.ws86{word-spacing:4.256051pt;}
.ws51{word-spacing:4.410111pt;}
.ws5f{word-spacing:4.516379pt;}
.ws46{word-spacing:4.675780pt;}
.ws40{word-spacing:4.782080pt;}
.ws9c{word-spacing:4.877722pt;}
.ws3f{word-spacing:5.116826pt;}
.ws9{word-spacing:5.207119pt;}
.ws2a{word-spacing:5.260253pt;}
.ws6b{word-spacing:5.366521pt;}
.ws23{word-spacing:5.632190pt;}
.wsf{word-spacing:5.685324pt;}
.ws26{word-spacing:5.897859pt;}
.ws25{word-spacing:5.950993pt;}
.ws61{word-spacing:6.057261pt;}
.wsac{word-spacing:6.407987pt;}
.ws7a{word-spacing:6.960537pt;}
.ws42{word-spacing:6.981837pt;}
.ws59{word-spacing:7.066804pt;}
.ws65{word-spacing:8.023214pt;}
.ws9a{word-spacing:8.033894pt;}
.ws73{word-spacing:8.129482pt;}
.ws89{word-spacing:9.564160pt;}
.ws14{word-spacing:10.579924pt;}
.ws98{word-spacing:11.046605pt;}
.wsad{word-spacing:11.763917pt;}
.ws91{word-spacing:11.900749pt;}
.ws9b{word-spacing:11.904401pt;}
.wsa7{word-spacing:11.905186pt;}
.ws8a{word-spacing:11.905331pt;}
.wsa1{word-spacing:11.907379pt;}
.ws9d{word-spacing:11.909692pt;}
.ws36{word-spacing:12.273923pt;}
.wsaa{word-spacing:12.481229pt;}
.ws5c{word-spacing:13.230333pt;}
.ws8e{word-spacing:14.537523pt;}
.ws9f{word-spacing:14.775987pt;}
.ws8c{word-spacing:14.824448pt;}
.wsa9{word-spacing:15.207014pt;}
.ws24{word-spacing:16.843436pt;}
.ws94{word-spacing:20.132557pt;}
.ws85{word-spacing:25.249382pt;}
.ws2{word-spacing:35.593054pt;}
.ws6{word-spacing:41.177333pt;}
.ws31{word-spacing:231.548314pt;}
.ws2f{word-spacing:231.596134pt;}
.ws2d{word-spacing:342.275456pt;}
._29{margin-left:-18.752708pt;}
._0{margin-left:-8.607744pt;}
._3{margin-left:-6.854269pt;}
._1{margin-left:-5.924801pt;}
._4{margin-left:-4.303872pt;}
._14{margin-left:-3.305031pt;}
._8{margin-left:-1.819895pt;}
._5{margin-left:-0.908595pt;}
._9{width:0.969929pt;}
._2{width:2.690316pt;}
._21{width:4.046416pt;}
._20{width:5.965875pt;}
._1f{width:7.634758pt;}
._1d{width:8.697911pt;}
._22{width:10.365222pt;}
._1e{width:11.301109pt;}
._13{width:12.619173pt;}
._6{width:13.963674pt;}
._7{width:15.685222pt;}
._15{width:16.630900pt;}
._a{width:17.613997pt;}
._12{width:18.968790pt;}
._c{width:19.885410pt;}
._11{width:21.519216pt;}
._2a{width:22.475776pt;}
._b{width:23.496115pt;}
._28{width:24.686490pt;}
._23{width:25.982461pt;}
._24{width:27.151406pt;}
._e{width:28.107815pt;}
._25{width:30.445706pt;}
._d{width:34.927613pt;}
._27{width:37.884447pt;}
._26{width:41.211008pt;}
._16{width:104.298863pt;}
._17{width:116.254609pt;}
._1b{width:166.416384pt;}
._19{width:246.181478pt;}
._18{width:315.952828pt;}
._1a{width:320.638464pt;}
._f{width:694.316605pt;}
._10{width:1833.933867pt;}
._1c{width:1900.597290pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fse{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fsa{font-size:42.880000pt;}
.fs5{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs9{font-size:49.829333pt;}
.fsb{font-size:53.120000pt;}
.fs1{font-size:53.133867pt;}
.fsd{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:97.430720pt;}
.ya7{bottom:-304.135573pt;}
.ya6{bottom:-270.059093pt;}
.ya5{bottom:-252.131093pt;}
.ya4{bottom:-234.216373pt;}
.ya3{bottom:-216.129013pt;}
.ya2{bottom:-198.214293pt;}
.ya1{bottom:-180.140213pt;}
.ya0{bottom:-162.212213pt;}
.y9f{bottom:-144.138133pt;}
.y9e{bottom:-126.210133pt;}
.y7f{bottom:-102.078667pt;}
.y9d{bottom:-92.777333pt;}
.y7e{bottom:-84.798667pt;}
.y9c{bottom:-75.329333pt;}
.y7d{bottom:-67.518667pt;}
.y9b{bottom:-58.049333pt;}
.y7c{bottom:-50.082667pt;}
.y9a{bottom:-40.769333pt;}
.y7b{bottom:-32.802667pt;}
.y99{bottom:-23.333333pt;}
.y7a{bottom:-15.522667pt;}
.y98{bottom:-1.577333pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:3.044747pt;}
.y79{bottom:6.232853pt;}
.y24{bottom:12.578910pt;}
.y2{bottom:15.689118pt;}
.y32{bottom:56.693333pt;}
.y85{bottom:93.702667pt;}
.yb5{bottom:100.380000pt;}
.yfe{bottom:100.754667pt;}
.y63{bottom:102.549333pt;}
.ycc{bottom:103.650667pt;}
.y84{bottom:110.798667pt;}
.yb4{bottom:118.392000pt;}
.yfd{bottom:118.766667pt;}
.y62{bottom:120.562667pt;}
.ycb{bottom:121.662667pt;}
.y14b{bottom:123.430667pt;}
.y83{bottom:127.893333pt;}
.yb3{bottom:136.404000pt;}
.yfc{bottom:136.780000pt;}
.y61{bottom:138.574667pt;}
.yca{bottom:139.674667pt;}
.y14a{bottom:140.646667pt;}
.y82{bottom:144.989333pt;}
.yb2{bottom:154.417333pt;}
.yfb{bottom:154.792000pt;}
.y60{bottom:156.588000pt;}
.yc9{bottom:157.688000pt;}
.y149{bottom:157.862667pt;}
.y81{bottom:162.085333pt;}
.y11a{bottom:163.692000pt;}
.yb1{bottom:172.429333pt;}
.yfa{bottom:172.804000pt;}
.y5f{bottom:174.600000pt;}
.y148{bottom:175.077333pt;}
.yc8{bottom:175.700000pt;}
.y31{bottom:175.862667pt;}
.y119{bottom:177.201333pt;}
.y80{bottom:179.181333pt;}
.yb0{bottom:190.442667pt;}
.y118{bottom:190.710667pt;}
.yf9{bottom:190.817333pt;}
.y147{bottom:192.293333pt;}
.y5e{bottom:192.612000pt;}
.yc7{bottom:193.713333pt;}
.y6d{bottom:199.118667pt;}
.yaf{bottom:208.454667pt;}
.yf8{bottom:208.829333pt;}
.y146{bottom:209.508000pt;}
.y30{bottom:209.814667pt;}
.y5d{bottom:210.625333pt;}
.yc6{bottom:211.725333pt;}
.y117{bottom:212.190667pt;}
.y116{bottom:225.700000pt;}
.yae{bottom:226.466667pt;}
.y145{bottom:226.724000pt;}
.yf7{bottom:226.842667pt;}
.y2f{bottom:227.826667pt;}
.yc5{bottom:229.737333pt;}
.y115{bottom:239.209333pt;}
.y5c{bottom:240.990667pt;}
.y144{bottom:243.940000pt;}
.yad{bottom:244.480000pt;}
.y2e{bottom:245.840000pt;}
.yc4{bottom:247.750667pt;}
.yf6{bottom:252.825333pt;}
.y5b{bottom:253.610667pt;}
.y143{bottom:261.154667pt;}
.y2d{bottom:263.852000pt;}
.yc3{bottom:265.762667pt;}
.y5a{bottom:266.230667pt;}
.y114{bottom:268.658667pt;}
.yac{bottom:275.590667pt;}
.y142{bottom:278.370667pt;}
.y2c{bottom:281.865333pt;}
.yf5{bottom:283.776000pt;}
.y59{bottom:285.520000pt;}
.y113{bottom:286.670667pt;}
.yc2{bottom:291.745333pt;}
.yab{bottom:292.686667pt;}
.y141{bottom:295.585333pt;}
.y2b{bottom:299.877333pt;}
.y58{bottom:300.132000pt;}
.yf4{bottom:301.788000pt;}
.y112{bottom:304.684000pt;}
.yaa{bottom:309.782667pt;}
.y140{bottom:312.801333pt;}
.y57{bottom:314.744000pt;}
.y2a{bottom:317.889333pt;}
.yf3{bottom:319.800000pt;}
.yc1{bottom:322.696000pt;}
.ya9{bottom:326.878667pt;}
.y56{bottom:329.356000pt;}
.y13f{bottom:330.017333pt;}
.y29{bottom:335.902667pt;}
.yf2{bottom:337.813333pt;}
.y111{bottom:340.709333pt;}
.y55{bottom:343.966667pt;}
.ya8{bottom:343.974667pt;}
.y13e{bottom:347.232000pt;}
.yc0{bottom:353.646667pt;}
.y28{bottom:353.914667pt;}
.yf0{bottom:355.825333pt;}
.y54{bottom:358.645333pt;}
.y110{bottom:358.721333pt;}
.yf1{bottom:360.648000pt;}
.y89{bottom:363.912000pt;}
.y13d{bottom:364.448000pt;}
.ybf{bottom:371.660000pt;}
.y27{bottom:371.928000pt;}
.yef{bottom:373.838667pt;}
.y10f{bottom:376.733333pt;}
.y53{bottom:379.726667pt;}
.y13c{bottom:381.662667pt;}
.ybe{bottom:389.672000pt;}
.y26{bottom:389.940000pt;}
.yee{bottom:391.850667pt;}
.y10e{bottom:394.746667pt;}
.y13b{bottom:398.878667pt;}
.ybd{bottom:407.684000pt;}
.y52{bottom:407.832000pt;}
.yed{bottom:409.862667pt;}
.y10d{bottom:412.758667pt;}
.y97{bottom:413.303147pt;}
.y13a{bottom:416.094667pt;}
.y23{bottom:421.435968pt;}
.y22{bottom:421.785333pt;}
.ybc{bottom:425.697333pt;}
.yec{bottom:427.876000pt;}
.y10c{bottom:430.772000pt;}
.y96{bottom:431.231147pt;}
.y139{bottom:433.309333pt;}
.y51{bottom:440.813333pt;}
.ybb{bottom:443.709333pt;}
.yeb{bottom:445.888000pt;}
.y10b{bottom:448.784000pt;}
.y95{bottom:449.305227pt;}
.y138{bottom:450.525333pt;}
.y21{bottom:455.916000pt;}
.y50{bottom:458.826667pt;}
.yba{bottom:461.722667pt;}
.ye9{bottom:463.901333pt;}
.y10a{bottom:466.796000pt;}
.y94{bottom:467.219947pt;}
.y137{bottom:467.740000pt;}
.yea{bottom:468.722667pt;}
.y20{bottom:472.056000pt;}
.y4f{bottom:476.838667pt;}
.yb9{bottom:479.734667pt;}
.ye8{bottom:481.913333pt;}
.y109{bottom:484.809333pt;}
.y136{bottom:484.956000pt;}
.y93{bottom:485.307307pt;}
.y1f{bottom:492.534667pt;}
.y4e{bottom:494.852000pt;}
.ye7{bottom:497.498667pt;}
.yb8{bottom:497.746667pt;}
.ye6{bottom:499.925333pt;}
.y135{bottom:502.172000pt;}
.y108{bottom:502.821333pt;}
.y92{bottom:503.222027pt;}
.y1e{bottom:508.674667pt;}
.yb7{bottom:515.760000pt;}
.ye5{bottom:517.938667pt;}
.y134{bottom:519.386667pt;}
.y4d{bottom:520.834667pt;}
.y91{bottom:521.150027pt;}
.y1d{bottom:524.813333pt;}
.yb6{bottom:533.772000pt;}
.ye3{bottom:535.950667pt;}
.y133{bottom:536.602667pt;}
.y107{bottom:538.846667pt;}
.y90{bottom:539.224107pt;}
.ye4{bottom:540.773333pt;}
.y1c{bottom:540.953333pt;}
.y4c{bottom:551.785333pt;}
.y132{bottom:553.817333pt;}
.ye2{bottom:553.964000pt;}
.y106{bottom:556.858667pt;}
.y1b{bottom:557.093333pt;}
.y8f{bottom:557.152107pt;}
.y4b{bottom:569.797333pt;}
.y131{bottom:571.033333pt;}
.ye1{bottom:571.976000pt;}
.y1a{bottom:573.232000pt;}
.y105{bottom:574.872000pt;}
.y8e{bottom:575.226187pt;}
.y19{bottom:585.032000pt;}
.ye0{bottom:587.561333pt;}
.y4a{bottom:587.809333pt;}
.y130{bottom:588.249333pt;}
.ydf{bottom:589.988000pt;}
.y104{bottom:592.884000pt;}
.y8d{bottom:593.140907pt;}
.y12f{bottom:605.464000pt;}
.y18{bottom:605.512000pt;}
.y49{bottom:605.822667pt;}
.yde{bottom:608.001333pt;}
.y103{bottom:610.896000pt;}
.y8c{bottom:611.228267pt;}
.y17{bottom:621.650667pt;}
.y12e{bottom:622.680000pt;}
.y48{bottom:623.834667pt;}
.y78{bottom:624.310613pt;}
.ydd{bottom:626.013333pt;}
.y102{bottom:628.909333pt;}
.y8b{bottom:629.142987pt;}
.y16{bottom:633.450667pt;}
.y12d{bottom:639.896000pt;}
.y47{bottom:641.846667pt;}
.y77{bottom:642.397973pt;}
.y101{bottom:646.921333pt;}
.ydc{bottom:651.996000pt;}
.y15{bottom:653.930667pt;}
.y12c{bottom:657.110667pt;}
.y46{bottom:659.860000pt;}
.y76{bottom:660.312693pt;}
.y8a{bottom:662.270667pt;}
.y100{bottom:664.934667pt;}
.y14{bottom:670.069333pt;}
.y15d{bottom:670.102667pt;}
.y12b{bottom:674.326667pt;}
.y45{bottom:677.872000pt;}
.y75{bottom:678.240693pt;}
.y13{bottom:681.869333pt;}
.ydb{bottom:682.946667pt;}
.y15c{bottom:687.318667pt;}
.y12a{bottom:691.541333pt;}
.y44{bottom:695.885333pt;}
.y74{bottom:696.314773pt;}
.yda{bottom:700.958667pt;}
.y12{bottom:702.349333pt;}
.y15b{bottom:704.534667pt;}
.y129{bottom:708.757333pt;}
.y43{bottom:713.897333pt;}
.y73{bottom:714.242773pt;}
.y11{bottom:718.488000pt;}
.yd9{bottom:718.972000pt;}
.y128{bottom:725.973333pt;}
.y10{bottom:730.288000pt;}
.y42{bottom:731.909333pt;}
.y72{bottom:732.316853pt;}
.y15a{bottom:733.824000pt;}
.yf{bottom:734.628000pt;}
.yd8{bottom:736.984000pt;}
.y127{bottom:743.188000pt;}
.yff{bottom:744.954667pt;}
.ye{bottom:746.428000pt;}
.y41{bottom:749.922667pt;}
.y71{bottom:750.231573pt;}
.y159{bottom:751.038667pt;}
.yd7{bottom:754.997333pt;}
.y126{bottom:760.404000pt;}
.yd{bottom:766.906667pt;}
.y40{bottom:767.934667pt;}
.y158{bottom:768.254667pt;}
.y70{bottom:768.318933pt;}
.yd6{bottom:773.009333pt;}
.y88{bottom:775.905333pt;}
.y125{bottom:777.618667pt;}
.yc{bottom:778.706667pt;}
.y157{bottom:785.469333pt;}
.y3f{bottom:785.948000pt;}
.y6f{bottom:786.233653pt;}
.yd5{bottom:791.021333pt;}
.y87{bottom:793.917333pt;}
.y124{bottom:794.834667pt;}
.yb{bottom:799.186667pt;}
.y156{bottom:802.685333pt;}
.y3e{bottom:803.960000pt;}
.yd4{bottom:809.034667pt;}
.ya{bottom:810.985333pt;}
.y86{bottom:811.930667pt;}
.y123{bottom:812.050667pt;}
.y6e{bottom:819.361333pt;}
.y155{bottom:819.901333pt;}
.y3d{bottom:821.972000pt;}
.yd3{bottom:827.046667pt;}
.y122{bottom:829.265333pt;}
.y6c{bottom:829.942667pt;}
.y9{bottom:831.465333pt;}
.y154{bottom:837.116000pt;}
.y3c{bottom:839.985333pt;}
.yd2{bottom:845.060000pt;}
.y6b{bottom:847.954667pt;}
.y8{bottom:851.234667pt;}
.y153{bottom:854.332000pt;}
.y121{bottom:854.450667pt;}
.y3b{bottom:857.997333pt;}
.yd1{bottom:863.072000pt;}
.y6a{bottom:865.968000pt;}
.y7{bottom:869.248000pt;}
.y152{bottom:871.546667pt;}
.y3a{bottom:876.010667pt;}
.yd0{bottom:881.084000pt;}
.y69{bottom:883.980000pt;}
.y6{bottom:887.260000pt;}
.y151{bottom:888.762667pt;}
.y120{bottom:889.520000pt;}
.y39{bottom:894.022667pt;}
.ycf{bottom:899.097333pt;}
.y68{bottom:901.993333pt;}
.y150{bottom:905.978667pt;}
.y11f{bottom:910.998667pt;}
.y38{bottom:912.034667pt;}
.yce{bottom:917.109333pt;}
.y67{bottom:920.005333pt;}
.y14f{bottom:923.193333pt;}
.y11e{bottom:924.508000pt;}
.y5{bottom:925.198667pt;}
.y37{bottom:930.048000pt;}
.y66{bottom:938.017333pt;}
.y14e{bottom:940.409333pt;}
.ycd{bottom:943.092000pt;}
.y36{bottom:948.060000pt;}
.y11d{bottom:951.526667pt;}
.y4{bottom:952.217333pt;}
.y65{bottom:956.030667pt;}
.y14d{bottom:957.624000pt;}
.y11c{bottom:965.037333pt;}
.y35{bottom:966.073333pt;}
.y64{bottom:974.042667pt;}
.y14c{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y11b{bottom:978.546667pt;}
.y34{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y33{bottom:1038.548000pt;}
.ha{height:22.673858pt;}
.h1c{height:28.023859pt;}
.hc{height:29.433775pt;}
.hb{height:30.399505pt;}
.h11{height:34.574438pt;}
.h8{height:35.073565pt;}
.h13{height:36.325584pt;}
.h1b{height:36.873667pt;}
.h10{height:37.087439pt;}
.h1a{height:38.080100pt;}
.hd{height:38.415786pt;}
.h19{height:38.776563pt;}
.h4{height:38.947124pt;}
.h15{height:40.053437pt;}
.hf{height:40.084290pt;}
.h17{height:44.835938pt;}
.h9{height:45.095014pt;}
.h2{height:45.271688pt;}
.h7{height:48.481423pt;}
.h6{height:48.486756pt;}
.h16{height:49.618437pt;}
.he{height:50.105236pt;}
.h3{height:66.058028pt;}
.h5{height:69.148877pt;}
.h12{height:74.316348pt;}
.h18{height:390.980000pt;}
.h14{height:610.209333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:181.694014pt;}
.w4{width:330.937333pt;}
.w5{width:538.296667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x2d{left:-128.312107pt;}
.x2f{left:-99.994667pt;}
.x31{left:-24.982107pt;}
.x0{left:0.000000pt;}
.x32{left:3.327653pt;}
.x8{left:26.021437pt;}
.x2{left:50.450971pt;}
.x3{left:101.114667pt;}
.x1{left:102.046667pt;}
.x6{left:108.542667pt;}
.x4{left:109.606667pt;}
.x30{left:127.703333pt;}
.x5{left:129.929333pt;}
.x5c{left:144.406667pt;}
.x5d{left:152.612000pt;}
.x29{left:154.600000pt;}
.x27{left:162.508000pt;}
.x43{left:166.605333pt;}
.x9{left:170.205333pt;}
.x12{left:179.540000pt;}
.x34{left:181.046667pt;}
.x13{left:186.182667pt;}
.x14{left:189.549333pt;}
.x26{left:193.460000pt;}
.xa{left:195.308000pt;}
.x52{left:198.542667pt;}
.x4c{left:200.992000pt;}
.xb{left:204.109333pt;}
.x4d{left:207.633333pt;}
.x69{left:211.294667pt;}
.x28{left:212.612000pt;}
.x61{left:217.237333pt;}
.x5e{left:218.421333pt;}
.x76{left:224.086667pt;}
.x78{left:225.868000pt;}
.x24{left:226.868000pt;}
.x2a{left:229.886667pt;}
.x2c{left:231.382667pt;}
.x77{left:236.016000pt;}
.x41{left:240.318667pt;}
.x68{left:247.925333pt;}
.x42{left:253.601333pt;}
.x53{left:260.718667pt;}
.x54{left:266.430667pt;}
.x10{left:279.597333pt;}
.x11{left:286.238667pt;}
.x2e{left:323.377333pt;}
.x48{left:337.614667pt;}
.x49{left:350.897333pt;}
.x64{left:358.164000pt;}
.x25{left:362.954667pt;}
.x2b{left:371.048000pt;}
.xe{left:372.198667pt;}
.x65{left:376.489333pt;}
.xf{left:378.840000pt;}
.x55{left:383.156000pt;}
.x62{left:384.674667pt;}
.x44{left:385.665333pt;}
.x63{left:392.880000pt;}
.x3d{left:397.045333pt;}
.x45{left:398.949333pt;}
.x46{left:402.300000pt;}
.x3e{left:410.329333pt;}
.x3f{left:413.716000pt;}
.x47{left:415.584000pt;}
.x40{left:427.000000pt;}
.x1b{left:428.917333pt;}
.x38{left:430.518667pt;}
.x1c{left:437.717333pt;}
.x39{left:440.521333pt;}
.x3a{left:447.162667pt;}
.x5b{left:448.673333pt;}
.x4a{left:450.909333pt;}
.x4b{left:457.550667pt;}
.x5f{left:471.352000pt;}
.x72{left:476.430667pt;}
.x60{left:483.334667pt;}
.x73{left:500.340000pt;}
.x66{left:504.778667pt;}
.x67{left:518.061333pt;}
.x6f{left:525.301333pt;}
.x3b{left:529.729333pt;}
.x3c{left:536.370667pt;}
.x33{left:540.782533pt;}
.x15{left:542.638667pt;}
.x16{left:549.280000pt;}
.x6a{left:550.896000pt;}
.x1d{left:563.510667pt;}
.x56{left:565.744000pt;}
.x1e{left:570.153333pt;}
.x57{left:572.385333pt;}
.x1f{left:573.540000pt;}
.x6b{left:574.805333pt;}
.x58{left:577.740000pt;}
.x17{left:580.900000pt;}
.xc{left:588.228000pt;}
.x18{left:589.700000pt;}
.xd{left:594.869333pt;}
.x20{left:602.378667pt;}
.x21{left:609.020000pt;}
.x22{left:612.274667pt;}
.x4e{left:617.261333pt;}
.x7{left:623.413317pt;}
.x74{left:624.490667pt;}
.x23{left:625.558667pt;}
.x4f{left:630.544000pt;}
.x6e{left:640.834667pt;}
.x75{left:648.400000pt;}
.x6c{left:650.032000pt;}
.x50{left:659.954667pt;}
.x35{left:662.777333pt;}
.x70{left:666.245333pt;}
.x51{left:668.158667pt;}
.x36{left:669.420000pt;}
.x37{left:672.804000pt;}
.x6d{left:673.942667pt;}
.x59{left:674.934667pt;}
.x19{left:679.437333pt;}
.x5a{left:680.984000pt;}
.x1a{left:686.078667pt;}
.x71{left:690.156000pt;}
}




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