
    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_68be8379825548547eac1909.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_900a22f45faec3ec9f68b74b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5e815aaa32ff4dbcd956bf48.woff')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_f98c0939de8eac452a21d6a5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.848000;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_f637acc5abecee0e2825d0c8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.677734;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_ca9b4144c16f6667c4c8a282.woff')format("woff");}.ff6{font-family:ff6;line-height:0.682617;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_c65496895bd9d97b328d2943.woff')format("woff");}.ff7{font-family:ff7;line-height:0.924316;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_13be84b25295dc6ef2fac28b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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_a686b83c750a007c1193451a.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_775cfd1720b12f25f59cb566.woff')format("woff");}.ffa{font-family:ffa;line-height:1.093262;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_d1e94d53edb40d127b8608ca.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_dae7391cb14f6b7fc5e36c3f.woff')format("woff");}.ffc{font-family:ffc;line-height:0.679688;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_5680d8bd9d827d8f734c1246.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910645;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_63db4e6700b4bed1da5ab90d.woff')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_c8afba247f3a04588ae5641e.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_33f2264b90b747d79dbd2507.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_6522a1f3667dbc5be5277263.woff')format("woff");}.ff11{font-family:ff11;line-height:0.856000;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_5e815aaa32ff4dbcd956bf48.woff')format("woff");}.ff12{font-family:ff12;line-height:0.895996;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_98b3f214aa8631d0dda65fe0.woff')format("woff");}.ff13{font-family:ff13;line-height:0.682617;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_03007cb93e758ca64ec6d008.woff')format("woff");}.ff14{font-family:ff14;line-height:1.086000;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_329ee18e7b47d5f2d484b3f5.woff')format("woff");}.ff15{font-family:ff15;line-height:1.078000;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:ff16;src:url('chunks/assets/font_359096ccfd5728e9e7bfb38b.woff')format("woff");}.ff16{font-family:ff16;line-height:1.075000;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:ff17;src:url('chunks/assets/font_38a63d03dc69f5eda0025e47.woff')format("woff");}.ff17{font-family:ff17;line-height:0.891602;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:ff18;src:url('chunks/assets/font_d99889a66850bc771940a3b8.woff')format("woff");}.ff18{font-family:ff18;line-height:0.700000;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:ff19;src:url('chunks/assets/font_82414426dbad96afe359a801.woff')format("woff");}.ff19{font-family:ff19;line-height:1.075000;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_4e4cb0ea56bf42ec420520ff.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.085000;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_e554713aeed31b49dabc1f06.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.075000;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_ceb31974d252a60e12f71248.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.093262;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_c209a86fef43eecf2db50d31.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.984000;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:ff1e;src:url('chunks/assets/font_19e773e78cc0da6f3a79ceb5.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.078000;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:ff1f;src:url('chunks/assets/font_0c24a48681ffa82abd704919.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.669922;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:ff20;src:url('chunks/assets/font_ef7a67834afdbe72f45c76aa.woff')format("woff");}.ff20{font-family:ff20;line-height:1.086000;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:ff21;src:url('chunks/assets/font_7d9c626c73288c87df25cd37.woff')format("woff");}.ff21{font-family:ff21;line-height:1.076000;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:ff22;src:url('chunks/assets/font_96e1ca827504cfc197ef8584.woff')format("woff");}.ff22{font-family:ff22;line-height:1.002930;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:ff23;src:url('chunks/assets/font_b83d3247a8d39f047916bbad.woff')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_a08fedab5d38ef9d68bc5652.woff')format("woff");}.ff24{font-family:ff24;line-height:1.075000;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:ff25;src:url('chunks/assets/font_26ede573543f064a2a1dd390.woff')format("woff");}.ff25{font-family:ff25;line-height:0.968000;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:ff26;src:url('chunks/assets/font_c87657e478310f17e08ce53f.woff')format("woff");}.ff26{font-family:ff26;line-height:0.712000;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:ff27;src:url('chunks/assets/font_20b0ef40d72c4d072a8c4d37.woff')format("woff");}.ff27{font-family:ff27;line-height:0.712000;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:ff28;src:url('chunks/assets/font_a56ccd9a75a3bc0adfaa37ed.woff')format("woff");}.ff28{font-family:ff28;line-height:1.076000;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;}
