
    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_c4c8adcb5a2852bb94a97e41.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_84f1b92c28fa369ab4923d6b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b4d8b2e9e0770916a9524477.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_53068aea50df65df5be625a0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.926000;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_22748729c05f733b46aff8c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.730469;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_2ba747995f9223879e342fdc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.885254;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_0ff65c8ab6441b0707239d49.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_413a81ac915594c801ca1a6f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.894531;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_1bc04417192debaccf28b37f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.905762;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_2902efb11b44311c2d50ddaa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.722000;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_8dfbffa5e3446ce955f94d67.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940000;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_53f81afcba36092dc07d941a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.932129;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_721d77c28d1641d75f11b1b3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.708008;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_b32a583f0f1b32db56100ca6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_08573d812d28b2ca3df9d8cd.woff2')format("woff");}.fff{font-family:fff;line-height:0.550000;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_3acdcb0c30ca12a702e3c915.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_8d8eb44cf84863f36ef5ec7b.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.740723;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_85c3e21b308f2d67a8530567.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_84a6d93de242b387b16df72d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_ff13eebcf41b926c83e9272a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_03ff4714aef69f2aba8c91f2.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.922000;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;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff19;src:url('chunks/assets/font_c00a699e83964d8b2981d4b5.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_910a792e78c4057d4cf48cee.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.995605;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:ff1b;src:url('chunks/assets/font_45b31062ca160ae9b4046b0f.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.872559;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:ff1c;src:url('chunks/assets/font_a8d30fd93edc305b16eaeb26.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.666504;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:ff1d;src:url('chunks/assets/font_c701e32598cd3dc2d3dc2711.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.894531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m23{transform:matrix(0.008914,0.249841,-0.249841,0.008914,0,0);-ms-transform:matrix(0.008914,0.249841,-0.249841,0.008914,0,0);-webkit-transform:matrix(0.008914,0.249841,-0.249841,0.008914,0,0);}
.md{transform:matrix(0.011119,0.249753,-0.249753,0.011119,0,0);-ms-transform:matrix(0.011119,0.249753,-0.249753,0.011119,0,0);-webkit-transform:matrix(0.011119,0.249753,-0.249753,0.011119,0,0);}
.m26{transform:matrix(0.011119,0.249753,-0.249753,0.011119,0,0);-ms-transform:matrix(0.011119,0.249753,-0.249753,0.011119,0,0);-webkit-transform:matrix(0.011119,0.249753,-0.249753,0.011119,0,0);}
.m1a{transform:matrix(0.026645,-0.248576,0.248576,0.026645,0,0);-ms-transform:matrix(0.026645,-0.248576,0.248576,0.026645,0,0);-webkit-transform:matrix(0.026645,-0.248576,0.248576,0.026645,0,0);}
.m13{transform:matrix(0.034036,-0.247672,0.247672,0.034036,0,0);-ms-transform:matrix(0.034036,-0.247672,0.247672,0.034036,0,0);-webkit-transform:matrix(0.034036,-0.247672,0.247672,0.034036,0,0);}
.mf{transform:matrix(0.050140,-0.244920,0.244920,0.050140,0,0);-ms-transform:matrix(0.050140,-0.244920,0.244920,0.050140,0,0);-webkit-transform:matrix(0.050140,-0.244920,0.244920,0.050140,0,0);}
.m8{transform:matrix(0.069201,0.240232,-0.240232,0.069201,0,0);-ms-transform:matrix(0.069201,0.240232,-0.240232,0.069201,0,0);-webkit-transform:matrix(0.069201,0.240232,-0.240232,0.069201,0,0);}
.mc{transform:matrix(0.097182,-0.230338,0.230338,0.097182,0,0);-ms-transform:matrix(0.097182,-0.230338,0.230338,0.097182,0,0);-webkit-transform:matrix(0.097182,-0.230338,0.230338,0.097182,0,0);}
.m16{transform:matrix(0.099334,0.229418,-0.229418,0.099334,0,0);-ms-transform:matrix(0.099334,0.229418,-0.229418,0.099334,0,0);-webkit-transform:matrix(0.099334,0.229418,-0.229418,0.099334,0,0);}
.m21{transform:matrix(0.107769,0.225579,-0.225579,0.107769,0,0);-ms-transform:matrix(0.107769,0.225579,-0.225579,0.107769,0,0);-webkit-transform:matrix(0.107769,0.225579,-0.225579,0.107769,0,0);}
.m1e{transform:matrix(0.116341,0.221280,-0.221280,0.116341,0,0);-ms-transform:matrix(0.116341,0.221280,-0.221280,0.116341,0,0);-webkit-transform:matrix(0.116341,0.221280,-0.221280,0.116341,0,0);}
.ma{transform:matrix(0.116547,0.221171,-0.221171,0.116547,0,0);-ms-transform:matrix(0.116547,0.221171,-0.221171,0.116547,0,0);-webkit-transform:matrix(0.116547,0.221171,-0.221171,0.116547,0,0);}
.m24{transform:matrix(0.134095,-0.210994,0.210994,0.134095,0,0);-ms-transform:matrix(0.134095,-0.210994,0.210994,0.134095,0,0);-webkit-transform:matrix(0.134095,-0.210994,0.210994,0.134095,0,0);}
.m11{transform:matrix(0.149997,-0.200002,0.200002,0.149997,0,0);-ms-transform:matrix(0.149997,-0.200002,0.200002,0.149997,0,0);-webkit-transform:matrix(0.149997,-0.200002,0.200002,0.149997,0,0);}
.m14{transform:matrix(0.154584,-0.196478,0.196478,0.154584,0,0);-ms-transform:matrix(0.154584,-0.196478,0.196478,0.154584,0,0);-webkit-transform:matrix(0.154584,-0.196478,0.196478,0.154584,0,0);}
.m9{transform:matrix(0.156645,-0.194840,0.194840,0.156645,0,0);-ms-transform:matrix(0.156645,-0.194840,0.194840,0.156645,0,0);-webkit-transform:matrix(0.156645,-0.194840,0.194840,0.156645,0,0);}
.m25{transform:matrix(0.156645,-0.194840,0.194840,0.156645,0,0);-ms-transform:matrix(0.156645,-0.194840,0.194840,0.156645,0,0);-webkit-transform:matrix(0.156645,-0.194840,0.194840,0.156645,0,0);}
.m6{transform:matrix(0.173609,0.179889,-0.179889,0.173609,0,0);-ms-transform:matrix(0.173609,0.179889,-0.179889,0.173609,0,0);-webkit-transform:matrix(0.173609,0.179889,-0.179889,0.173609,0,0);}
.me{transform:matrix(0.198469,-0.152020,0.152020,0.198469,0,0);-ms-transform:matrix(0.198469,-0.152020,0.152020,0.198469,0,0);-webkit-transform:matrix(0.198469,-0.152020,0.152020,0.198469,0,0);}
.m18{transform:matrix(0.206280,0.141239,-0.141239,0.206280,0,0);-ms-transform:matrix(0.206280,0.141239,-0.141239,0.206280,0,0);-webkit-transform:matrix(0.206280,0.141239,-0.141239,0.206280,0,0);}
.m19{transform:matrix(0.209348,-0.136650,0.136650,0.209348,0,0);-ms-transform:matrix(0.209348,-0.136650,0.136650,0.209348,0,0);-webkit-transform:matrix(0.209348,-0.136650,0.136650,0.209348,0,0);}
.m10{transform:matrix(0.210040,0.135585,-0.135585,0.210040,0,0);-ms-transform:matrix(0.210040,0.135585,-0.135585,0.210040,0,0);-webkit-transform:matrix(0.210040,0.135585,-0.135585,0.210040,0,0);}
.m27{transform:matrix(0.210040,0.135585,-0.135585,0.210040,0,0);-ms-transform:matrix(0.210040,0.135585,-0.135585,0.210040,0,0);-webkit-transform:matrix(0.210040,0.135585,-0.135585,0.210040,0,0);}
.m15{transform:matrix(0.212784,0.131236,-0.131236,0.212784,0,0);-ms-transform:matrix(0.212784,0.131236,-0.131236,0.212784,0,0);-webkit-transform:matrix(0.212784,0.131236,-0.131236,0.212784,0,0);}
.m1b{transform:matrix(0.216098,0.125704,-0.125704,0.216098,0,0);-ms-transform:matrix(0.216098,0.125704,-0.125704,0.216098,0,0);-webkit-transform:matrix(0.216098,0.125704,-0.125704,0.216098,0,0);}
.m20{transform:matrix(0.217259,0.123687,-0.123687,0.217259,0,0);-ms-transform:matrix(0.217259,0.123687,-0.123687,0.217259,0,0);-webkit-transform:matrix(0.217259,0.123687,-0.123687,0.217259,0,0);}
.m22{transform:matrix(0.221083,-0.116715,0.116715,0.221083,0,0);-ms-transform:matrix(0.221083,-0.116715,0.116715,0.221083,0,0);-webkit-transform:matrix(0.221083,-0.116715,0.116715,0.221083,0,0);}
.m17{transform:matrix(0.225813,-0.107278,0.107278,0.225813,0,0);-ms-transform:matrix(0.225813,-0.107278,0.107278,0.225813,0,0);-webkit-transform:matrix(0.225813,-0.107278,0.107278,0.225813,0,0);}
.m5{transform:matrix(0.230186,-0.097542,0.097542,0.230186,0,0);-ms-transform:matrix(0.230186,-0.097542,0.097542,0.230186,0,0);-webkit-transform:matrix(0.230186,-0.097542,0.097542,0.230186,0,0);}
.m3{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.236934,0.079763,-0.079763,0.236934,0,0);-ms-transform:matrix(0.236934,0.079763,-0.079763,0.236934,0,0);-webkit-transform:matrix(0.236934,0.079763,-0.079763,0.236934,0,0);}
.m1d{transform:matrix(0.242582,-0.060447,0.060447,0.242582,0,0);-ms-transform:matrix(0.242582,-0.060447,0.060447,0.242582,0,0);-webkit-transform:matrix(0.242582,-0.060447,0.060447,0.242582,0,0);}
.m7{transform:matrix(0.246746,-0.040205,0.040205,0.246746,0,0);-ms-transform:matrix(0.246746,-0.040205,0.040205,0.246746,0,0);-webkit-transform:matrix(0.246746,-0.040205,0.040205,0.246746,0,0);}
.m1c{transform:matrix(0.247463,-0.035523,0.035523,0.247463,0,0);-ms-transform:matrix(0.247463,-0.035523,0.035523,0.247463,0,0);-webkit-transform:matrix(0.247463,-0.035523,0.035523,0.247463,0,0);}
.mb{transform:matrix(0.249146,0.020642,-0.020642,0.249146,0,0);-ms-transform:matrix(0.249146,0.020642,-0.020642,0.249146,0,0);-webkit-transform:matrix(0.249146,0.020642,-0.020642,0.249146,0,0);}
.m12{transform:matrix(0.249685,0.012539,-0.012539,0.249685,0,0);-ms-transform:matrix(0.249685,0.012539,-0.012539,0.249685,0,0);-webkit-transform:matrix(0.249685,0.012539,-0.012539,0.249685,0,0);}
.m1f{transform:matrix(0.249994,0.001714,-0.001714,0.249994,0,0);-ms-transform:matrix(0.249994,0.001714,-0.001714,0.249994,0,0);-webkit-transform:matrix(0.249994,0.001714,-0.001714,0.249994,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);}
.m1{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);}
.v7{vertical-align:-22.854000px;}
.va{vertical-align:-8.970000px;}
.v5{vertical-align:-7.470000px;}
.v3{vertical-align:-5.385200px;}
.v4{vertical-align:-3.141976px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.834640px;}
.v2{vertical-align:6.369294px;}
.v8{vertical-align:11.751049px;}
.v9{vertical-align:21.901471px;}
.v6{vertical-align:23.754000px;}
.ls1{letter-spacing:-2.409444px;}
.ls3{letter-spacing:-1.199393px;}
.ls6{letter-spacing:-0.767054px;}
.ls2{letter-spacing:-0.696233px;}
.ls5{letter-spacing:-0.445265px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.010205px;}
.lsf{letter-spacing:2.988198px;}
.ls10{letter-spacing:2.992132px;}
.lse{letter-spacing:21.815400px;}
.ls9{letter-spacing:22.930327px;}
.lsb{letter-spacing:22.964426px;}
.lsa{letter-spacing:23.194651px;}
.lsc{letter-spacing:23.228750px;}
.ls8{letter-spacing:23.333482px;}
.lsd{letter-spacing:32.726700px;}
.ls11{letter-spacing:32.728200px;}
.ls12{letter-spacing:34.994290px;}
.ls7{letter-spacing:38.743860px;}
.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;}
}
.ws2e{word-spacing:-51.025680px;}
.ws28{word-spacing:-42.143397px;}
.ws16{word-spacing:-36.950440px;}
.ws13{word-spacing:-35.119596px;}
.ws14{word-spacing:-32.727300px;}
.ws4{word-spacing:-31.081828px;}
.wsa{word-spacing:-14.082230px;}
.ws0{word-spacing:-13.996153px;}
.ws8{word-spacing:-12.766085px;}
.ws6{word-spacing:-12.755880px;}
.ws11{word-spacing:-11.735224px;}
.wsb{word-spacing:-11.663493px;}
.ws2c{word-spacing:-11.061827px;}
.ws1{word-spacing:-10.930918px;}
.ws12{word-spacing:-10.865464px;}
.ws2d{word-spacing:-10.746357px;}
.ws29{word-spacing:-9.982525px;}
.ws2a{word-spacing:-9.922750px;}
.ws31{word-spacing:-9.895526px;}
.ws30{word-spacing:-9.890223px;}
.ws2f{word-spacing:-9.890063px;}
.ws32{word-spacing:-9.862902px;}
.ws17{word-spacing:-8.670455px;}
.ws10{word-spacing:-8.503920px;}
.wsc{word-spacing:-5.392993px;}
.ws18{word-spacing:-3.665458px;}
.ws2b{word-spacing:-0.059776px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:6.312346px;}
.ws2{word-spacing:12.660557px;}
.ws19{word-spacing:18.345254px;}
.ws1a{word-spacing:18.399053px;}
.wse{word-spacing:39.010942px;}
.ws15{word-spacing:46.401451px;}
.wsf{word-spacing:110.160092px;}
.ws7{word-spacing:129.066120px;}
.wsd{word-spacing:163.047409px;}
.ws24{word-spacing:203.005640px;}
.ws23{word-spacing:203.129818px;}
.ws1f{word-spacing:209.980277px;}
.ws22{word-spacing:212.536264px;}
.ws26{word-spacing:213.038148px;}
.ws1e{word-spacing:219.521248px;}
.ws21{word-spacing:221.001030px;}
.ws20{word-spacing:224.110641px;}
.ws1b{word-spacing:225.678382px;}
.ws1d{word-spacing:232.989333px;}
.ws27{word-spacing:234.181023px;}
.ws1c{word-spacing:234.789906px;}
.ws25{word-spacing:238.241006px;}
.ws9{word-spacing:1374.906416px;}
._b{margin-left:-633.323824px;}
._a{margin-left:-8.535197px;}
._18{margin-left:-5.432732px;}
._7{margin-left:-4.189750px;}
._1{margin-left:-2.410162px;}
._2{margin-left:-1.124387px;}
._5{width:1.075968px;}
._0{width:2.324084px;}
._16{width:11.016995px;}
._6{width:16.928563px;}
._f{width:21.796382px;}
._1f{width:25.662870px;}
._3{width:29.061842px;}
._14{width:32.183996px;}
._17{width:33.370187px;}
._19{width:37.443582px;}
._e{width:78.058643px;}
._10{width:163.571045px;}
._1c{width:183.877131px;}
._1d{width:201.163674px;}
._1b{width:204.718939px;}
._11{width:213.549665px;}
._d{width:222.713309px;}
._12{width:266.138404px;}
._4{width:302.004952px;}
._1e{width:381.552842px;}
._9{width:400.224257px;}
._8{width:514.526845px;}
._1a{width:770.529761px;}
._15{width:840.317046px;}
._c{width:848.397745px;}
._13{width:1027.413535px;}
.fc8{color:rgb(5,99,193);}
.fc6{color:rgb(0,117,101);}
.fc7{color:rgb(17,102,86);}
.fc5{color:transparent;}
.fc4{color:rgb(0,145,147);}
.fc3{color:rgb(0,171,142);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1b{font-size:6.087600px;}
.fs1d{font-size:6.622800px;}
.fse{font-size:9.872867px;}
.fs1f{font-size:10.844400px;}
.fs21{font-size:11.346000px;}
.fs1c{font-size:12.175200px;}
.fs1e{font-size:13.245600px;}
.fs10{font-size:14.602880px;}
.fs5{font-size:17.007840px;}
.fsc{font-size:17.053133px;}
.fs11{font-size:19.469288px;}
.fs14{font-size:20.805029px;}
.fs20{font-size:21.688800px;}
.fsf{font-size:21.920760px;}
.fs22{font-size:22.692000px;}
.fs15{font-size:24.272533px;}
.fs26{font-size:28.347600px;}
.fsd{font-size:29.238640px;}
.fs18{font-size:31.192104px;}
.fs17{font-size:31.207543px;}
.fs12{font-size:34.015680px;}
.fs24{font-size:34.017120px;}
.fs2{font-size:35.865600px;}
.fs16{font-size:36.950440px;}
.fs6{font-size:37.417248px;}
.fs19{font-size:47.820600px;}
.fs8{font-size:51.023520px;}
.fs25{font-size:51.025680px;}
.fs1a{font-size:53.798400px;}
.fs4{font-size:58.506970px;}
.fs7{font-size:59.527440px;}
.fs23{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fsa{font-size:68.031360px;}
.fsb{font-size:71.731200px;}
.fs9{font-size:83.678573px;}
.fs0{font-size:86.077200px;}
.fs3{font-size:120.472200px;}
.fs13{font-size:148.722600px;}
.y1d{bottom:-28.728374px;}
.y0{bottom:0.000000px;}
.y8b{bottom:1.132861px;}
.y86{bottom:2.148906px;}
.y5c{bottom:2.258776px;}
.y9a{bottom:2.277622px;}
.ye{bottom:2.740530px;}
.y60{bottom:3.058180px;}
.y84{bottom:3.856499px;}
.yd1{bottom:3.980542px;}
.y5{bottom:3.985500px;}
.yeb{bottom:4.005106px;}
.yd2{bottom:5.122631px;}
.ye9{bottom:7.187700px;}
.ya{bottom:7.856159px;}
.y8c{bottom:8.583511px;}
.y9b{bottom:9.728272px;}
.yc{bottom:11.976567px;}
.y87{bottom:12.041156px;}
.ybe{bottom:13.411250px;}
.y6{bottom:14.445000px;}
.y43{bottom:14.446500px;}
.y8{bottom:14.913445px;}
.y8d{bottom:16.034161px;}
.y9c{bottom:17.178922px;}
.y88{bottom:21.327212px;}
.y9{bottom:21.462427px;}
.yec{bottom:22.442170px;}
.ycf{bottom:22.701878px;}
.y8e{bottom:23.484811px;}
.y79{bottom:23.893247px;}
.y9d{bottom:24.629572px;}
.y70{bottom:25.018500px;}
.y8a{bottom:25.076903px;}
.yca{bottom:25.556929px;}
.yd3{bottom:26.223657px;}
.ybc{bottom:26.547390px;}
.ybd{bottom:28.782636px;}
.y77{bottom:30.377053px;}
.y8f{bottom:30.935461px;}
.y9e{bottom:32.080222px;}
.y58{bottom:32.601518px;}
.y15{bottom:33.661350px;}
.y7b{bottom:34.340882px;}
.y16{bottom:34.370010px;}
.yb4{bottom:34.458608px;}
.y7a{bottom:35.287629px;}
.y90{bottom:38.386111px;}
.y9f{bottom:39.530872px;}
.yed{bottom:39.749416px;}
.y7d{bottom:39.972670px;}
.y2d{bottom:40.269356px;}
.y46{bottom:40.422000px;}
.y6d{bottom:42.369000px;}
.y28{bottom:43.560000px;}
.yb9{bottom:43.766190px;}
.yde{bottom:44.531964px;}
.ycd{bottom:44.713768px;}
.y81{bottom:44.894643px;}
.yc7{bottom:45.579965px;}
.yc8{bottom:45.767133px;}
.y91{bottom:45.836761px;}
.yef{bottom:46.738047px;}
.ya0{bottom:46.981522px;}
.y74{bottom:47.511640px;}
.y2b{bottom:47.688956px;}
.y61{bottom:48.565385px;}
.y85{bottom:48.859504px;}
.y14{bottom:48.897540px;}
.y78{bottom:50.209089px;}
.yb8{bottom:50.436516px;}
.yc4{bottom:51.689072px;}
.yb3{bottom:52.056150px;}
.yb7{bottom:52.126591px;}
.y7e{bottom:53.278081px;}
.y92{bottom:53.287411px;}
.ya1{bottom:54.432172px;}
.y10{bottom:54.921150px;}
.ydc{bottom:56.616407px;}
.y6c{bottom:59.241000px;}
.yb5{bottom:60.384995px;}
.y93{bottom:60.738061px;}
.y72{bottom:61.190429px;}
.yba{bottom:61.741847px;}
.ya2{bottom:61.882822px;}
.y71{bottom:62.038315px;}
.y2c{bottom:62.100655px;}
.y27{bottom:63.885000px;}
.ye0{bottom:64.004147px;}
.y13{bottom:64.133730px;}
.yd5{bottom:64.417500px;}
.y45{bottom:65.229000px;}
.ydf{bottom:65.768684px;}
.y2a{bottom:66.114116px;}
.yb6{bottom:68.009993px;}
.y94{bottom:68.188711px;}
.yc3{bottom:68.499302px;}
.yaa{bottom:68.914500px;}
.ya3{bottom:69.333472px;}
.ycb{bottom:69.643233px;}
.y7f{bottom:70.764481px;}
.y76{bottom:71.371409px;}
.y73{bottom:72.291915px;}
.y7c{bottom:72.444511px;}
.yd0{bottom:73.203074px;}
.ybb{bottom:73.261013px;}
.ye2{bottom:74.500609px;}
.y95{bottom:75.639361px;}
.ya4{bottom:76.784122px;}
.y41{bottom:78.909000px;}
.y12{bottom:79.369920px;}
.y23{bottom:80.970416px;}
.ycc{bottom:82.131650px;}
.y75{bottom:82.417179px;}
.y96{bottom:83.090011px;}
.ye6{bottom:83.674128px;}
.y26{bottom:84.208500px;}
.ya5{bottom:84.234772px;}
.y6b{bottom:85.027500px;}
.yfa{bottom:85.654500px;}
.y22{bottom:87.236100px;}
.y80{bottom:88.428898px;}
.yd9{bottom:88.551657px;}
.y97{bottom:90.540661px;}
.yea{bottom:91.063791px;}
.ya6{bottom:91.685422px;}
.y21{bottom:93.484126px;}
.ydd{bottom:93.579132px;}
.y11{bottom:94.606110px;}
.yae{bottom:95.355962px;}
.y83{bottom:96.372607px;}
.y53{bottom:97.528500px;}
.y98{bottom:97.991311px;}
.ya7{bottom:99.136072px;}
.y40{bottom:99.232500px;}
.ye3{bottom:99.299085px;}
.y89{bottom:99.477484px;}
.y20{bottom:99.749809px;}
.y57{bottom:99.933000px;}
.y4{bottom:100.414500px;}
.y5f{bottom:100.577956px;}
.y25{bottom:105.129000px;}
.y99{bottom:105.441961px;}
.ya8{bottom:106.586722px;}
.y1f{bottom:106.697168px;}
.y82{bottom:106.744942px;}
.yf9{bottom:107.847000px;}
.y6a{bottom:107.967000px;}
.y38{bottom:111.759000px;}
.y62{bottom:113.581099px;}
.yd7{bottom:114.046030px;}
.yd6{bottom:115.626309px;}
.y4e{bottom:117.852000px;}
.yf{bottom:118.700550px;}
.yce{bottom:120.016795px;}
.y52{bottom:122.335500px;}
.y3f{bottom:124.039500px;}
.y56{bottom:124.740000px;}
.y5e{bottom:124.850490px;}
.y5b{bottom:126.677905px;}
.y69{bottom:130.158000px;}
.ye4{bottom:131.890038px;}
.y24{bottom:132.556500px;}
.yf8{bottom:132.654000px;}
.ydb{bottom:133.021224px;}
.y3{bottom:134.194500px;}
.yd8{bottom:134.736853px;}
.ye1{bottom:135.021259px;}
.yb2{bottom:138.096013px;}
.yc1{bottom:140.732760px;}
.yac{bottom:140.758062px;}
.y1e{bottom:141.675394px;}
.y4d{bottom:142.659000px;}
.ybf{bottom:143.377633px;}
.yff{bottom:143.937000px;}
.y51{bottom:147.142500px;}
.y6f{bottom:147.343500px;}
.y55{bottom:147.679500px;}
.yb1{bottom:147.976033px;}
.y3e{bottom:148.846500px;}
.y2e{bottom:149.380142px;}
.y31{bottom:151.809000px;}
.y68{bottom:153.097500px;}
.yda{bottom:153.608207px;}
.yaf{bottom:154.565994px;}
.yab{bottom:154.610503px;}
.yf7{bottom:155.592000px;}
.yad{bottom:155.953134px;}
.yc5{bottom:164.008424px;}
.yc9{bottom:164.591009px;}
.ye5{bottom:164.812780px;}
.yfe{bottom:166.128000px;}
.y4c{bottom:167.466000px;}
.y1c{bottom:168.217500px;}
.yb0{bottom:169.356264px;}
.y50{bottom:171.949500px;}
.y36{bottom:172.086000px;}
.y3d{bottom:173.410500px;}
.y5d{bottom:174.262433px;}
.y67{bottom:175.290000px;}
.yf6{bottom:177.784500px;}
.ye8{bottom:179.618174px;}
.y2f{bottom:180.837382px;}
.yc0{bottom:182.823815px;}
.yee{bottom:185.405009px;}
.y59{bottom:185.531823px;}
.yc6{bottom:186.888397px;}
.yc2{bottom:190.154551px;}
.yfd{bottom:190.935000px;}
.y4b{bottom:192.273000px;}
.y4f{bottom:194.889000px;}
.y2{bottom:196.366500px;}
.y66{bottom:198.228000px;}
.ye7{bottom:198.950015px;}
.y5a{bottom:202.869347px;}
.yf5{bottom:202.965000px;}
.y3c{bottom:209.989500px;}
.yfc{bottom:213.874500px;}
.y4a{bottom:215.212500px;}
.y35{bottom:217.279500px;}
.y19{bottom:219.215892px;}
.y65{bottom:220.420500px;}
.yf4{bottom:220.897500px;}
.yd{bottom:222.909818px;}
.y54{bottom:229.101000px;}
.y107{bottom:230.299533px;}
.y3b{bottom:232.180500px;}
.yfb{bottom:236.065500px;}
.yf3{bottom:238.830000px;}
.y49{bottom:239.776500px;}
.y34{bottom:240.219000px;}
.y64{bottom:243.358500px;}
.y106{bottom:245.607237px;}
.y18{bottom:253.385493px;}
.yf2{bottom:256.764000px;}
.y3a{bottom:256.987500px;}
.y1{bottom:260.430000px;}
.y105{bottom:260.914941px;}
.y33{bottom:262.410000px;}
.y63{bottom:265.551000px;}
.y48{bottom:271.878000px;}
.y109{bottom:274.885500px;}
.y104{bottom:276.222645px;}
.ya9{bottom:276.501000px;}
.yf1{bottom:277.311000px;}
.yd4{bottom:280.998000px;}
.y39{bottom:281.794500px;}
.y30{bottom:287.169000px;}
.y32{bottom:287.217000px;}
.y17{bottom:287.555094px;}
.y37{bottom:287.995500px;}
.y103{bottom:291.530328px;}
.yb{bottom:297.014571px;}
.y29{bottom:300.490442px;}
.y1b{bottom:301.956000px;}
.y47{bottom:303.687000px;}
.yf0{bottom:304.185000px;}
.y6e{bottom:306.825000px;}
.y102{bottom:306.838053px;}
.y44{bottom:310.560000px;}
.y42{bottom:311.308500px;}
.y7{bottom:322.054151px;}
.y101{bottom:322.145757px;}
.y1a{bottom:352.585500px;}
.y100{bottom:354.316237px;}
.y108{bottom:357.079143px;}
.h14{height:-23.345000px;}
.h2d{height:5.655380px;}
.h31{height:6.152581px;}
.h34{height:10.074448px;}
.h18{height:10.498788px;}
.h37{height:10.540434px;}
.h1c{height:10.793941px;}
.h1b{height:10.828040px;}
.h1a{height:10.932772px;}
.h19{height:10.965653px;}
.h2e{height:11.310761px;}
.hb{height:11.335792px;}
.h32{height:12.305162px;}
.h15{height:12.356860px;}
.h22{height:15.146630px;}
.h23{height:17.671068px;}
.h35{height:20.148895px;}
.h17{height:20.415652px;}
.h3f{height:20.485570px;}
.h38{height:21.080868px;}
.ha{height:22.252165px;}
.h27{height:22.708705px;}
.h26{height:22.719945px;}
.h2f{height:23.061809px;}
.h1d{height:23.335952px;}
.h2b{height:24.890726px;}
.h3c{height:25.845038px;}
.h4{height:26.899200px;}
.hd{height:26.966728px;}
.h25{height:27.712830px;}
.he{height:32.758362px;}
.h10{height:35.651688px;}
.h3a{height:35.861700px;}
.h3b{height:35.867700px;}
.h3d{height:35.877431px;}
.h3e{height:36.874027px;}
.h11{height:38.486328px;}
.h7{height:39.184469px;}
.hf{height:40.837917px;}
.h29{height:41.614950px;}
.h1f{height:41.620950px;}
.h8{height:42.166156px;}
.h39{height:42.982339px;}
.h24{height:43.343810px;}
.h3{height:49.090950px;}
.h2a{height:49.471496px;}
.h9{height:51.222166px;}
.h13{height:53.798400px;}
.h1e{height:56.288400px;}
.h28{height:56.941496px;}
.h12{height:60.415930px;}
.h2{height:64.557900px;}
.h6{height:88.065178px;}
.h20{height:103.213484px;}
.h30{height:109.110630px;}
.h2c{height:109.120230px;}
.h16{height:121.782000px;}
.hc{height:129.428210px;}
.h33{height:194.385870px;}
.h36{height:203.377050px;}
.h21{height:240.204826px;}
.h1{height:382.500000px;}
.h5{height:382.676400px;}
.h0{height:382.677000px;}
.w4{width:9.271735px;}
.w5{width:24.614596px;}
.w8{width:43.343810px;}
.wb{width:93.547050px;}
.w9{width:127.383030px;}
.wa{width:147.015540px;}
.w3{width:195.879222px;}
.we{width:237.415050px;}
.w6{width:243.564000px;}
.wf{width:274.005900px;}
.w7{width:279.663525px;}
.wc{width:293.341020px;}
.wd{width:304.456530px;}
.w1{width:680.250000px;}
.w2{width:680.313600px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.xa{left:1.417320px;}
.x8{left:4.285267px;}
.x31{left:8.851517px;}
.xc{left:11.086631px;}
.x12{left:12.756000px;}
.xe{left:15.590520px;}
.x15{left:17.260467px;}
.x57{left:18.262986px;}
.xd{left:19.590551px;}
.x36{left:22.288098px;}
.x22{left:23.794500px;}
.x16{left:25.761155px;}
.x4{left:28.302000px;}
.x35{left:30.232204px;}
.x23{left:31.519500px;}
.x26{left:32.623500px;}
.x3a{left:33.780457px;}
.x6{left:35.078670px;}
.x30{left:36.125343px;}
.x28{left:37.231500px;}
.x2b{left:40.158000px;}
.x44{left:41.211206px;}
.x3b{left:43.453334px;}
.x53{left:44.822354px;}
.x24{left:47.883000px;}
.x27{left:48.987000px;}
.x1f{left:51.033512px;}
.x2e{left:53.460000px;}
.x5e{left:58.585725px;}
.x3f{left:63.349788px;}
.x45{left:64.692732px;}
.x46{left:66.136749px;}
.x40{left:67.478762px;}
.x5d{left:70.861487px;}
.x3d{left:74.257218px;}
.x61{left:76.808980px;}
.x3c{left:78.590656px;}
.x41{left:81.855230px;}
.x1e{left:83.907789px;}
.x3e{left:87.321734px;}
.x17{left:93.379089px;}
.x14{left:96.572213px;}
.x33{left:100.171506px;}
.x42{left:102.523500px;}
.x18{left:103.726601px;}
.x20{left:104.740302px;}
.x43{left:106.045605px;}
.x29{left:109.480500px;}
.x5a{left:118.070618px;}
.x62{left:120.573582px;}
.x63{left:123.264924px;}
.x5b{left:125.766153px;}
.x55{left:129.706483px;}
.x32{left:131.712960px;}
.x9{left:134.924470px;}
.x4e{left:136.611214px;}
.x59{left:138.399762px;}
.x37{left:140.325480px;}
.x58{left:146.476376px;}
.x3{left:153.409500px;}
.x5f{left:155.062712px;}
.x1c{left:156.451500px;}
.x52{left:161.410880px;}
.x2{left:163.350000px;}
.x50{left:166.523601px;}
.x4f{left:168.883115px;}
.x19{left:171.344534px;}
.x56{left:175.199236px;}
.x1a{left:181.700571px;}
.x13{left:187.924500px;}
.x64{left:192.129616px;}
.x1{left:194.161500px;}
.x4b{left:195.817438px;}
.x60{left:197.646598px;}
.x4c{left:204.839575px;}
.x34{left:216.759580px;}
.x4a{left:220.076712px;}
.x10{left:221.101920px;}
.x48{left:227.679651px;}
.x49{left:229.998005px;}
.x4d{left:231.482139px;}
.x51{left:236.039217px;}
.x1b{left:244.474500px;}
.x65{left:245.697222px;}
.x54{left:250.325430px;}
.x2a{left:299.322000px;}
.x25{left:347.736000px;}
.x2c{left:352.054500px;}
.x5c{left:367.279500px;}
.x2d{left:368.418000px;}
.x39{left:371.613000px;}
.x21{left:373.843662px;}
.x38{left:384.781500px;}
.xf{left:421.922699px;}
.x11{left:423.070020px;}
.x7{left:440.300379px;}
.x47{left:457.513500px;}
.x2f{left:461.506500px;}
.x5{left:466.530000px;}
.x1d{left:563.327653px;}
.xb{left:647.081344px;}
@media print{
.v7{vertical-align:-20.314667pt;}
.va{vertical-align:-7.973333pt;}
.v5{vertical-align:-6.640000pt;}
.v3{vertical-align:-4.786844pt;}
.v4{vertical-align:-2.792867pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.519680pt;}
.v2{vertical-align:5.661595pt;}
.v8{vertical-align:10.445377pt;}
.v9{vertical-align:19.467975pt;}
.v6{vertical-align:21.114667pt;}
.ls1{letter-spacing:-2.141728pt;}
.ls3{letter-spacing:-1.066127pt;}
.ls6{letter-spacing:-0.681825pt;}
.ls2{letter-spacing:-0.618874pt;}
.ls5{letter-spacing:-0.395791pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.009071pt;}
.lsf{letter-spacing:2.656176pt;}
.ls10{letter-spacing:2.659673pt;}
.lse{letter-spacing:19.391467pt;}
.ls9{letter-spacing:20.382513pt;}
.lsb{letter-spacing:20.412823pt;}
.lsa{letter-spacing:20.617467pt;}
.lsc{letter-spacing:20.647778pt;}
.ls8{letter-spacing:20.740873pt;}
.lsd{letter-spacing:29.090400pt;}
.ls11{letter-spacing:29.091733pt;}
.ls12{letter-spacing:31.106036pt;}
.ls7{letter-spacing:34.438986pt;}
.ws2e{word-spacing:-45.356160pt;}
.ws28{word-spacing:-37.460797pt;}
.ws16{word-spacing:-32.844836pt;}
.ws13{word-spacing:-31.217418pt;}
.ws14{word-spacing:-29.090933pt;}
.ws4{word-spacing:-27.628291pt;}
.wsa{word-spacing:-12.517538pt;}
.ws0{word-spacing:-12.441025pt;}
.ws8{word-spacing:-11.347631pt;}
.ws6{word-spacing:-11.338560pt;}
.ws11{word-spacing:-10.431311pt;}
.wsb{word-spacing:-10.367549pt;}
.ws2c{word-spacing:-9.832735pt;}
.ws1{word-spacing:-9.716372pt;}
.ws12{word-spacing:-9.658190pt;}
.ws2d{word-spacing:-9.552317pt;}
.ws29{word-spacing:-8.873356pt;}
.ws2a{word-spacing:-8.820222pt;}
.ws31{word-spacing:-8.796024pt;}
.ws30{word-spacing:-8.791310pt;}
.ws2f{word-spacing:-8.791167pt;}
.ws32{word-spacing:-8.767024pt;}
.ws17{word-spacing:-7.707071pt;}
.ws10{word-spacing:-7.559040pt;}
.wsc{word-spacing:-4.793771pt;}
.ws18{word-spacing:-3.258185pt;}
.ws2b{word-spacing:-0.053134pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:5.610974pt;}
.ws2{word-spacing:11.253828pt;}
.ws19{word-spacing:16.306893pt;}
.ws1a{word-spacing:16.354714pt;}
.wse{word-spacing:34.676393pt;}
.ws15{word-spacing:41.245734pt;}
.wsf{word-spacing:97.920082pt;}
.ws7{word-spacing:114.725440pt;}
.wsd{word-spacing:144.931030pt;}
.ws24{word-spacing:180.449458pt;}
.ws23{word-spacing:180.559838pt;}
.ws1f{word-spacing:186.649135pt;}
.ws22{word-spacing:188.921123pt;}
.ws26{word-spacing:189.367242pt;}
.ws1e{word-spacing:195.129998pt;}
.ws21{word-spacing:196.445360pt;}
.ws20{word-spacing:199.209459pt;}
.ws1b{word-spacing:200.603006pt;}
.ws1d{word-spacing:207.101629pt;}
.ws27{word-spacing:208.160909pt;}
.ws1c{word-spacing:208.702139pt;}
.ws25{word-spacing:211.769783pt;}
.ws9{word-spacing:1222.139036pt;}
._b{margin-left:-562.954510pt;}
._a{margin-left:-7.586841pt;}
._18{margin-left:-4.829095pt;}
._7{margin-left:-3.724222pt;}
._1{margin-left:-2.142366pt;}
._2{margin-left:-0.999455pt;}
._5{width:0.956416pt;}
._0{width:2.065853pt;}
._16{width:9.792885pt;}
._6{width:15.047612pt;}
._f{width:19.374562pt;}
._1f{width:22.811440pt;}
._3{width:25.832749pt;}
._14{width:28.607997pt;}
._17{width:29.662389pt;}
._19{width:33.283184pt;}
._e{width:69.385461pt;}
._10{width:145.396485pt;}
._1c{width:163.446339pt;}
._1d{width:178.812155pt;}
._1b{width:181.972390pt;}
._11{width:189.821925pt;}
._d{width:197.967386pt;}
._12{width:236.567470pt;}
._4{width:268.448846pt;}
._1e{width:339.158081pt;}
._9{width:355.754895pt;}
._8{width:457.357196pt;}
._1a{width:684.915343pt;}
._15{width:746.948485pt;}
._c{width:754.131328pt;}
._13{width:913.256475pt;}
.fs1b{font-size:5.411200pt;}
.fs1d{font-size:5.886933pt;}
.fse{font-size:8.775882pt;}
.fs1f{font-size:9.639467pt;}
.fs21{font-size:10.085333pt;}
.fs1c{font-size:10.822400pt;}
.fs1e{font-size:11.773867pt;}
.fs10{font-size:12.980337pt;}
.fs5{font-size:15.118080pt;}
.fsc{font-size:15.158341pt;}
.fs11{font-size:17.306034pt;}
.fs14{font-size:18.493359pt;}
.fs20{font-size:19.278933pt;}
.fsf{font-size:19.485120pt;}
.fs22{font-size:20.170667pt;}
.fs15{font-size:21.575585pt;}
.fs26{font-size:25.197867pt;}
.fsd{font-size:25.989903pt;}
.fs18{font-size:27.726315pt;}
.fs17{font-size:27.740038pt;}
.fs12{font-size:30.236160pt;}
.fs24{font-size:30.237440pt;}
.fs2{font-size:31.880533pt;}
.fs16{font-size:32.844836pt;}
.fs6{font-size:33.259776pt;}
.fs19{font-size:42.507200pt;}
.fs8{font-size:45.354240pt;}
.fs25{font-size:45.356160pt;}
.fs1a{font-size:47.820800pt;}
.fs4{font-size:52.006195pt;}
.fs7{font-size:52.913280pt;}
.fs23{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fsa{font-size:60.472320pt;}
.fsb{font-size:63.761067pt;}
.fs9{font-size:74.380954pt;}
.fs0{font-size:76.513067pt;}
.fs3{font-size:107.086400pt;}
.fs13{font-size:132.197867pt;}
.y1d{bottom:-25.536332pt;}
.y0{bottom:0.000000pt;}
.y8b{bottom:1.006988pt;}
.y86{bottom:1.910138pt;}
.y5c{bottom:2.007801pt;}
.y9a{bottom:2.024553pt;}
.ye{bottom:2.436027pt;}
.y60{bottom:2.718382pt;}
.y84{bottom:3.428000pt;}
.yd1{bottom:3.538259pt;}
.y5{bottom:3.542667pt;}
.yeb{bottom:3.560094pt;}
.yd2{bottom:4.553450pt;}
.ye9{bottom:6.389067pt;}
.ya{bottom:6.983252pt;}
.y8c{bottom:7.629788pt;}
.y9b{bottom:8.647353pt;}
.yc{bottom:10.645837pt;}
.y87{bottom:10.703250pt;}
.ybe{bottom:11.921111pt;}
.y6{bottom:12.840000pt;}
.y43{bottom:12.841333pt;}
.y8{bottom:13.256396pt;}
.y8d{bottom:14.252588pt;}
.y9c{bottom:15.270153pt;}
.y88{bottom:18.957522pt;}
.y9{bottom:19.077713pt;}
.yec{bottom:19.948596pt;}
.ycf{bottom:20.179447pt;}
.y8e{bottom:20.875388pt;}
.y79{bottom:21.238442pt;}
.y9d{bottom:21.892953pt;}
.y70{bottom:22.238667pt;}
.y8a{bottom:22.290580pt;}
.yca{bottom:22.717270pt;}
.yd3{bottom:23.309917pt;}
.ybc{bottom:23.597680pt;}
.ybd{bottom:25.584566pt;}
.y77{bottom:27.001825pt;}
.y8f{bottom:27.498188pt;}
.y9e{bottom:28.515753pt;}
.y58{bottom:28.979127pt;}
.y15{bottom:29.921200pt;}
.y7b{bottom:30.525228pt;}
.y16{bottom:30.551120pt;}
.yb4{bottom:30.629874pt;}
.y7a{bottom:31.366782pt;}
.y90{bottom:34.120988pt;}
.y9f{bottom:35.138553pt;}
.yed{bottom:35.332814pt;}
.y7d{bottom:35.531262pt;}
.y2d{bottom:35.794984pt;}
.y46{bottom:35.930667pt;}
.y6d{bottom:37.661333pt;}
.y28{bottom:38.720000pt;}
.yb9{bottom:38.903280pt;}
.yde{bottom:39.583968pt;}
.ycd{bottom:39.745572pt;}
.y81{bottom:39.906350pt;}
.yc7{bottom:40.515525pt;}
.yc8{bottom:40.681896pt;}
.y91{bottom:40.743788pt;}
.yef{bottom:41.544931pt;}
.ya0{bottom:41.761353pt;}
.y74{bottom:42.232569pt;}
.y2b{bottom:42.390183pt;}
.y61{bottom:43.169231pt;}
.y85{bottom:43.430670pt;}
.y14{bottom:43.464480pt;}
.y78{bottom:44.630301pt;}
.yb8{bottom:44.832459pt;}
.yc4{bottom:45.945842pt;}
.yb3{bottom:46.272133pt;}
.yb7{bottom:46.334748pt;}
.y7e{bottom:47.358295pt;}
.y92{bottom:47.366588pt;}
.ya1{bottom:48.384153pt;}
.y10{bottom:48.818800pt;}
.ydc{bottom:50.325695pt;}
.y6c{bottom:52.658667pt;}
.yb5{bottom:53.675551pt;}
.y93{bottom:53.989388pt;}
.y72{bottom:54.391493pt;}
.yba{bottom:54.881642pt;}
.ya2{bottom:55.006953pt;}
.y71{bottom:55.145169pt;}
.y2c{bottom:55.200583pt;}
.y27{bottom:56.786667pt;}
.ye0{bottom:56.892575pt;}
.y13{bottom:57.007760pt;}
.yd5{bottom:57.260000pt;}
.y45{bottom:57.981333pt;}
.ydf{bottom:58.461053pt;}
.y2a{bottom:58.768103pt;}
.yb6{bottom:60.453327pt;}
.y94{bottom:60.612188pt;}
.yc3{bottom:60.888268pt;}
.yaa{bottom:61.257333pt;}
.ya3{bottom:61.629753pt;}
.ycb{bottom:61.905096pt;}
.y7f{bottom:62.901761pt;}
.y76{bottom:63.441252pt;}
.y73{bottom:64.259480pt;}
.y7c{bottom:64.395120pt;}
.yd0{bottom:65.069399pt;}
.ybb{bottom:65.120901pt;}
.ye2{bottom:66.222764pt;}
.y95{bottom:67.234988pt;}
.ya4{bottom:68.252553pt;}
.y41{bottom:70.141333pt;}
.y12{bottom:70.551040pt;}
.y23{bottom:71.973703pt;}
.ycc{bottom:73.005911pt;}
.y75{bottom:73.259715pt;}
.y96{bottom:73.857788pt;}
.ye6{bottom:74.377003pt;}
.y26{bottom:74.852000pt;}
.ya5{bottom:74.875353pt;}
.y6b{bottom:75.580000pt;}
.yfa{bottom:76.137333pt;}
.y22{bottom:77.543200pt;}
.y80{bottom:78.603465pt;}
.yd9{bottom:78.712584pt;}
.y97{bottom:80.480588pt;}
.yea{bottom:80.945592pt;}
.ya6{bottom:81.498153pt;}
.y21{bottom:83.097001pt;}
.ydd{bottom:83.181451pt;}
.y11{bottom:84.094320pt;}
.yae{bottom:84.760855pt;}
.y83{bottom:85.664539pt;}
.y53{bottom:86.692000pt;}
.y98{bottom:87.103388pt;}
.ya7{bottom:88.120953pt;}
.y40{bottom:88.206667pt;}
.ye3{bottom:88.265854pt;}
.y89{bottom:88.424430pt;}
.y20{bottom:88.666497pt;}
.y57{bottom:88.829333pt;}
.y4{bottom:89.257333pt;}
.y5f{bottom:89.402628pt;}
.y25{bottom:93.448000pt;}
.y99{bottom:93.726188pt;}
.ya8{bottom:94.743753pt;}
.y1f{bottom:94.841927pt;}
.y82{bottom:94.884393pt;}
.yf9{bottom:95.864000pt;}
.y6a{bottom:95.970667pt;}
.y38{bottom:99.341333pt;}
.y62{bottom:100.960977pt;}
.yd7{bottom:101.374249pt;}
.yd6{bottom:102.778942pt;}
.y4e{bottom:104.757333pt;}
.yf{bottom:105.511600pt;}
.yce{bottom:106.681595pt;}
.y52{bottom:108.742667pt;}
.y3f{bottom:110.257333pt;}
.y56{bottom:110.880000pt;}
.y5e{bottom:110.978213pt;}
.y5b{bottom:112.602582pt;}
.y69{bottom:115.696000pt;}
.ye4{bottom:117.235590pt;}
.y24{bottom:117.828000pt;}
.yf8{bottom:117.914667pt;}
.ydb{bottom:118.241088pt;}
.y3{bottom:119.284000pt;}
.yd8{bottom:119.766091pt;}
.ye1{bottom:120.018897pt;}
.yb2{bottom:122.752012pt;}
.yc1{bottom:125.095787pt;}
.yac{bottom:125.118278pt;}
.y1e{bottom:125.933684pt;}
.y4d{bottom:126.808000pt;}
.ybf{bottom:127.446785pt;}
.yff{bottom:127.944000pt;}
.y51{bottom:130.793333pt;}
.y6f{bottom:130.972000pt;}
.y55{bottom:131.270667pt;}
.yb1{bottom:131.534251pt;}
.y3e{bottom:132.308000pt;}
.y2e{bottom:132.782349pt;}
.y31{bottom:134.941333pt;}
.y68{bottom:136.086667pt;}
.yda{bottom:136.540628pt;}
.yaf{bottom:137.391994pt;}
.yab{bottom:137.431558pt;}
.yf7{bottom:138.304000pt;}
.yad{bottom:138.625008pt;}
.yc5{bottom:145.785266pt;}
.yc9{bottom:146.303119pt;}
.ye5{bottom:146.500249pt;}
.yfe{bottom:147.669333pt;}
.y4c{bottom:148.858667pt;}
.y1c{bottom:149.526667pt;}
.yb0{bottom:150.538901pt;}
.y50{bottom:152.844000pt;}
.y36{bottom:152.965333pt;}
.y3d{bottom:154.142667pt;}
.y5d{bottom:154.899940pt;}
.y67{bottom:155.813333pt;}
.yf6{bottom:158.030667pt;}
.ye8{bottom:159.660599pt;}
.y2f{bottom:160.744340pt;}
.yc0{bottom:162.510058pt;}
.yee{bottom:164.804453pt;}
.y59{bottom:164.917176pt;}
.yc6{bottom:166.123020pt;}
.yc2{bottom:169.026268pt;}
.yfd{bottom:169.720000pt;}
.y4b{bottom:170.909333pt;}
.y4f{bottom:173.234667pt;}
.y2{bottom:174.548000pt;}
.y66{bottom:176.202667pt;}
.ye7{bottom:176.844458pt;}
.y5a{bottom:180.328309pt;}
.yf5{bottom:180.413333pt;}
.y3c{bottom:186.657333pt;}
.yfc{bottom:190.110667pt;}
.y4a{bottom:191.300000pt;}
.y35{bottom:193.137333pt;}
.y19{bottom:194.858571pt;}
.y65{bottom:195.929333pt;}
.yf4{bottom:196.353333pt;}
.yd{bottom:198.142060pt;}
.y54{bottom:203.645333pt;}
.y107{bottom:204.710696pt;}
.y3b{bottom:206.382667pt;}
.yfb{bottom:209.836000pt;}
.yf3{bottom:212.293333pt;}
.y49{bottom:213.134667pt;}
.y34{bottom:213.528000pt;}
.y64{bottom:216.318667pt;}
.y106{bottom:218.317544pt;}
.y18{bottom:225.231550pt;}
.yf2{bottom:228.234667pt;}
.y3a{bottom:228.433333pt;}
.y1{bottom:231.493333pt;}
.y105{bottom:231.924392pt;}
.y33{bottom:233.253333pt;}
.y63{bottom:236.045333pt;}
.y48{bottom:241.669333pt;}
.y109{bottom:244.342667pt;}
.y104{bottom:245.531240pt;}
.ya9{bottom:245.778667pt;}
.yf1{bottom:246.498667pt;}
.yd4{bottom:249.776000pt;}
.y39{bottom:250.484000pt;}
.y30{bottom:255.261333pt;}
.y32{bottom:255.304000pt;}
.y17{bottom:255.604528pt;}
.y37{bottom:255.996000pt;}
.y103{bottom:259.138070pt;}
.yb{bottom:264.012952pt;}
.y29{bottom:267.102615pt;}
.y1b{bottom:268.405333pt;}
.y47{bottom:269.944000pt;}
.yf0{bottom:270.386667pt;}
.y6e{bottom:272.733333pt;}
.y102{bottom:272.744936pt;}
.y44{bottom:276.053333pt;}
.y42{bottom:276.718667pt;}
.y7{bottom:286.270357pt;}
.y101{bottom:286.351784pt;}
.y1a{bottom:313.409333pt;}
.y100{bottom:314.947766pt;}
.y108{bottom:317.403682pt;}
.h14{height:-20.751112pt;}
.h2d{height:5.027005pt;}
.h31{height:5.468961pt;}
.h34{height:8.955065pt;}
.h18{height:9.332256pt;}
.h37{height:9.369275pt;}
.h1c{height:9.594614pt;}
.h1b{height:9.624924pt;}
.h1a{height:9.718020pt;}
.h19{height:9.747247pt;}
.h2e{height:10.054010pt;}
.hb{height:10.076259pt;}
.h32{height:10.937922pt;}
.h15{height:10.983876pt;}
.h22{height:13.463671pt;}
.h23{height:15.707616pt;}
.h35{height:17.910129pt;}
.h17{height:18.147246pt;}
.h3f{height:18.209396pt;}
.h38{height:18.738549pt;}
.ha{height:19.779702pt;}
.h27{height:20.185515pt;}
.h26{height:20.195506pt;}
.h2f{height:20.499386pt;}
.h1d{height:20.743069pt;}
.h2b{height:22.125090pt;}
.h3c{height:22.973368pt;}
.h4{height:23.910400pt;}
.hd{height:23.970425pt;}
.h25{height:24.633627pt;}
.he{height:29.118544pt;}
.h10{height:31.690389pt;}
.h3a{height:31.877067pt;}
.h3b{height:31.882400pt;}
.h3d{height:31.891050pt;}
.h3e{height:32.776912pt;}
.h11{height:34.210069pt;}
.h7{height:34.830639pt;}
.hf{height:36.300370pt;}
.h29{height:36.991067pt;}
.h1f{height:36.996400pt;}
.h8{height:37.481027pt;}
.h39{height:38.206524pt;}
.h24{height:38.527831pt;}
.h3{height:43.636400pt;}
.h2a{height:43.974663pt;}
.h9{height:45.530814pt;}
.h13{height:47.820800pt;}
.h1e{height:50.034133pt;}
.h28{height:50.614663pt;}
.h12{height:53.703048pt;}
.h2{height:57.384800pt;}
.h6{height:78.280158pt;}
.h20{height:91.745319pt;}
.h30{height:96.987227pt;}
.h2c{height:96.995760pt;}
.h16{height:108.250667pt;}
.hc{height:115.047297pt;}
.h33{height:172.787440pt;}
.h36{height:180.779600pt;}
.h21{height:213.515401pt;}
.h1{height:340.000000pt;}
.h5{height:340.156800pt;}
.h0{height:340.157333pt;}
.w4{width:8.241543pt;}
.w5{width:21.879641pt;}
.w8{width:38.527831pt;}
.wb{width:83.152933pt;}
.w9{width:113.229360pt;}
.wa{width:130.680480pt;}
.w3{width:174.114864pt;}
.we{width:211.035600pt;}
.w6{width:216.501333pt;}
.wf{width:243.560800pt;}
.w7{width:248.589800pt;}
.wc{width:260.747573pt;}
.wd{width:270.628027pt;}
.w1{width:604.666667pt;}
.w2{width:604.723200pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.xa{left:1.259840pt;}
.x8{left:3.809126pt;}
.x31{left:7.868015pt;}
.xc{left:9.854783pt;}
.x12{left:11.338667pt;}
.xe{left:13.858240pt;}
.x15{left:15.342638pt;}
.x57{left:16.233765pt;}
.xd{left:17.413823pt;}
.x36{left:19.811643pt;}
.x22{left:21.150667pt;}
.x16{left:22.898805pt;}
.x4{left:25.157333pt;}
.x35{left:26.873070pt;}
.x23{left:28.017333pt;}
.x26{left:28.998667pt;}
.x3a{left:30.027073pt;}
.x6{left:31.181040pt;}
.x30{left:32.111416pt;}
.x28{left:33.094667pt;}
.x2b{left:35.696000pt;}
.x44{left:36.632183pt;}
.x3b{left:38.625186pt;}
.x53{left:39.842093pt;}
.x24{left:42.562667pt;}
.x27{left:43.544000pt;}
.x1f{left:45.363122pt;}
.x2e{left:47.520000pt;}
.x5e{left:52.076200pt;}
.x3f{left:56.310923pt;}
.x45{left:57.504651pt;}
.x46{left:58.788221pt;}
.x40{left:59.981122pt;}
.x5d{left:62.987989pt;}
.x3d{left:66.006416pt;}
.x61{left:68.274649pt;}
.x3c{left:69.858361pt;}
.x41{left:72.760205pt;}
.x1e{left:74.584701pt;}
.x3e{left:77.619319pt;}
.x17{left:83.003634pt;}
.x14{left:85.841967pt;}
.x33{left:89.041339pt;}
.x42{left:91.132000pt;}
.x18{left:92.201423pt;}
.x20{left:93.102491pt;}
.x43{left:94.262760pt;}
.x29{left:97.316000pt;}
.x5a{left:104.951661pt;}
.x62{left:107.176517pt;}
.x63{left:109.568822pt;}
.x5b{left:111.792136pt;}
.x55{left:115.294651pt;}
.x32{left:117.078187pt;}
.x9{left:119.932862pt;}
.x4e{left:121.432190pt;}
.x59{left:123.022011pt;}
.x37{left:124.733760pt;}
.x58{left:130.201223pt;}
.x3{left:136.364000pt;}
.x5f{left:137.833522pt;}
.x1c{left:139.068000pt;}
.x52{left:143.476338pt;}
.x2{left:145.200000pt;}
.x50{left:148.020979pt;}
.x4f{left:150.118324pt;}
.x19{left:152.306252pt;}
.x56{left:155.732654pt;}
.x1a{left:161.511618pt;}
.x13{left:167.044000pt;}
.x64{left:170.781881pt;}
.x1{left:172.588000pt;}
.x4b{left:174.059945pt;}
.x60{left:175.685865pt;}
.x4c{left:182.079622pt;}
.x34{left:192.675182pt;}
.x4a{left:195.623744pt;}
.x10{left:196.535040pt;}
.x48{left:202.381912pt;}
.x49{left:204.442671pt;}
.x4d{left:205.761902pt;}
.x51{left:209.812637pt;}
.x1b{left:217.310667pt;}
.x65{left:218.397531pt;}
.x54{left:222.511494pt;}
.x2a{left:266.064000pt;}
.x25{left:309.098667pt;}
.x2c{left:312.937333pt;}
.x5c{left:326.470667pt;}
.x2d{left:327.482667pt;}
.x39{left:330.322667pt;}
.x21{left:332.305477pt;}
.x38{left:342.028000pt;}
.xf{left:375.042400pt;}
.x11{left:376.062240pt;}
.x7{left:391.378115pt;}
.x47{left:406.678667pt;}
.x2f{left:410.228000pt;}
.x5{left:414.693333pt;}
.x1d{left:500.735691pt;}
.xb{left:575.183417pt;}
}




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