.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);}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.880000px;}
.v3{vertical-align:18.720000px;}
.ls50{letter-spacing:-5.745600px;}
.ls38{letter-spacing:-5.709312px;}
.ls3c{letter-spacing:-5.411808px;}
.ls4d{letter-spacing:-3.047904px;}
.ls54{letter-spacing:-2.714112px;}
.ls42{letter-spacing:-1.904256px;}
.ls3d{letter-spacing:-1.521216px;}
.ls4f{letter-spacing:-1.433664px;}
.ls41{letter-spacing:-0.891936px;}
.ls40{letter-spacing:-0.853632px;}
.ls47{letter-spacing:-0.804384px;}
.ls43{letter-spacing:-0.662112px;}
.ls46{letter-spacing:-0.536256px;}
.ls20{letter-spacing:-0.530784px;}
.ls4b{letter-spacing:-0.525312px;}
.ls44{letter-spacing:-0.481536px;}
.ls4c{letter-spacing:-0.465696px;}
.ls18{letter-spacing:-0.435456px;}
.ls1e{letter-spacing:-0.383040px;}
.ls45{letter-spacing:-0.377568px;}
.ls1f{letter-spacing:-0.344736px;}
.ls22{letter-spacing:-0.339264px;}
.ls21{letter-spacing:-0.317376px;}
.ls17{letter-spacing:-0.310464px;}
.ls34{letter-spacing:-0.308448px;}
.lsf{letter-spacing:-0.291456px;}
.ls31{letter-spacing:-0.266112px;}
.lsc{letter-spacing:-0.259776px;}
.ls32{letter-spacing:-0.254016px;}
.ls4a{letter-spacing:-0.251712px;}
.ls14{letter-spacing:-0.247104px;}
.ls19{letter-spacing:-0.241920px;}
.ls12{letter-spacing:-0.240768px;}
.ls3f{letter-spacing:-0.229824px;}
.lsd{letter-spacing:-0.228096px;}
.ls1a{letter-spacing:-0.214704px;}
.ls59{letter-spacing:-0.211968px;}
.ls3b{letter-spacing:-0.207936px;}
.ls25{letter-spacing:-0.198720px;}
.ls33{letter-spacing:-0.193536px;}
.ls4e{letter-spacing:-0.191520px;}
.ls16{letter-spacing:-0.190080px;}
.ls1d{letter-spacing:-0.186048px;}
.ls1b{letter-spacing:-0.184032px;}
.ls5e{letter-spacing:-0.178848px;}
.lse{letter-spacing:-0.177408px;}
.ls1c{letter-spacing:-0.173808px;}
.ls58{letter-spacing:-0.172224px;}
.ls6{letter-spacing:-0.165600px;}
.ls49{letter-spacing:-0.164160px;}
.ls35{letter-spacing:-0.163296px;}
.ls57{letter-spacing:-0.158976px;}
.ls4{letter-spacing:-0.152352px;}
.ls5{letter-spacing:-0.145728px;}
.ls23{letter-spacing:-0.139104px;}
.ls11{letter-spacing:-0.133056px;}
.ls56{letter-spacing:-0.132480px;}
.ls2a{letter-spacing:-0.125856px;}
.ls13{letter-spacing:-0.120384px;}
.ls30{letter-spacing:-0.119232px;}
.ls5b{letter-spacing:-0.112608px;}
.ls10{letter-spacing:-0.107712px;}
.lsa{letter-spacing:-0.105984px;}
.ls27{letter-spacing:-0.099360px;}
.ls28{letter-spacing:-0.092736px;}
.ls5a{letter-spacing:-0.086112px;}
.ls55{letter-spacing:-0.079488px;}
.ls24{letter-spacing:-0.072864px;}
.ls26{letter-spacing:-0.066240px;}
.ls29{letter-spacing:-0.059616px;}
.lsb{letter-spacing:-0.052992px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000576px;}
.ls3e{letter-spacing:0.005472px;}
.ls39{letter-spacing:0.078624px;}
.ls53{letter-spacing:0.098496px;}
.ls1{letter-spacing:0.101088px;}
.ls2d{letter-spacing:0.116640px;}
.ls3a{letter-spacing:0.133056px;}
.ls36{letter-spacing:0.155520px;}
.ls2c{letter-spacing:0.171072px;}
.ls51{letter-spacing:0.178848px;}
.ls2f{letter-spacing:0.209952px;}
.ls3{letter-spacing:0.275616px;}
.ls48{letter-spacing:0.328320px;}
.ls0{letter-spacing:0.334080px;}
.ls52{letter-spacing:0.415872px;}
.ls37{letter-spacing:8.876016px;}
.ls9{letter-spacing:16.755840px;}
.ls2e{letter-spacing:17.965872px;}
.ls5c{letter-spacing:32.758560px;}
.ls2b{letter-spacing:34.890768px;}
.ls7{letter-spacing:817.162560px;}
.ls15{letter-spacing:843.497280px;}
.ls5d{letter-spacing:849.029760px;}
.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;}
}
.ws8{word-spacing:-22.012272px;}
.ws12{word-spacing:-17.029440px;}
.ws2a{word-spacing:-16.344000px;}
.ws3{word-spacing:-15.840000px;}
.ws2{word-spacing:-15.719616px;}
.ws5{word-spacing:-15.662592px;}
.wsf{word-spacing:-15.624000px;}
.ws4{word-spacing:-15.592896px;}
.ws2e{word-spacing:-15.168960px;}
.ws2f{word-spacing:-15.056352px;}
.ws37{word-spacing:-15.049728px;}
.ws2b{word-spacing:-15.036480px;}
.ws31{word-spacing:-15.016608px;}
.ws2d{word-spacing:-14.956992px;}
.ws30{word-spacing:-14.950368px;}
.ws10{word-spacing:-14.943744px;}
.ws32{word-spacing:-14.917248px;}
.ws36{word-spacing:-14.910624px;}
.ws2c{word-spacing:-14.904000px;}
.ws35{word-spacing:-14.884128px;}
.ws7{word-spacing:-14.878080px;}
.ws34{word-spacing:-14.857632px;}
.ws33{word-spacing:-14.824512px;}
.ws14{word-spacing:-13.982976px;}
.ws11{word-spacing:-13.686624px;}
.ws27{word-spacing:-12.837312px;}
.ws25{word-spacing:-12.749760px;}
.ws21{word-spacing:-12.426912px;}
.wsc{word-spacing:-12.421440px;}
.ws9{word-spacing:-12.235392px;}
.ws15{word-spacing:-12.213504px;}
.ws1a{word-spacing:-12.191616px;}
.ws28{word-spacing:-12.169728px;}
.wsd{word-spacing:-12.104064px;}
.wse{word-spacing:-12.082176px;}
.wsb{word-spacing:-12.076704px;}
.ws23{word-spacing:-12.043872px;}
.wsa{word-spacing:-12.038400px;}
.ws20{word-spacing:-11.939904px;}
.ws19{word-spacing:-11.890656px;}
.ws1f{word-spacing:-11.759328px;}
.ws24{word-spacing:-11.617056px;}
.ws1b{word-spacing:-11.567808px;}
.ws1d{word-spacing:-11.529504px;}
.ws18{word-spacing:-10.900224px;}
.ws1e{word-spacing:-10.517184px;}
.ws29{word-spacing:-9.707328px;}
.ws17{word-spacing:-7.009632px;}
.ws26{word-spacing:-6.675840px;}
.ws0{word-spacing:-0.178848px;}
.ws13{word-spacing:-0.139104px;}
.ws22{word-spacing:-0.033120px;}
.ws1{word-spacing:0.000000px;}
.ws16{word-spacing:0.153216px;}
.ws6{word-spacing:0.344736px;}
.ws1c{word-spacing:0.837216px;}
._23{margin-left:-4.932000px;}
._e{margin-left:-3.830400px;}
._10{margin-left:-2.578176px;}
._0{margin-left:-1.439424px;}
._1{width:1.059840px;}
._17{width:2.121696px;}
._2{width:3.168000px;}
._6{width:4.593600px;}
._4{width:6.399360px;}
._11{width:7.714080px;}
._1a{width:9.401760px;}
._a{width:10.404000px;}
._1b{width:11.658240px;}
._15{width:12.916800px;}
._18{width:14.191200px;}
._9{width:15.975360px;}
._3{width:17.124480px;}
._24{width:18.143568px;}
._16{width:19.173600px;}
._1d{width:20.253600px;}
._c{width:21.988800px;}
._14{width:23.011200px;}
._13{width:24.228000px;}
._5{width:25.868160px;}
._7{width:27.093600px;}
._d{width:28.720800px;}
._8{width:30.420000px;}
._21{width:31.435200px;}
._f{width:32.817600px;}
._12{width:34.646400px;}
._1f{width:35.964000px;}
._22{width:39.816000px;}
._25{width:42.459840px;}
._26{width:49.708800px;}
._1e{width:50.832000px;}
._b{width:53.956800px;}
._27{width:66.571200px;}
._20{width:79.999200px;}
._1c{width:84.268800px;}
._19{width:846.000000px;}
.fc6{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc1{color:rgb(28,72,86);}
.fc8{color:rgb(0,13,26);}
.fc7{color:rgb(89,89,89);}
.fc5{color:rgb(36,36,36);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:33.120000px;}
.fsa{font-size:36.000000px;}
.fs5{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs7{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs3{font-size:83.520000px;}
.fs8{font-size:90.720000px;}
.fs9{font-size:102.240000px;}
.fs1{font-size:168.480000px;}
.y19{bottom:-30.840000px;}
.y0{bottom:0.000000px;}
.y196{bottom:3.720000px;}
.y18a{bottom:3.900000px;}
.y164{bottom:4.380000px;}
.y14a{bottom:4.980000px;}
.y197{bottom:5.220000px;}
.y17c{bottom:11.580000px;}
.y190{bottom:11.640000px;}
.y13b{bottom:11.700000px;}
.y15f{bottom:11.820000px;}
.y18{bottom:12.000000px;}
.y15a{bottom:12.060000px;}
.y143{bottom:12.120000px;}
.y17f{bottom:12.240000px;}
.y13d{bottom:12.360000px;}
.y145{bottom:12.420000px;}
.y181{bottom:12.540000px;}
.y157{bottom:12.600000px;}
.y13f{bottom:12.660000px;}
.y17a{bottom:12.780000px;}
.y139{bottom:12.900000px;}
.y15d{bottom:13.020000px;}
.y147{bottom:13.080000px;}
.y183{bottom:13.200000px;}
.y141{bottom:13.320000px;}
.y176{bottom:13.380000px;}
.y186{bottom:13.500000px;}
.y154{bottom:13.860000px;}
.y136{bottom:14.160000px;}
.y1e{bottom:19.440000px;}
.y189{bottom:20.100000px;}
.y163{bottom:20.580000px;}
.y149{bottom:21.180000px;}
.y195{bottom:21.420000px;}
.y192{bottom:36.120000px;}
.y188{bottom:36.300000px;}
.y178{bottom:36.600000px;}
.y167{bottom:36.720000px;}
.y162{bottom:36.780000px;}
.y194{bottom:36.900000px;}
.y156{bottom:37.080000px;}
.y17{bottom:37.200000px;}
.y138{bottom:37.380000px;}
.y1d{bottom:38.160000px;}
.y175{bottom:40.380000px;}
.y153{bottom:40.860000px;}
.y135{bottom:41.160000px;}
.y1c{bottom:56.520000px;}
.y2{bottom:57.240000px;}
.y1{bottom:74.160000px;}
.y1b{bottom:75.240000px;}
.yf2{bottom:93.240000px;}
.y1a{bottom:94.320000px;}
.yc3{bottom:95.040000px;}
.y113{bottom:98.280000px;}
.y44{bottom:100.440000px;}
.y18f{bottom:101.880000px;}
.yfa{bottom:102.240000px;}
.y126{bottom:105.480000px;}
.y151{bottom:105.840000px;}
.y8b{bottom:109.800000px;}
.yc2{bottom:116.280000px;}
.y1b1{bottom:116.640000px;}
.ydb{bottom:118.080000px;}
.y43{bottom:118.440000px;}
.y11b{bottom:121.680000px;}
.y12d{bottom:123.840000px;}
.yf1{bottom:125.640000px;}
.y1d1{bottom:126.000000px;}
.y112{bottom:126.360000px;}
.y1a3{bottom:128.160000px;}
.y8a{bottom:130.680000px;}
.y15{bottom:131.400000px;}
.y150{bottom:132.840000px;}
.yf9{bottom:134.640000px;}
.y42{bottom:136.440000px;}
.y109{bottom:137.160000px;}
.yc1{bottom:137.880000px;}
.y172{bottom:138.240000px;}
.y18e{bottom:140.760000px;}
.y1b0{bottom:149.040000px;}
.yda{bottom:150.480000px;}
.y89{bottom:151.560000px;}
.y11a{bottom:154.080000px;}
.y41{bottom:154.800000px;}
.y12c{bottom:156.240000px;}
.yc0{bottom:159.120000px;}
.y14f{bottom:159.840000px;}
.y1a2{bottom:160.560000px;}
.yf0{bottom:167.040000px;}
.y1bc{bottom:168.840000px;}
.y108{bottom:169.560000px;}
.y88{bottom:172.080000px;}
.y40{bottom:172.800000px;}
.y1d0{bottom:175.680000px;}
.y171{bottom:177.120000px;}
.y125{bottom:179.280000px;}
.y18d{bottom:180.000000px;}
.ybf{bottom:180.360000px;}
.yd9{bottom:182.880000px;}
.y14{bottom:184.320000px;}
.y119{bottom:186.480000px;}
.y14e{bottom:186.840000px;}
.y12b{bottom:188.640000px;}
.y1af{bottom:190.440000px;}
.y3f{bottom:190.800000px;}
.y87{bottom:192.960000px;}
.y1cf{bottom:195.480000px;}
.yef{bottom:199.440000px;}
.ybe{bottom:201.960000px;}
.y13{bottom:207.000000px;}
.y3e{bottom:208.800000px;}
.y124{bottom:211.680000px;}
.y86{bottom:213.480000px;}
.y14d{bottom:213.840000px;}
.yd8{bottom:215.280000px;}
.y170{bottom:216.360000px;}
.y66{bottom:217.800000px;}
.y18c{bottom:218.880000px;}
.y1ae{bottom:222.840000px;}
.ybd{bottom:223.200000px;}
.y1a1{bottom:225.360000px;}
.y3d{bottom:227.160000px;}
.y118{bottom:227.520000px;}
.y1bb{bottom:229.320000px;}
.y12a{bottom:230.040000px;}
.yee{bottom:231.840000px;}
.y85{bottom:234.360000px;}
.yf8{bottom:240.840000px;}
.y65{bottom:243.720000px;}
.y123{bottom:244.080000px;}
.ybc{bottom:244.800000px;}
.y3c{bottom:245.160000px;}
.yd7{bottom:247.680000px;}
.y12{bottom:249.120000px;}
.y84{bottom:254.880000px;}
.y16f{bottom:255.240000px;}
.y1ce{bottom:255.960000px;}
.y18b{bottom:257.760000px;}
.y129{bottom:259.560000px;}
.y3b{bottom:263.160000px;}
.yed{bottom:264.240000px;}
.ybb{bottom:266.040000px;}
.y107{bottom:266.760000px;}
.y117{bottom:267.120000px;}
.y14c{bottom:267.840000px;}
.y16e{bottom:268.500000px;}
.y64{bottom:268.560000px;}
.y1ba{bottom:268.920000px;}
.ya4{bottom:270.000000px;}
.y187{bottom:271.500000px;}
.yf7{bottom:273.240000px;}
.y83{bottom:275.760000px;}
.y122{bottom:276.480000px;}
.yd6{bottom:280.080000px;}
.yba{bottom:287.280000px;}
.y1ad{bottom:287.640000px;}
.y1b9{bottom:288.720000px;}
.y63{bottom:289.440000px;}
.y1a0{bottom:290.160000px;}
.y11{bottom:291.240000px;}
.y14b{bottom:294.840000px;}
.y128{bottom:295.560000px;}
.yec{bottom:296.640000px;}
.y82{bottom:304.920000px;}
.yf6{bottom:305.640000px;}
.y148{bottom:307.500000px;}
.yb9{bottom:308.520000px;}
.y62{bottom:309.960000px;}
.ya3{bottom:311.760000px;}
.yd5{bottom:312.480000px;}
.y106{bottom:317.160000px;}
.y16d{bottom:318.000000px;}
.y121{bottom:318.600000px;}
.y185{bottom:319.500000px;}
.y1ac{bottom:320.040000px;}
.y184{bottom:321.000000px;}
.y19f{bottom:322.560000px;}
.y81{bottom:326.160000px;}
.yeb{bottom:329.040000px;}
.y1b8{bottom:329.760000px;}
.y61{bottom:330.840000px;}
.ya2{bottom:332.640000px;}
.y10{bottom:333.000000px;}
.y116{bottom:333.720000px;}
.y1cd{bottom:336.240000px;}
.yf5{bottom:338.040000px;}
.y3a{bottom:338.400000px;}
.y16c{bottom:343.500000px;}
.y182{bottom:345.000000px;}
.y80{bottom:346.680000px;}
.yb8{bottom:348.840000px;}
.y105{bottom:349.560000px;}
.y60{bottom:351.360000px;}
.y1ab{bottom:352.440000px;}
.ya1{bottom:353.160000px;}
.yd4{bottom:353.880000px;}
.y19e{bottom:354.960000px;}
.y1cc{bottom:356.040000px;}
.y39{bottom:356.760000px;}
.y146{bottom:357.000000px;}
.yea{bottom:361.440000px;}
.y16b{bottom:367.500000px;}
.y7f{bottom:367.560000px;}
.y1b7{bottom:369.360000px;}
.yf4{bottom:370.440000px;}
.y180{bottom:370.500000px;}
.y5f{bottom:372.240000px;}
.ya0{bottom:374.040000px;}
.yf{bottom:375.120000px;}
.y38{bottom:375.480000px;}
.y104{bottom:381.960000px;}
.y144{bottom:382.500000px;}
.yb7{bottom:385.560000px;}
.yd3{bottom:386.280000px;}
.y7e{bottom:388.080000px;}
.y5e{bottom:392.760000px;}
.y16a{bottom:393.000000px;}
.y1aa{bottom:393.840000px;}
.y9f{bottom:394.560000px;}
.y17e{bottom:396.000000px;}
.y37{bottom:396.360000px;}
.y1cb{bottom:397.080000px;}
.ye9{bottom:402.840000px;}
.y142{bottom:408.000000px;}
.y7d{bottom:408.960000px;}
.y1b6{bottom:410.040000px;}
.yb6{bottom:410.400000px;}
.y5d{bottom:413.640000px;}
.y103{bottom:414.360000px;}
.y36{bottom:416.880000px;}
.ye{bottom:417.240000px;}
.y169{bottom:418.500000px;}
.yd2{bottom:418.680000px;}
.y17d{bottom:420.000000px;}
.y17b{bottom:421.500000px;}
.y9e{bottom:424.080000px;}
.y1a9{bottom:426.240000px;}
.y19d{bottom:428.760000px;}
.y7c{bottom:429.480000px;}
.y1b5{bottom:429.840000px;}
.y140{bottom:432.000000px;}
.y5c{bottom:433.440000px;}
.ye8{bottom:435.240000px;}
.yb5{bottom:435.600000px;}
.y35{bottom:437.760000px;}
.y168{bottom:442.500000px;}
.y120{bottom:444.240000px;}
.y9d{bottom:444.960000px;}
.y179{bottom:445.500000px;}
.y102{bottom:446.760000px;}
.y1b4{bottom:449.640000px;}
.y7b{bottom:450.360000px;}
.yd1{bottom:451.080000px;}
.y13e{bottom:457.500000px;}
.y1ca{bottom:457.560000px;}
.y34{bottom:458.280000px;}
.y1a8{bottom:458.640000px;}
.yd{bottom:459.000000px;}
.y19c{bottom:461.160000px;}
.yb4{bottom:462.240000px;}
.y5b{bottom:464.400000px;}
.y9c{bottom:465.840000px;}
.ye7{bottom:467.640000px;}
.y166{bottom:468.000000px;}
.y1b3{bottom:469.440000px;}
.y177{bottom:471.000000px;}
.y11f{bottom:476.640000px;}
.y1c9{bottom:477.360000px;}
.y33{bottom:479.160000px;}
.y7a{bottom:479.520000px;}
.y5a{bottom:482.760000px;}
.y13c{bottom:483.000000px;}
.yd0{bottom:483.480000px;}
.y9b{bottom:486.360000px;}
.y1a7{bottom:491.040000px;}
.yb3{bottom:491.400000px;}
.y19b{bottom:493.560000px;}
.y101{bottom:497.160000px;}
.y32{bottom:499.680000px;}
.ye6{bottom:500.040000px;}
.y79{bottom:500.760000px;}
.yc{bottom:501.120000px;}
.y9a{bottom:507.240000px;}
.y13a{bottom:508.500000px;}
.y11e{bottom:509.040000px;}
.y1b2{bottom:513.000000px;}
.ycf{bottom:515.880000px;}
.yb2{bottom:516.600000px;}
.y31{bottom:517.320000px;}
.y165{bottom:517.500000px;}
.y59{bottom:519.120000px;}
.y174{bottom:520.500000px;}
.y78{bottom:521.280000px;}
.y1a6{bottom:523.440000px;}
.y19a{bottom:525.960000px;}
.y99{bottom:527.760000px;}
.y100{bottom:529.560000px;}
.ye5{bottom:532.440000px;}
.y137{bottom:532.500000px;}
.y30{bottom:534.960000px;}
.y111{bottom:536.040000px;}
.y58{bottom:537.120000px;}
.y1c8{bottom:537.840000px;}
.y11d{bottom:541.440000px;}
.y77{bottom:542.160000px;}
.yb{bottom:543.240000px;}
.yce{bottom:548.280000px;}
.y98{bottom:548.640000px;}
.y2f{bottom:552.960000px;}
.y57{bottom:555.480000px;}
.y1a5{bottom:555.840000px;}
.y1c7{bottom:557.640000px;}
.y199{bottom:558.360000px;}
.yff{bottom:561.960000px;}
.y76{bottom:562.680000px;}
.y110{bottom:563.040000px;}
.ye4{bottom:564.840000px;}
.y2e{bottom:570.960000px;}
.yb1{bottom:572.400000px;}
.y56{bottom:573.480000px;}
.y11c{bottom:573.840000px;}
.y1c6{bottom:577.440000px;}
.y97{bottom:577.800000px;}
.ycd{bottom:580.680000px;}
.y134{bottom:582.000000px;}
.y75{bottom:583.560000px;}
.ya{bottom:585.000000px;}
.y2d{bottom:589.320000px;}
.y55{bottom:591.480000px;}
.yfe{bottom:594.360000px;}
.yf3{bottom:597.240000px;}
.yb0{bottom:597.600000px;}
.y173{bottom:598.680000px;}
.y96{bottom:599.040000px;}
.y198{bottom:600.120000px;}
.y10f{bottom:601.920000px;}
.y74{bottom:604.080000px;}
.ye3{bottom:606.240000px;}
.y2c{bottom:608.040000px;}
.y54{bottom:609.840000px;}
.y161{bottom:610.500000px;}
.ycc{bottom:613.080000px;}
.y1c5{bottom:618.480000px;}
.y95{bottom:619.560000px;}
.yaf{bottom:624.240000px;}
.y73{bottom:624.960000px;}
.y2b{bottom:626.400000px;}
.yfd{bottom:626.760000px;}
.y9{bottom:627.120000px;}
.y53{bottom:627.840000px;}
.y1a4{bottom:629.640000px;}
.y193{bottom:634.500000px;}
.y10e{bottom:635.040000px;}
.y191{bottom:636.000000px;}
.y1c4{bottom:638.280000px;}
.ye2{bottom:638.640000px;}
.y94{bottom:640.440000px;}
.y2a{bottom:645.120000px;}
.y72{bottom:645.480000px;}
.y52{bottom:645.840000px;}
.yae{bottom:653.400000px;}
.y1c3{bottom:658.080000px;}
.y160{bottom:660.000000px;}
.y93{bottom:660.960000px;}
.y133{bottom:662.040000px;}
.y29{bottom:664.200000px;}
.y71{bottom:666.360000px;}
.y10d{bottom:667.440000px;}
.y8{bottom:669.240000px;}
.ye1{bottom:671.040000px;}
.yfc{bottom:675.720000px;}
.ycb{bottom:677.880000px;}
.yad{bottom:678.600000px;}
.y92{bottom:681.840000px;}
.y51{bottom:682.200000px;}
.y28{bottom:685.440000px;}
.y15e{bottom:685.500000px;}
.y132{bottom:694.440000px;}
.y70{bottom:695.520000px;}
.yac{bottom:696.240000px;}
.y1c2{bottom:698.760000px;}
.y10c{bottom:699.840000px;}
.y50{bottom:700.200000px;}
.y91{bottom:702.360000px;}
.ye0{bottom:703.440000px;}
.y27{bottom:704.160000px;}
.y15c{bottom:709.500000px;}
.y7{bottom:711.000000px;}
.yfb{bottom:716.400000px;}
.y6f{bottom:716.760000px;}
.y4f{bottom:718.560000px;}
.yca{bottom:719.640000px;}
.y26{bottom:722.520000px;}
.y131{bottom:726.840000px;}
.yab{bottom:728.640000px;}
.y127{bottom:729.360000px;}
.y90{bottom:731.880000px;}
.y15b{bottom:735.000000px;}
.ydf{bottom:735.840000px;}
.y4e{bottom:736.560000px;}
.y6e{bottom:737.280000px;}
.y1c1{bottom:738.360000px;}
.y10b{bottom:750.240000px;}
.y8f{bottom:752.760000px;}
.y6{bottom:753.120000px;}
.y4d{bottom:754.560000px;}
.y6d{bottom:758.160000px;}
.y130{bottom:759.240000px;}
.y159{bottom:760.500000px;}
.yc9{bottom:761.760000px;}
.y25{bottom:765.720000px;}
.yaa{bottom:768.240000px;}
.y4c{bottom:772.560000px;}
.y8e{bottom:773.640000px;}
.y6c{bottom:778.680000px;}
.y1c0{bottom:779.040000px;}
.y10a{bottom:782.640000px;}
.y158{bottom:784.500000px;}
.y4b{bottom:790.920000px;}
.y24{bottom:791.280000px;}
.y12f{bottom:791.640000px;}
.yc8{bottom:792.360000px;}
.y8d{bottom:794.160000px;}
.y5{bottom:795.240000px;}
.ya9{bottom:798.840000px;}
.y6b{bottom:799.560000px;}
.yde{bottom:800.640000px;}
.y4a{bottom:808.920000px;}
.y155{bottom:810.000000px;}
.yc7{bottom:813.600000px;}
.y8c{bottom:815.040000px;}
.y6a{bottom:820.080000px;}
.y12e{bottom:824.040000px;}
.y49{bottom:826.920000px;}
.ya8{bottom:829.440000px;}
.ydd{bottom:833.040000px;}
.yc6{bottom:835.200000px;}
.y23{bottom:835.560000px;}
.y4{bottom:837.000000px;}
.y1f{bottom:837.360000px;}
.y1bf{bottom:839.880000px;}
.y69{bottom:840.960000px;}
.y48{bottom:845.280000px;}
.y22{bottom:856.440000px;}
.y152{bottom:859.500000px;}
.y1be{bottom:859.680000px;}
.ya7{bottom:860.040000px;}
.y68{bottom:861.480000px;}
.y47{bottom:863.280000px;}
.ydc{bottom:865.440000px;}
.y115{bottom:873.360000px;}
.y21{bottom:876.960000px;}
.yc5{bottom:877.680000px;}
.y3{bottom:879.120000px;}
.y1bd{bottom:879.480000px;}
.y46{bottom:881.280000px;}
.ya6{bottom:890.640000px;}
.y67{bottom:893.520000px;}
.y20{bottom:897.840000px;}
.yc4{bottom:899.280000px;}
.y45{bottom:899.640000px;}
.y114{bottom:900.360000px;}
.y16{bottom:933.000000px;}
.ya5{bottom:951.480000px;}
.h23{height:23.184000px;}
.h1b{height:23.994141px;}
.h1e{height:25.500000px;}
.h1f{height:27.000000px;}
.hd{height:37.352813px;}
.h2{height:40.310156px;}
.hb{height:42.229688px;}
.hc{height:44.024063px;}
.h9{height:44.149219px;}
.h13{height:44.760960px;}
.h12{height:47.254219px;}
.h4{height:47.545313px;}
.h22{height:47.640960px;}
.h20{height:49.472640px;}
.h21{height:49.500000px;}
.h19{height:49.533120px;}
.h1a{height:49.878281px;}
.h18{height:50.863680px;}
.h1d{height:51.000000px;}
.h8{height:51.827344px;}
.h14{height:54.184320px;}
.h24{height:54.250560px;}
.h17{height:55.177920px;}
.h1c{height:55.500000px;}
.h5{height:57.000000px;}
.h16{height:58.896000px;}
.h11{height:59.976000px;}
.he{height:60.465234px;}
.ha{height:63.175781px;}
.h15{height:65.396160px;}
.h6{height:69.572160px;}
.hf{height:76.295520px;}
.h10{height:85.983840px;}
.h3{height:112.292578px;}
.h7{height:112.500000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.wb{width:42.000000px;}
.w12{width:43.500000px;}
.w10{width:45.000000px;}
.w9{width:46.500000px;}
.wc{width:48.000000px;}
.wd{width:49.500000px;}
.w13{width:51.000000px;}
.w1a{width:54.000000px;}
.w18{width:55.500000px;}
.w11{width:57.000000px;}
.wa{width:60.000000px;}
.w15{width:61.500000px;}
.w7{width:73.500000px;}
.we{width:75.000000px;}
.w17{width:76.500000px;}
.w5{width:91.500000px;}
.w8{width:100.500000px;}
.w14{width:102.000000px;}
.w19{width:105.000000px;}
.wf{width:106.500000px;}
.w3{width:244.500000px;}
.w6{width:463.500000px;}
.w16{width:465.000000px;}
.w2{width:486.000000px;}
.w4{width:555.000000px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:3.000000px;}
.x2d{left:8.099856px;}
.x2b{left:9.239856px;}
.x7{left:10.799928px;}
.xd{left:18.929076px;}
.x3c{left:21.839280px;}
.x5{left:23.892696px;}
.x39{left:25.524960px;}
.x4a{left:30.376920px;}
.x3b{left:31.396560px;}
.xb{left:33.108756px;}
.x4b{left:34.258920px;}
.x49{left:37.216560px;}
.x48{left:39.964596px;}
.xa{left:41.866332px;}
.xc{left:49.693344px;}
.x9{left:61.815300px;}
.x3{left:84.959856px;}
.x1a{left:91.699596px;}
.x6{left:101.790540px;}
.x1b{left:111.627684px;}
.x27{left:116.834832px;}
.x4{left:126.000000px;}
.xf{left:128.475972px;}
.x1c{left:146.370852px;}
.x41{left:174.000000px;}
.x2c{left:175.500000px;}
.x42{left:218.308956px;}
.x10{left:234.702036px;}
.x4d{left:238.367076px;}
.x2e{left:249.000000px;}
.x34{left:250.500000px;}
.x15{left:257.743656px;}
.x13{left:271.923336px;}
.x12{left:280.680912px;}
.x16{left:285.494760px;}
.x14{left:288.507924px;}
.x11{left:300.629880px;}
.x18{left:304.177752px;}
.x26{left:319.226076px;}
.x23{left:330.090804px;}
.x19{left:332.075304px;}
.x2{left:339.106536px;}
.x25{left:347.411124px;}
.x3d{left:349.500000px;}
.x1e{left:352.716444px;}
.x43{left:354.000000px;}
.x35{left:355.500000px;}
.xe{left:359.122176px;}
.x1{left:361.372320px;}
.x2f{left:393.000000px;}
.x3e{left:394.500000px;}
.x44{left:397.500000px;}
.x36{left:399.000000px;}
.x24{left:426.344400px;}
.x45{left:451.500000px;}
.x30{left:453.000000px;}
.x20{left:454.316040px;}
.x21{left:462.937680px;}
.x1f{left:466.002000px;}
.x22{left:467.364960px;}
.x29{left:480.960000px;}
.x17{left:485.403480px;}
.x1d{left:491.340960px;}
.x46{left:496.500000px;}
.x40{left:498.000000px;}
.x31{left:499.500000px;}
.x37{left:501.000000px;}
.x3f{left:502.500000px;}
.x47{left:538.500000px;}
.x4c{left:540.000000px;}
.x32{left:541.500000px;}
.x38{left:543.000000px;}
.x28{left:545.399640px;}
.x2a{left:582.952320px;}
.x3a{left:588.000000px;}
.x33{left:589.500000px;}
@media print{
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.560000pt;}
.v3{vertical-align:16.640000pt;}
.ls50{letter-spacing:-5.107200pt;}
.ls38{letter-spacing:-5.074944pt;}
.ls3c{letter-spacing:-4.810496pt;}
.ls4d{letter-spacing:-2.709248pt;}
.ls54{letter-spacing:-2.412544pt;}
.ls42{letter-spacing:-1.692672pt;}
.ls3d{letter-spacing:-1.352192pt;}
.ls4f{letter-spacing:-1.274368pt;}
.ls41{letter-spacing:-0.792832pt;}
.ls40{letter-spacing:-0.758784pt;}
.ls47{letter-spacing:-0.715008pt;}
.ls43{letter-spacing:-0.588544pt;}
.ls46{letter-spacing:-0.476672pt;}
.ls20{letter-spacing:-0.471808pt;}
.ls4b{letter-spacing:-0.466944pt;}
.ls44{letter-spacing:-0.428032pt;}
.ls4c{letter-spacing:-0.413952pt;}
.ls18{letter-spacing:-0.387072pt;}
.ls1e{letter-spacing:-0.340480pt;}
.ls45{letter-spacing:-0.335616pt;}
.ls1f{letter-spacing:-0.306432pt;}
.ls22{letter-spacing:-0.301568pt;}
.ls21{letter-spacing:-0.282112pt;}
.ls17{letter-spacing:-0.275968pt;}
.ls34{letter-spacing:-0.274176pt;}
.lsf{letter-spacing:-0.259072pt;}
.ls31{letter-spacing:-0.236544pt;}
.lsc{letter-spacing:-0.230912pt;}
.ls32{letter-spacing:-0.225792pt;}
.ls4a{letter-spacing:-0.223744pt;}
.ls14{letter-spacing:-0.219648pt;}
.ls19{letter-spacing:-0.215040pt;}
.ls12{letter-spacing:-0.214016pt;}
.ls3f{letter-spacing:-0.204288pt;}
.lsd{letter-spacing:-0.202752pt;}
.ls1a{letter-spacing:-0.190848pt;}
.ls59{letter-spacing:-0.188416pt;}
.ls3b{letter-spacing:-0.184832pt;}
.ls25{letter-spacing:-0.176640pt;}
.ls33{letter-spacing:-0.172032pt;}
.ls4e{letter-spacing:-0.170240pt;}
.ls16{letter-spacing:-0.168960pt;}
.ls1d{letter-spacing:-0.165376pt;}
.ls1b{letter-spacing:-0.163584pt;}
.ls5e{letter-spacing:-0.158976pt;}
.lse{letter-spacing:-0.157696pt;}
.ls1c{letter-spacing:-0.154496pt;}
.ls58{letter-spacing:-0.153088pt;}
.ls6{letter-spacing:-0.147200pt;}
.ls49{letter-spacing:-0.145920pt;}
.ls35{letter-spacing:-0.145152pt;}
.ls57{letter-spacing:-0.141312pt;}
.ls4{letter-spacing:-0.135424pt;}
.ls5{letter-spacing:-0.129536pt;}
.ls23{letter-spacing:-0.123648pt;}
.ls11{letter-spacing:-0.118272pt;}
.ls56{letter-spacing:-0.117760pt;}
.ls2a{letter-spacing:-0.111872pt;}
.ls13{letter-spacing:-0.107008pt;}
.ls30{letter-spacing:-0.105984pt;}
.ls5b{letter-spacing:-0.100096pt;}
.ls10{letter-spacing:-0.095744pt;}
.lsa{letter-spacing:-0.094208pt;}
.ls27{letter-spacing:-0.088320pt;}
.ls28{letter-spacing:-0.082432pt;}
.ls5a{letter-spacing:-0.076544pt;}
.ls55{letter-spacing:-0.070656pt;}
.ls24{letter-spacing:-0.064768pt;}
.ls26{letter-spacing:-0.058880pt;}
.ls29{letter-spacing:-0.052992pt;}
.lsb{letter-spacing:-0.047104pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000512pt;}
.ls3e{letter-spacing:0.004864pt;}
.ls39{letter-spacing:0.069888pt;}
.ls53{letter-spacing:0.087552pt;}
.ls1{letter-spacing:0.089856pt;}
.ls2d{letter-spacing:0.103680pt;}
.ls3a{letter-spacing:0.118272pt;}
.ls36{letter-spacing:0.138240pt;}
.ls2c{letter-spacing:0.152064pt;}
.ls51{letter-spacing:0.158976pt;}
.ls2f{letter-spacing:0.186624pt;}
.ls3{letter-spacing:0.244992pt;}
.ls48{letter-spacing:0.291840pt;}
.ls0{letter-spacing:0.296960pt;}
.ls52{letter-spacing:0.369664pt;}
.ls37{letter-spacing:7.889792pt;}
.ls9{letter-spacing:14.894080pt;}
.ls2e{letter-spacing:15.969664pt;}
.ls5c{letter-spacing:29.118720pt;}
.ls2b{letter-spacing:31.014016pt;}
.ls7{letter-spacing:726.366720pt;}
.ls15{letter-spacing:749.775360pt;}
.ls5d{letter-spacing:754.693120pt;}
.ws8{word-spacing:-19.566464pt;}
.ws12{word-spacing:-15.137280pt;}
.ws2a{word-spacing:-14.528000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.972992pt;}
.ws5{word-spacing:-13.922304pt;}
.wsf{word-spacing:-13.888000pt;}
.ws4{word-spacing:-13.860352pt;}
.ws2e{word-spacing:-13.483520pt;}
.ws2f{word-spacing:-13.383424pt;}
.ws37{word-spacing:-13.377536pt;}
.ws2b{word-spacing:-13.365760pt;}
.ws31{word-spacing:-13.348096pt;}
.ws2d{word-spacing:-13.295104pt;}
.ws30{word-spacing:-13.289216pt;}
.ws10{word-spacing:-13.283328pt;}
.ws32{word-spacing:-13.259776pt;}
.ws36{word-spacing:-13.253888pt;}
.ws2c{word-spacing:-13.248000pt;}
.ws35{word-spacing:-13.230336pt;}
.ws7{word-spacing:-13.224960pt;}
.ws34{word-spacing:-13.206784pt;}
.ws33{word-spacing:-13.177344pt;}
.ws14{word-spacing:-12.429312pt;}
.ws11{word-spacing:-12.165888pt;}
.ws27{word-spacing:-11.410944pt;}
.ws25{word-spacing:-11.333120pt;}
.ws21{word-spacing:-11.046144pt;}
.wsc{word-spacing:-11.041280pt;}
.ws9{word-spacing:-10.875904pt;}
.ws15{word-spacing:-10.856448pt;}
.ws1a{word-spacing:-10.836992pt;}
.ws28{word-spacing:-10.817536pt;}
.wsd{word-spacing:-10.759168pt;}
.wse{word-spacing:-10.739712pt;}
.wsb{word-spacing:-10.734848pt;}
.ws23{word-spacing:-10.705664pt;}
.wsa{word-spacing:-10.700800pt;}
.ws20{word-spacing:-10.613248pt;}
.ws19{word-spacing:-10.569472pt;}
.ws1f{word-spacing:-10.452736pt;}
.ws24{word-spacing:-10.326272pt;}
.ws1b{word-spacing:-10.282496pt;}
.ws1d{word-spacing:-10.248448pt;}
.ws18{word-spacing:-9.689088pt;}
.ws1e{word-spacing:-9.348608pt;}
.ws29{word-spacing:-8.628736pt;}
.ws17{word-spacing:-6.230784pt;}
.ws26{word-spacing:-5.934080pt;}
.ws0{word-spacing:-0.158976pt;}
.ws13{word-spacing:-0.123648pt;}
.ws22{word-spacing:-0.029440pt;}
.ws1{word-spacing:0.000000pt;}
.ws16{word-spacing:0.136192pt;}
.ws6{word-spacing:0.306432pt;}
.ws1c{word-spacing:0.744192pt;}
._23{margin-left:-4.384000pt;}
._e{margin-left:-3.404800pt;}
._10{margin-left:-2.291712pt;}
._0{margin-left:-1.279488pt;}
._1{width:0.942080pt;}
._17{width:1.885952pt;}
._2{width:2.816000pt;}
._6{width:4.083200pt;}
._4{width:5.688320pt;}
._11{width:6.856960pt;}
._1a{width:8.357120pt;}
._a{width:9.248000pt;}
._1b{width:10.362880pt;}
._15{width:11.481600pt;}
._18{width:12.614400pt;}
._9{width:14.200320pt;}
._3{width:15.221760pt;}
._24{width:16.127616pt;}
._16{width:17.043200pt;}
._1d{width:18.003200pt;}
._c{width:19.545600pt;}
._14{width:20.454400pt;}
._13{width:21.536000pt;}
._5{width:22.993920pt;}
._7{width:24.083200pt;}
._d{width:25.529600pt;}
._8{width:27.040000pt;}
._21{width:27.942400pt;}
._f{width:29.171200pt;}
._12{width:30.796800pt;}
._1f{width:31.968000pt;}
._22{width:35.392000pt;}
._25{width:37.742080pt;}
._26{width:44.185600pt;}
._1e{width:45.184000pt;}
._b{width:47.961600pt;}
._27{width:59.174400pt;}
._20{width:71.110400pt;}
._1c{width:74.905600pt;}
._19{width:752.000000pt;}
.fsb{font-size:29.440000pt;}
.fsa{font-size:32.000000pt;}
.fs5{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs7{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs3{font-size:74.240000pt;}
.fs8{font-size:80.640000pt;}
.fs9{font-size:90.880000pt;}
.fs1{font-size:149.760000pt;}
.y19{bottom:-27.413333pt;}
.y0{bottom:0.000000pt;}
.y196{bottom:3.306667pt;}
.y18a{bottom:3.466667pt;}
.y164{bottom:3.893333pt;}
.y14a{bottom:4.426667pt;}
.y197{bottom:4.640000pt;}
.y17c{bottom:10.293333pt;}
.y190{bottom:10.346667pt;}
.y13b{bottom:10.400000pt;}
.y15f{bottom:10.506667pt;}
.y18{bottom:10.666667pt;}
.y15a{bottom:10.720000pt;}
.y143{bottom:10.773333pt;}
.y17f{bottom:10.880000pt;}
.y13d{bottom:10.986667pt;}
.y145{bottom:11.040000pt;}
.y181{bottom:11.146667pt;}
.y157{bottom:11.200000pt;}
.y13f{bottom:11.253333pt;}
.y17a{bottom:11.360000pt;}
.y139{bottom:11.466667pt;}
.y15d{bottom:11.573333pt;}
.y147{bottom:11.626667pt;}
.y183{bottom:11.733333pt;}
.y141{bottom:11.840000pt;}
.y176{bottom:11.893333pt;}
.y186{bottom:12.000000pt;}
.y154{bottom:12.320000pt;}
.y136{bottom:12.586667pt;}
.y1e{bottom:17.280000pt;}
.y189{bottom:17.866667pt;}
.y163{bottom:18.293333pt;}
.y149{bottom:18.826667pt;}
.y195{bottom:19.040000pt;}
.y192{bottom:32.106667pt;}
.y188{bottom:32.266667pt;}
.y178{bottom:32.533333pt;}
.y167{bottom:32.640000pt;}
.y162{bottom:32.693333pt;}
.y194{bottom:32.800000pt;}
.y156{bottom:32.960000pt;}
.y17{bottom:33.066667pt;}
.y138{bottom:33.226667pt;}
.y1d{bottom:33.920000pt;}
.y175{bottom:35.893333pt;}
.y153{bottom:36.320000pt;}
.y135{bottom:36.586667pt;}
.y1c{bottom:50.240000pt;}
.y2{bottom:50.880000pt;}
.y1{bottom:65.920000pt;}
.y1b{bottom:66.880000pt;}
.yf2{bottom:82.880000pt;}
.y1a{bottom:83.840000pt;}
.yc3{bottom:84.480000pt;}
.y113{bottom:87.360000pt;}
.y44{bottom:89.280000pt;}
.y18f{bottom:90.560000pt;}
.yfa{bottom:90.880000pt;}
.y126{bottom:93.760000pt;}
.y151{bottom:94.080000pt;}
.y8b{bottom:97.600000pt;}
.yc2{bottom:103.360000pt;}
.y1b1{bottom:103.680000pt;}
.ydb{bottom:104.960000pt;}
.y43{bottom:105.280000pt;}
.y11b{bottom:108.160000pt;}
.y12d{bottom:110.080000pt;}
.yf1{bottom:111.680000pt;}
.y1d1{bottom:112.000000pt;}
.y112{bottom:112.320000pt;}
.y1a3{bottom:113.920000pt;}
.y8a{bottom:116.160000pt;}
.y15{bottom:116.800000pt;}
.y150{bottom:118.080000pt;}
.yf9{bottom:119.680000pt;}
.y42{bottom:121.280000pt;}
.y109{bottom:121.920000pt;}
.yc1{bottom:122.560000pt;}
.y172{bottom:122.880000pt;}
.y18e{bottom:125.120000pt;}
.y1b0{bottom:132.480000pt;}
.yda{bottom:133.760000pt;}
.y89{bottom:134.720000pt;}
.y11a{bottom:136.960000pt;}
.y41{bottom:137.600000pt;}
.y12c{bottom:138.880000pt;}
.yc0{bottom:141.440000pt;}
.y14f{bottom:142.080000pt;}
.y1a2{bottom:142.720000pt;}
.yf0{bottom:148.480000pt;}
.y1bc{bottom:150.080000pt;}
.y108{bottom:150.720000pt;}
.y88{bottom:152.960000pt;}
.y40{bottom:153.600000pt;}
.y1d0{bottom:156.160000pt;}
.y171{bottom:157.440000pt;}
.y125{bottom:159.360000pt;}
.y18d{bottom:160.000000pt;}
.ybf{bottom:160.320000pt;}
.yd9{bottom:162.560000pt;}
.y14{bottom:163.840000pt;}
.y119{bottom:165.760000pt;}
.y14e{bottom:166.080000pt;}
.y12b{bottom:167.680000pt;}
.y1af{bottom:169.280000pt;}
.y3f{bottom:169.600000pt;}
.y87{bottom:171.520000pt;}
.y1cf{bottom:173.760000pt;}
.yef{bottom:177.280000pt;}
.ybe{bottom:179.520000pt;}
.y13{bottom:184.000000pt;}
.y3e{bottom:185.600000pt;}
.y124{bottom:188.160000pt;}
.y86{bottom:189.760000pt;}
.y14d{bottom:190.080000pt;}
.yd8{bottom:191.360000pt;}
.y170{bottom:192.320000pt;}
.y66{bottom:193.600000pt;}
.y18c{bottom:194.560000pt;}
.y1ae{bottom:198.080000pt;}
.ybd{bottom:198.400000pt;}
.y1a1{bottom:200.320000pt;}
.y3d{bottom:201.920000pt;}
.y118{bottom:202.240000pt;}
.y1bb{bottom:203.840000pt;}
.y12a{bottom:204.480000pt;}
.yee{bottom:206.080000pt;}
.y85{bottom:208.320000pt;}
.yf8{bottom:214.080000pt;}
.y65{bottom:216.640000pt;}
.y123{bottom:216.960000pt;}
.ybc{bottom:217.600000pt;}
.y3c{bottom:217.920000pt;}
.yd7{bottom:220.160000pt;}
.y12{bottom:221.440000pt;}
.y84{bottom:226.560000pt;}
.y16f{bottom:226.880000pt;}
.y1ce{bottom:227.520000pt;}
.y18b{bottom:229.120000pt;}
.y129{bottom:230.720000pt;}
.y3b{bottom:233.920000pt;}
.yed{bottom:234.880000pt;}
.ybb{bottom:236.480000pt;}
.y107{bottom:237.120000pt;}
.y117{bottom:237.440000pt;}
.y14c{bottom:238.080000pt;}
.y16e{bottom:238.666667pt;}
.y64{bottom:238.720000pt;}
.y1ba{bottom:239.040000pt;}
.ya4{bottom:240.000000pt;}
.y187{bottom:241.333333pt;}
.yf7{bottom:242.880000pt;}
.y83{bottom:245.120000pt;}
.y122{bottom:245.760000pt;}
.yd6{bottom:248.960000pt;}
.yba{bottom:255.360000pt;}
.y1ad{bottom:255.680000pt;}
.y1b9{bottom:256.640000pt;}
.y63{bottom:257.280000pt;}
.y1a0{bottom:257.920000pt;}
.y11{bottom:258.880000pt;}
.y14b{bottom:262.080000pt;}
.y128{bottom:262.720000pt;}
.yec{bottom:263.680000pt;}
.y82{bottom:271.040000pt;}
.yf6{bottom:271.680000pt;}
.y148{bottom:273.333333pt;}
.yb9{bottom:274.240000pt;}
.y62{bottom:275.520000pt;}
.ya3{bottom:277.120000pt;}
.yd5{bottom:277.760000pt;}
.y106{bottom:281.920000pt;}
.y16d{bottom:282.666667pt;}
.y121{bottom:283.200000pt;}
.y185{bottom:284.000000pt;}
.y1ac{bottom:284.480000pt;}
.y184{bottom:285.333333pt;}
.y19f{bottom:286.720000pt;}
.y81{bottom:289.920000pt;}
.yeb{bottom:292.480000pt;}
.y1b8{bottom:293.120000pt;}
.y61{bottom:294.080000pt;}
.ya2{bottom:295.680000pt;}
.y10{bottom:296.000000pt;}
.y116{bottom:296.640000pt;}
.y1cd{bottom:298.880000pt;}
.yf5{bottom:300.480000pt;}
.y3a{bottom:300.800000pt;}
.y16c{bottom:305.333333pt;}
.y182{bottom:306.666667pt;}
.y80{bottom:308.160000pt;}
.yb8{bottom:310.080000pt;}
.y105{bottom:310.720000pt;}
.y60{bottom:312.320000pt;}
.y1ab{bottom:313.280000pt;}
.ya1{bottom:313.920000pt;}
.yd4{bottom:314.560000pt;}
.y19e{bottom:315.520000pt;}
.y1cc{bottom:316.480000pt;}
.y39{bottom:317.120000pt;}
.y146{bottom:317.333333pt;}
.yea{bottom:321.280000pt;}
.y16b{bottom:326.666667pt;}
.y7f{bottom:326.720000pt;}
.y1b7{bottom:328.320000pt;}
.yf4{bottom:329.280000pt;}
.y180{bottom:329.333333pt;}
.y5f{bottom:330.880000pt;}
.ya0{bottom:332.480000pt;}
.yf{bottom:333.440000pt;}
.y38{bottom:333.760000pt;}
.y104{bottom:339.520000pt;}
.y144{bottom:340.000000pt;}
.yb7{bottom:342.720000pt;}
.yd3{bottom:343.360000pt;}
.y7e{bottom:344.960000pt;}
.y5e{bottom:349.120000pt;}
.y16a{bottom:349.333333pt;}
.y1aa{bottom:350.080000pt;}
.y9f{bottom:350.720000pt;}
.y17e{bottom:352.000000pt;}
.y37{bottom:352.320000pt;}
.y1cb{bottom:352.960000pt;}
.ye9{bottom:358.080000pt;}
.y142{bottom:362.666667pt;}
.y7d{bottom:363.520000pt;}
.y1b6{bottom:364.480000pt;}
.yb6{bottom:364.800000pt;}
.y5d{bottom:367.680000pt;}
.y103{bottom:368.320000pt;}
.y36{bottom:370.560000pt;}
.ye{bottom:370.880000pt;}
.y169{bottom:372.000000pt;}
.yd2{bottom:372.160000pt;}
.y17d{bottom:373.333333pt;}
.y17b{bottom:374.666667pt;}
.y9e{bottom:376.960000pt;}
.y1a9{bottom:378.880000pt;}
.y19d{bottom:381.120000pt;}
.y7c{bottom:381.760000pt;}
.y1b5{bottom:382.080000pt;}
.y140{bottom:384.000000pt;}
.y5c{bottom:385.280000pt;}
.ye8{bottom:386.880000pt;}
.yb5{bottom:387.200000pt;}
.y35{bottom:389.120000pt;}
.y168{bottom:393.333333pt;}
.y120{bottom:394.880000pt;}
.y9d{bottom:395.520000pt;}
.y179{bottom:396.000000pt;}
.y102{bottom:397.120000pt;}
.y1b4{bottom:399.680000pt;}
.y7b{bottom:400.320000pt;}
.yd1{bottom:400.960000pt;}
.y13e{bottom:406.666667pt;}
.y1ca{bottom:406.720000pt;}
.y34{bottom:407.360000pt;}
.y1a8{bottom:407.680000pt;}
.yd{bottom:408.000000pt;}
.y19c{bottom:409.920000pt;}
.yb4{bottom:410.880000pt;}
.y5b{bottom:412.800000pt;}
.y9c{bottom:414.080000pt;}
.ye7{bottom:415.680000pt;}
.y166{bottom:416.000000pt;}
.y1b3{bottom:417.280000pt;}
.y177{bottom:418.666667pt;}
.y11f{bottom:423.680000pt;}
.y1c9{bottom:424.320000pt;}
.y33{bottom:425.920000pt;}
.y7a{bottom:426.240000pt;}
.y5a{bottom:429.120000pt;}
.y13c{bottom:429.333333pt;}
.yd0{bottom:429.760000pt;}
.y9b{bottom:432.320000pt;}
.y1a7{bottom:436.480000pt;}
.yb3{bottom:436.800000pt;}
.y19b{bottom:438.720000pt;}
.y101{bottom:441.920000pt;}
.y32{bottom:444.160000pt;}
.ye6{bottom:444.480000pt;}
.y79{bottom:445.120000pt;}
.yc{bottom:445.440000pt;}
.y9a{bottom:450.880000pt;}
.y13a{bottom:452.000000pt;}
.y11e{bottom:452.480000pt;}
.y1b2{bottom:456.000000pt;}
.ycf{bottom:458.560000pt;}
.yb2{bottom:459.200000pt;}
.y31{bottom:459.840000pt;}
.y165{bottom:460.000000pt;}
.y59{bottom:461.440000pt;}
.y174{bottom:462.666667pt;}
.y78{bottom:463.360000pt;}
.y1a6{bottom:465.280000pt;}
.y19a{bottom:467.520000pt;}
.y99{bottom:469.120000pt;}
.y100{bottom:470.720000pt;}
.ye5{bottom:473.280000pt;}
.y137{bottom:473.333333pt;}
.y30{bottom:475.520000pt;}
.y111{bottom:476.480000pt;}
.y58{bottom:477.440000pt;}
.y1c8{bottom:478.080000pt;}
.y11d{bottom:481.280000pt;}
.y77{bottom:481.920000pt;}
.yb{bottom:482.880000pt;}
.yce{bottom:487.360000pt;}
.y98{bottom:487.680000pt;}
.y2f{bottom:491.520000pt;}
.y57{bottom:493.760000pt;}
.y1a5{bottom:494.080000pt;}
.y1c7{bottom:495.680000pt;}
.y199{bottom:496.320000pt;}
.yff{bottom:499.520000pt;}
.y76{bottom:500.160000pt;}
.y110{bottom:500.480000pt;}
.ye4{bottom:502.080000pt;}
.y2e{bottom:507.520000pt;}
.yb1{bottom:508.800000pt;}
.y56{bottom:509.760000pt;}
.y11c{bottom:510.080000pt;}
.y1c6{bottom:513.280000pt;}
.y97{bottom:513.600000pt;}
.ycd{bottom:516.160000pt;}
.y134{bottom:517.333333pt;}
.y75{bottom:518.720000pt;}
.ya{bottom:520.000000pt;}
.y2d{bottom:523.840000pt;}
.y55{bottom:525.760000pt;}
.yfe{bottom:528.320000pt;}
.yf3{bottom:530.880000pt;}
.yb0{bottom:531.200000pt;}
.y173{bottom:532.160000pt;}
.y96{bottom:532.480000pt;}
.y198{bottom:533.440000pt;}
.y10f{bottom:535.040000pt;}
.y74{bottom:536.960000pt;}
.ye3{bottom:538.880000pt;}
.y2c{bottom:540.480000pt;}
.y54{bottom:542.080000pt;}
.y161{bottom:542.666667pt;}
.ycc{bottom:544.960000pt;}
.y1c5{bottom:549.760000pt;}
.y95{bottom:550.720000pt;}
.yaf{bottom:554.880000pt;}
.y73{bottom:555.520000pt;}
.y2b{bottom:556.800000pt;}
.yfd{bottom:557.120000pt;}
.y9{bottom:557.440000pt;}
.y53{bottom:558.080000pt;}
.y1a4{bottom:559.680000pt;}
.y193{bottom:564.000000pt;}
.y10e{bottom:564.480000pt;}
.y191{bottom:565.333333pt;}
.y1c4{bottom:567.360000pt;}
.ye2{bottom:567.680000pt;}
.y94{bottom:569.280000pt;}
.y2a{bottom:573.440000pt;}
.y72{bottom:573.760000pt;}
.y52{bottom:574.080000pt;}
.yae{bottom:580.800000pt;}
.y1c3{bottom:584.960000pt;}
.y160{bottom:586.666667pt;}
.y93{bottom:587.520000pt;}
.y133{bottom:588.480000pt;}
.y29{bottom:590.400000pt;}
.y71{bottom:592.320000pt;}
.y10d{bottom:593.280000pt;}
.y8{bottom:594.880000pt;}
.ye1{bottom:596.480000pt;}
.yfc{bottom:600.640000pt;}
.ycb{bottom:602.560000pt;}
.yad{bottom:603.200000pt;}
.y92{bottom:606.080000pt;}
.y51{bottom:606.400000pt;}
.y28{bottom:609.280000pt;}
.y15e{bottom:609.333333pt;}
.y132{bottom:617.280000pt;}
.y70{bottom:618.240000pt;}
.yac{bottom:618.880000pt;}
.y1c2{bottom:621.120000pt;}
.y10c{bottom:622.080000pt;}
.y50{bottom:622.400000pt;}
.y91{bottom:624.320000pt;}
.ye0{bottom:625.280000pt;}
.y27{bottom:625.920000pt;}
.y15c{bottom:630.666667pt;}
.y7{bottom:632.000000pt;}
.yfb{bottom:636.800000pt;}
.y6f{bottom:637.120000pt;}
.y4f{bottom:638.720000pt;}
.yca{bottom:639.680000pt;}
.y26{bottom:642.240000pt;}
.y131{bottom:646.080000pt;}
.yab{bottom:647.680000pt;}
.y127{bottom:648.320000pt;}
.y90{bottom:650.560000pt;}
.y15b{bottom:653.333333pt;}
.ydf{bottom:654.080000pt;}
.y4e{bottom:654.720000pt;}
.y6e{bottom:655.360000pt;}
.y1c1{bottom:656.320000pt;}
.y10b{bottom:666.880000pt;}
.y8f{bottom:669.120000pt;}
.y6{bottom:669.440000pt;}
.y4d{bottom:670.720000pt;}
.y6d{bottom:673.920000pt;}
.y130{bottom:674.880000pt;}
.y159{bottom:676.000000pt;}
.yc9{bottom:677.120000pt;}
.y25{bottom:680.640000pt;}
.yaa{bottom:682.880000pt;}
.y4c{bottom:686.720000pt;}
.y8e{bottom:687.680000pt;}
.y6c{bottom:692.160000pt;}
.y1c0{bottom:692.480000pt;}
.y10a{bottom:695.680000pt;}
.y158{bottom:697.333333pt;}
.y4b{bottom:703.040000pt;}
.y24{bottom:703.360000pt;}
.y12f{bottom:703.680000pt;}
.yc8{bottom:704.320000pt;}
.y8d{bottom:705.920000pt;}
.y5{bottom:706.880000pt;}
.ya9{bottom:710.080000pt;}
.y6b{bottom:710.720000pt;}
.yde{bottom:711.680000pt;}
.y4a{bottom:719.040000pt;}
.y155{bottom:720.000000pt;}
.yc7{bottom:723.200000pt;}
.y8c{bottom:724.480000pt;}
.y6a{bottom:728.960000pt;}
.y12e{bottom:732.480000pt;}
.y49{bottom:735.040000pt;}
.ya8{bottom:737.280000pt;}
.ydd{bottom:740.480000pt;}
.yc6{bottom:742.400000pt;}
.y23{bottom:742.720000pt;}
.y4{bottom:744.000000pt;}
.y1f{bottom:744.320000pt;}
.y1bf{bottom:746.560000pt;}
.y69{bottom:747.520000pt;}
.y48{bottom:751.360000pt;}
.y22{bottom:761.280000pt;}
.y152{bottom:764.000000pt;}
.y1be{bottom:764.160000pt;}
.ya7{bottom:764.480000pt;}
.y68{bottom:765.760000pt;}
.y47{bottom:767.360000pt;}
.ydc{bottom:769.280000pt;}
.y115{bottom:776.320000pt;}
.y21{bottom:779.520000pt;}
.yc5{bottom:780.160000pt;}
.y3{bottom:781.440000pt;}
.y1bd{bottom:781.760000pt;}
.y46{bottom:783.360000pt;}
.ya6{bottom:791.680000pt;}
.y67{bottom:794.240000pt;}
.y20{bottom:798.080000pt;}
.yc4{bottom:799.360000pt;}
.y45{bottom:799.680000pt;}
.y114{bottom:800.320000pt;}
.y16{bottom:829.333333pt;}
.ya5{bottom:845.760000pt;}
.h23{height:20.608000pt;}
.h1b{height:21.328125pt;}
.h1e{height:22.666667pt;}
.h1f{height:24.000000pt;}
.hd{height:33.202500pt;}
.h2{height:35.831250pt;}
.hb{height:37.537500pt;}
.hc{height:39.132500pt;}
.h9{height:39.243750pt;}
.h13{height:39.787520pt;}
.h12{height:42.003750pt;}
.h4{height:42.262500pt;}
.h22{height:42.347520pt;}
.h20{height:43.975680pt;}
.h21{height:44.000000pt;}
.h19{height:44.029440pt;}
.h1a{height:44.336250pt;}
.h18{height:45.212160pt;}
.h1d{height:45.333333pt;}
.h8{height:46.068750pt;}
.h14{height:48.163840pt;}
.h24{height:48.222720pt;}
.h17{height:49.047040pt;}
.h1c{height:49.333333pt;}
.h5{height:50.666667pt;}
.h16{height:52.352000pt;}
.h11{height:53.312000pt;}
.he{height:53.746875pt;}
.ha{height:56.156250pt;}
.h15{height:58.129920pt;}
.h6{height:61.841920pt;}
.hf{height:67.818240pt;}
.h10{height:76.430080pt;}
.h3{height:99.815625pt;}
.h7{height:100.000000pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.wb{width:37.333333pt;}
.w12{width:38.666667pt;}
.w10{width:40.000000pt;}
.w9{width:41.333333pt;}
.wc{width:42.666667pt;}
.wd{width:44.000000pt;}
.w13{width:45.333333pt;}
.w1a{width:48.000000pt;}
.w18{width:49.333333pt;}
.w11{width:50.666667pt;}
.wa{width:53.333333pt;}
.w15{width:54.666667pt;}
.w7{width:65.333333pt;}
.we{width:66.666667pt;}
.w17{width:68.000000pt;}
.w5{width:81.333333pt;}
.w8{width:89.333333pt;}
.w14{width:90.666667pt;}
.w19{width:93.333333pt;}
.wf{width:94.666667pt;}
.w3{width:217.333333pt;}
.w6{width:412.000000pt;}
.w16{width:413.333333pt;}
.w2{width:432.000000pt;}
.w4{width:493.333333pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:2.666667pt;}
.x2d{left:7.199872pt;}
.x2b{left:8.213205pt;}
.x7{left:9.599936pt;}
.xd{left:16.825845pt;}
.x3c{left:19.412693pt;}
.x5{left:21.237952pt;}
.x39{left:22.688853pt;}
.x4a{left:27.001707pt;}
.x3b{left:27.908053pt;}
.xb{left:29.430005pt;}
.x4b{left:30.452373pt;}
.x49{left:33.081387pt;}
.x48{left:35.524085pt;}
.xa{left:37.214517pt;}
.xc{left:44.171861pt;}
.x9{left:54.946933pt;}
.x3{left:75.519872pt;}
.x1a{left:81.510752pt;}
.x6{left:90.480480pt;}
.x1b{left:99.224608pt;}
.x27{left:103.853184pt;}
.x4{left:112.000000pt;}
.xf{left:114.200864pt;}
.x1c{left:130.107424pt;}
.x41{left:154.666667pt;}
.x2c{left:156.000000pt;}
.x42{left:194.052405pt;}
.x10{left:208.624032pt;}
.x4d{left:211.881845pt;}
.x2e{left:221.333333pt;}
.x34{left:222.666667pt;}
.x15{left:229.105472pt;}
.x13{left:241.709632pt;}
.x12{left:249.494144pt;}
.x16{left:253.773120pt;}
.x14{left:256.451488pt;}
.x11{left:267.226560pt;}
.x18{left:270.380224pt;}
.x26{left:283.756512pt;}
.x23{left:293.414048pt;}
.x19{left:295.178048pt;}
.x2{left:301.428032pt;}
.x25{left:308.809888pt;}
.x3d{left:310.666667pt;}
.x1e{left:313.525728pt;}
.x43{left:314.666667pt;}
.x35{left:316.000000pt;}
.xe{left:319.219712pt;}
.x1{left:321.219840pt;}
.x2f{left:349.333333pt;}
.x3e{left:350.666667pt;}
.x44{left:353.333333pt;}
.x36{left:354.666667pt;}
.x24{left:378.972800pt;}
.x45{left:401.333333pt;}
.x30{left:402.666667pt;}
.x20{left:403.836480pt;}
.x21{left:411.500160pt;}
.x1f{left:414.224000pt;}
.x22{left:415.435520pt;}
.x29{left:427.520000pt;}
.x17{left:431.469760pt;}
.x1d{left:436.747520pt;}
.x46{left:441.333333pt;}
.x40{left:442.666667pt;}
.x31{left:444.000000pt;}
.x37{left:445.333333pt;}
.x3f{left:446.666667pt;}
.x47{left:478.666667pt;}
.x4c{left:480.000000pt;}
.x32{left:481.333333pt;}
.x38{left:482.666667pt;}
.x28{left:484.799680pt;}
.x2a{left:518.179840pt;}
.x3a{left:522.666667pt;}
.x33{left:524.000000pt;}
}




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