
    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_5e0b3aa6d27f1151f561beb7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_b84d89a1509fee4a8a8b3afc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_ba4194372ffade543eec4f9f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_835562d74c7e43ad8a726a8c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_a469fb7da0b21ed87bd34b60.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_2f3c3b0d52d5a59389470305.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_8c249aa62b82877eb5054e23.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_301e0bf01c3f7df4c1cad789.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_f94c8de98e0fadc778ee7348.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_887fec8ae75cc6cf60affc62.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;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_825311750bdff52fa104a9a4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;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_b1fa158d3d4554b9d665ac52.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.311035;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_54aa2f4938fd34e082788f4c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284668;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_b79c799561230e5f574ecb44.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_919d8539d2714f86f5d4fa45.woff2')format("woff");}.fff{font-family:fff;line-height:1.284180;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_835562d74c7e43ad8a726a8c.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284180;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_2dd6d2319ba6515303762438.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284668;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_49d2dba7e897383425cdfef5.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.311035;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_a19ca76cec26dbcfd23af447.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.956543;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.432129;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_61cb09f3c724f467418be0b8.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284668;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_a2588672957a4c5909d65276.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.311035;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_aa7628f748dde677b469d5f5.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.284180;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_5a5634d2bd14a522d0d41f7f.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.284180;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_60f3840a7154b7990820c9c8.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.284668;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_bd0b274b5e4ffcb191ae79e3.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.311035;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_87365e5f86a03d989c7e8646.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.284180;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_06b2c5b005eecbd67aca1439.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.284668;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_a95b475c205c92d222fb4148.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.284180;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_cb159a2a7b9948782a26c878.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.311035;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_931e36ded2ccb1350711de0c.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.284668;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_bd231a4da60783b3e85d82dc.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.284668;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_21f2b596d3e33d970794223e.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.284180;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_d75a20f4f6d5947135881914.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.311035;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_835562d74c7e43ad8a726a8c.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.284180;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_d8e850355e9ea70f02f5dc51.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.284668;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_13e9b7879dfaaf3698b92532.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.311035;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_78a97e0edd5c9e2e6ea78b8b.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.284668;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);}
.v5{vertical-align:-69.142320px;}
.v8{vertical-align:-66.252240px;}
.v7{vertical-align:-57.576960px;}
.v9{vertical-align:-55.439400px;}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.v6{vertical-align:68.400000px;}
.ls1c{letter-spacing:-1.640160px;}
.ls3c{letter-spacing:-1.374480px;}
.ls1f{letter-spacing:-1.135440px;}
.ls39{letter-spacing:-1.075680px;}
.ls1b{letter-spacing:-1.013040px;}
.ls3d{letter-spacing:-0.771840px;}
.ls23{letter-spacing:-0.657360px;}
.ls26{letter-spacing:-0.478080px;}
.ls3a{letter-spacing:-0.418320px;}
.ls21{letter-spacing:-0.358560px;}
.ls1e{letter-spacing:-0.337680px;}
.ls1a{letter-spacing:-0.289440px;}
.ls25{letter-spacing:-0.239040px;}
.ls3f{letter-spacing:-0.119520px;}
.ls18{letter-spacing:-0.113760px;}
.ls20{letter-spacing:-0.059760px;}
.ls19{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.059760px;}
.ls17{letter-spacing:0.113760px;}
.ls22{letter-spacing:0.119520px;}
.ls3b{letter-spacing:0.149400px;}
.ls9{letter-spacing:0.153360px;}
.ls10{letter-spacing:0.179280px;}
.ls7{letter-spacing:0.180000px;}
.ls33{letter-spacing:0.185256px;}
.lsb{letter-spacing:0.192960px;}
.ls5a{letter-spacing:0.209160px;}
.ls24{letter-spacing:0.239040px;}
.ls46{letter-spacing:0.256968px;}
.ls59{letter-spacing:0.289440px;}
.ls35{letter-spacing:0.304776px;}
.ls2b{letter-spacing:0.322704px;}
.ls12{letter-spacing:0.358560px;}
.ls8{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.385920px;}
.ls5{letter-spacing:0.460080px;}
.ls2c{letter-spacing:0.478080px;}
.ls3{letter-spacing:0.513360px;}
.ls6{letter-spacing:0.613440px;}
.ls14{letter-spacing:0.657360px;}
.lsa{letter-spacing:0.720000px;}
.ls63{letter-spacing:0.782856px;}
.ls58{letter-spacing:0.836640px;}
.ls13{letter-spacing:0.854568px;}
.ls4{letter-spacing:0.873360px;}
.ls62{letter-spacing:0.878472px;}
.ls27{letter-spacing:0.896400px;}
.ls64{letter-spacing:0.956160px;}
.ls5f{letter-spacing:1.075680px;}
.ls55{letter-spacing:1.559736px;}
.ls56{letter-spacing:1.595592px;}
.lsf{letter-spacing:1.613520px;}
.ls36{letter-spacing:1.631448px;}
.ls4c{letter-spacing:2.288808px;}
.ls30{letter-spacing:2.330640px;}
.ls61{letter-spacing:3.041784px;}
.lse{letter-spacing:3.047760px;}
.ls65{letter-spacing:3.729024px;}
.ls31{letter-spacing:3.764880px;}
.ls37{letter-spacing:4.476024px;}
.ls11{letter-spacing:4.482000px;}
.ls38{letter-spacing:4.517856px;}
.ls5c{letter-spacing:4.613472px;}
.ls28{letter-spacing:5.199120px;}
.ls2f{letter-spacing:5.217048px;}
.ls2{letter-spacing:5.220000px;}
.ls1{letter-spacing:5.400000px;}
.ls29{letter-spacing:5.916240px;}
.ls51{letter-spacing:5.952096px;}
.ls2d{letter-spacing:6.633360px;}
.ls52{letter-spacing:6.651288px;}
.ls5e{letter-spacing:7.350480px;}
.ls32{letter-spacing:8.043696px;}
.ls2a{letter-spacing:8.127360px;}
.ls2e{letter-spacing:8.844480px;}
.ls5d{letter-spacing:9.561600px;}
.ls57{letter-spacing:10.183104px;}
.ls47{letter-spacing:10.278720px;}
.ls34{letter-spacing:10.995840px;}
.ls4d{letter-spacing:11.712960px;}
.ls53{letter-spacing:12.430080px;}
.ls16{letter-spacing:13.147200px;}
.ls15{letter-spacing:13.864320px;}
.ls4a{letter-spacing:14.342400px;}
.ls5b{letter-spacing:61.365600px;}
.ls50{letter-spacing:61.380000px;}
.ls60{letter-spacing:61.392240px;}
.ls54{letter-spacing:61.398000px;}
.ls49{letter-spacing:64.002960px;}
.ls3e{letter-spacing:121.133520px;}
.ls4f{letter-spacing:124.081200px;}
.ls43{letter-spacing:158.603040px;}
.ls42{letter-spacing:191.710080px;}
.ls4b{letter-spacing:197.447040px;}
.ls44{letter-spacing:204.678000px;}
.ls41{letter-spacing:217.614960px;}
.ls45{letter-spacing:227.685600px;}
.ls4e{letter-spacing:352.242720px;}
.ls40{letter-spacing:396.925920px;}
.ls48{letter-spacing:496.247040px;}
.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;}
}
.ws67{word-spacing:-32.808240px;}
.ws84{word-spacing:-16.015680px;}
.ws87{word-spacing:-15.896160px;}
.ws3a{word-spacing:-15.597360px;}
.ws39{word-spacing:-15.418080px;}
.ws9{word-spacing:-15.298560px;}
.wsb{word-spacing:-15.179040px;}
.ws66{word-spacing:-15.119280px;}
.wsd{word-spacing:-15.059520px;}
.ws6{word-spacing:-14.999760px;}
.ws0{word-spacing:-14.940000px;}
.ws38{word-spacing:-14.880240px;}
.ws86{word-spacing:-14.820480px;}
.wsc{word-spacing:-14.700960px;}
.ws8{word-spacing:-14.581440px;}
.ws57{word-spacing:-14.521680px;}
.wse{word-spacing:-14.461920px;}
.wsa{word-spacing:-14.282640px;}
.ws61{word-spacing:-13.864320px;}
.ws7{word-spacing:-13.804560px;}
.ws56{word-spacing:-13.565520px;}
.ws5{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.770560px;}
.ws78{word-spacing:-11.288160px;}
.ws3{word-spacing:-11.046960px;}
.ws2{word-spacing:-9.720000px;}
.ws4{word-spacing:-7.560000px;}
.ws3b{word-spacing:-0.916560px;}
.ws37{word-spacing:-0.896400px;}
.ws7c{word-spacing:-0.836640px;}
.ws7f{word-spacing:-0.820080px;}
.ws64{word-spacing:-0.657360px;}
.ws8c{word-spacing:-0.478080px;}
.ws44{word-spacing:-0.358560px;}
.ws51{word-spacing:-0.239040px;}
.ws15{word-spacing:-0.192960px;}
.ws16{word-spacing:-0.179280px;}
.ws4a{word-spacing:-0.119520px;}
.ws65{word-spacing:-0.059760px;}
.ws11{word-spacing:0.000000px;}
.ws18{word-spacing:0.059760px;}
.ws5b{word-spacing:0.119520px;}
.ws6b{word-spacing:0.179280px;}
.wsf{word-spacing:0.227520px;}
.ws24{word-spacing:0.239040px;}
.ws58{word-spacing:0.241200px;}
.ws12{word-spacing:0.289440px;}
.ws5c{word-spacing:0.298800px;}
.ws80{word-spacing:0.337680px;}
.ws2a{word-spacing:0.358560px;}
.ws54{word-spacing:0.418320px;}
.ws10{word-spacing:0.455040px;}
.ws50{word-spacing:0.478080px;}
.ws79{word-spacing:0.482400px;}
.ws3c{word-spacing:0.530640px;}
.ws3d{word-spacing:0.537840px;}
.ws27{word-spacing:0.657360px;}
.ws81{word-spacing:0.717120px;}
.ws5f{word-spacing:0.771840px;}
.ws22{word-spacing:0.776880px;}
.ws5e{word-spacing:0.836640px;}
.ws31{word-spacing:0.956160px;}
.ws13{word-spacing:1.013040px;}
.ws6d{word-spacing:1.075680px;}
.ws30{word-spacing:1.135440px;}
.ws2f{word-spacing:1.254960px;}
.ws62{word-spacing:1.374480px;}
.ws28{word-spacing:1.494000px;}
.ws7a{word-spacing:1.553760px;}
.ws14{word-spacing:1.640160px;}
.ws1e{word-spacing:1.673280px;}
.ws17{word-spacing:1.972080px;}
.ws55{word-spacing:2.091600px;}
.ws23{word-spacing:2.211120px;}
.ws19{word-spacing:2.390400px;}
.ws1c{word-spacing:2.689200px;}
.ws82{word-spacing:2.748960px;}
.ws1a{word-spacing:2.928240px;}
.ws1d{word-spacing:3.107520px;}
.ws2b{word-spacing:3.406320px;}
.ws60{word-spacing:3.525840px;}
.ws2d{word-spacing:3.645360px;}
.ws7d{word-spacing:3.705120px;}
.ws2c{word-spacing:3.824640px;}
.ws1b{word-spacing:4.123440px;}
.ws63{word-spacing:4.242960px;}
.ws29{word-spacing:4.362480px;}
.ws2e{word-spacing:4.541760px;}
.ws8a{word-spacing:4.721040px;}
.ws32{word-spacing:4.840560px;}
.ws7b{word-spacing:4.900320px;}
.ws42{word-spacing:5.079600px;}
.ws89{word-spacing:5.139360px;}
.ws41{word-spacing:5.258880px;}
.ws40{word-spacing:5.557680px;}
.ws5d{word-spacing:5.736960px;}
.ws20{word-spacing:5.796720px;}
.ws88{word-spacing:5.856480px;}
.ws43{word-spacing:5.976000px;}
.ws21{word-spacing:6.274800px;}
.ws47{word-spacing:6.513840px;}
.ws6c{word-spacing:6.573600px;}
.ws48{word-spacing:6.693120px;}
.ws49{word-spacing:6.991920px;}
.ws26{word-spacing:7.051680px;}
.ws4b{word-spacing:7.111440px;}
.ws4d{word-spacing:7.290720px;}
.ws4e{word-spacing:7.470000px;}
.ws25{word-spacing:7.768800px;}
.ws45{word-spacing:8.007840px;}
.ws4c{word-spacing:8.187120px;}
.ws75{word-spacing:8.366400px;}
.ws3e{word-spacing:8.485920px;}
.ws59{word-spacing:8.545680px;}
.ws6f{word-spacing:8.605440px;}
.ws91{word-spacing:8.665200px;}
.ws46{word-spacing:8.724960px;}
.ws3f{word-spacing:8.904240px;}
.ws4f{word-spacing:9.203040px;}
.ws70{word-spacing:9.262800px;}
.ws90{word-spacing:9.382320px;}
.ws1f{word-spacing:9.442080px;}
.ws5a{word-spacing:9.621360px;}
.ws68{word-spacing:9.920160px;}
.ws6a{word-spacing:10.159200px;}
.ws83{word-spacing:10.338480px;}
.ws69{word-spacing:10.637280px;}
.ws53{word-spacing:10.876320px;}
.ws52{word-spacing:11.055600px;}
.ws8b{word-spacing:11.354400px;}
.ws77{word-spacing:11.593440px;}
.ws85{word-spacing:11.772720px;}
.ws7e{word-spacing:12.310560px;}
.ws76{word-spacing:12.489840px;}
.ws34{word-spacing:12.788640px;}
.ws35{word-spacing:13.027680px;}
.ws36{word-spacing:13.206960px;}
.ws33{word-spacing:13.505760px;}
.ws72{word-spacing:13.744800px;}
.ws71{word-spacing:14.222880px;}
.ws6e{word-spacing:16.075440px;}
.ws73{word-spacing:21.453840px;}
.ws74{word-spacing:21.872160px;}
.ws8f{word-spacing:22.888080px;}
.ws8d{word-spacing:71.831520px;}
.ws8e{word-spacing:72.070560px;}
._8{margin-left:-2.340216px;}
._3{margin-left:-1.151568px;}
._0{width:1.569888px;}
._4{width:2.973168px;}
._2{width:4.421952px;}
._1{width:6.167520px;}
._5{width:7.363728px;}
._7{width:8.915616px;}
._9{width:10.297872px;}
._c{width:11.604816px;}
._6{width:13.043808px;}
._a{width:61.373520px;}
._b{width:431.848512px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:30.240000px;}
.fs3{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:113.760000px;}
.y0{bottom:0.000000px;}
.yaa{bottom:3.600000px;}
.y9c{bottom:3.780000px;}
.ya9{bottom:20.880000px;}
.ya2{bottom:21.060000px;}
.y9b{bottom:55.440000px;}
.yfe{bottom:77.220000px;}
.y25{bottom:81.210240px;}
.ycc{bottom:84.428100px;}
.y153{bottom:84.444120px;}
.y4f{bottom:87.630840px;}
.y172{bottom:89.280000px;}
.ya7{bottom:94.122540px;}
.ye3{bottom:96.091380px;}
.y7e{bottom:98.976960px;}
.ycb{bottom:101.713680px;}
.y152{bottom:101.729700px;}
.y4e{bottom:104.916420px;}
.y11d{bottom:106.340220px;}
.y171{bottom:106.560000px;}
.ya6{bottom:111.228840px;}
.ye2{bottom:113.376960px;}
.y24{bottom:115.781400px;}
.y7d{bottom:116.262540px;}
.y68{bottom:117.994140px;}
.yca{bottom:118.999260px;}
.y151{bottom:119.015280px;}
.y4d{bottom:122.202000px;}
.y11c{bottom:123.625800px;}
.y170{bottom:123.840000px;}
.ye1{bottom:130.483260px;}
.y23{bottom:133.066980px;}
.y7c{bottom:133.548120px;}
.y67{bottom:135.279720px;}
.yc9{bottom:136.284840px;}
.y150{bottom:136.300860px;}
.y4c{bottom:139.487580px;}
.y11b{bottom:140.911380px;}
.y16f{bottom:141.120000px;}
.ya5{bottom:145.800000px;}
.ye0{bottom:147.768840px;}
.y22{bottom:150.352560px;}
.y7b{bottom:150.833700px;}
.y66{bottom:152.386020px;}
.yc8{bottom:153.391140px;}
.y14f{bottom:153.586440px;}
.y4b{bottom:156.593880px;}
.y11a{bottom:158.196960px;}
.y16e{bottom:158.388120px;}
.ya4{bottom:160.020000px;}
.ydf{bottom:165.054420px;}
.y21{bottom:167.458860px;}
.y7a{bottom:167.912100px;}
.y65{bottom:169.671600px;}
.yc7{bottom:170.676720px;}
.y14e{bottom:170.692740px;}
.y4a{bottom:173.879460px;}
.y119{bottom:175.482540px;}
.y16d{bottom:175.673700px;}
.ya1{bottom:178.020000px;}
.yde{bottom:182.311380px;}
.y20{bottom:184.744440px;}
.y79{bottom:185.197680px;}
.y64{bottom:186.957180px;}
.yc6{bottom:187.962300px;}
.y14d{bottom:187.978320px;}
.ya3{bottom:190.440000px;}
.y49{bottom:191.165040px;}
.y118{bottom:192.588840px;}
.y16c{bottom:192.780000px;}
.ydd{bottom:199.596960px;}
.y133{bottom:200.771100px;}
.y1f{bottom:202.030020px;}
.y78{bottom:202.483260px;}
.y63{bottom:204.242760px;}
.yc5{bottom:205.247880px;}
.y14c{bottom:205.263900px;}
.y48{bottom:208.450620px;}
.y117{bottom:209.874420px;}
.y16b{bottom:210.025800px;}
.ya0{bottom:213.300000px;}
.ydc{bottom:216.703260px;}
.y132{bottom:218.056680px;}
.y1e{bottom:219.315600px;}
.y77{bottom:219.768840px;}
.y62{bottom:221.528340px;}
.yc4{bottom:222.533460px;}
.y14b{bottom:222.549480px;}
.y47{bottom:225.736200px;}
.y116{bottom:227.160000px;}
.y16a{bottom:227.311380px;}
.y9a{bottom:231.300000px;}
.ydb{bottom:233.988840px;}
.y131{bottom:235.162980px;}
.y1d{bottom:236.601180px;}
.y76{bottom:237.054420px;}
.y61{bottom:238.634640px;}
.yc3{bottom:239.819040px;}
.y14a{bottom:239.835060px;}
.y46{bottom:243.021780px;}
.y9f{bottom:243.720000px;}
.y115{bottom:243.723960px;}
.y169{bottom:244.596960px;}
.y99{bottom:252.360000px;}
.y130{bottom:252.448560px;}
.y1c{bottom:253.707480px;}
.y75{bottom:254.340000px;}
.yfd{bottom:254.799720px;}
.y60{bottom:255.920220px;}
.yc2{bottom:256.925340px;}
.y149{bottom:257.120640px;}
.y114{bottom:257.399100px;}
.y45{bottom:260.128080px;}
.y9e{bottom:261.000000px;}
.y168{bottom:261.882540px;}
.y113{bottom:268.380000px;}
.yda{bottom:268.560000px;}
.y98{bottom:269.460000px;}
.y12f{bottom:269.734140px;}
.y74{bottom:270.723060px;}
.y1b{bottom:270.993060px;}
.yfc{bottom:272.085300px;}
.y5f{bottom:273.205800px;}
.yc1{bottom:274.210920px;}
.y148{bottom:274.226940px;}
.y44{bottom:277.413660px;}
.y9d{bottom:278.100000px;}
.y167{bottom:279.168120px;}
.y73{bottom:284.580000px;}
.y12e{bottom:287.019720px;}
.y1a{bottom:288.278640px;}
.yfb{bottom:289.191600px;}
.y5e{bottom:290.491380px;}
.yc0{bottom:291.496500px;}
.y147{bottom:291.512520px;}
.y43{bottom:294.699240px;}
.y72{bottom:295.380000px;}
.y166{bottom:296.274420px;}
.yd9{bottom:299.514240px;}
.y12d{bottom:304.305300px;}
.y19{bottom:305.564220px;}
.yfa{bottom:306.118620px;}
.y5d{bottom:307.776960px;}
.ybf{bottom:308.782080px;}
.y42{bottom:311.984820px;}
.yd8{bottom:313.020000px;}
.y165{bottom:313.404120px;}
.y146{bottom:317.433420px;}
.y12c{bottom:321.590880px;}
.y97{bottom:321.985800px;}
.y18{bottom:322.849800px;}
.yf9{bottom:323.404200px;}
.y5c{bottom:325.062540px;}
.ybe{bottom:326.067660px;}
.y41{bottom:329.270400px;}
.y164{bottom:330.689700px;}
.y12b{bottom:338.697180px;}
.y96{bottom:339.271380px;}
.y17{bottom:340.135380px;}
.yf8{bottom:341.048340px;}
.y5b{bottom:342.168840px;}
.ybd{bottom:343.353240px;}
.y40{bottom:346.376700px;}
.y12a{bottom:355.982760px;}
.y95{bottom:356.556960px;}
.y163{bottom:356.610600px;}
.y16{bottom:357.241680px;}
.yf7{bottom:358.333920px;}
.y5a{bottom:359.454420px;}
.ybc{bottom:360.459540px;}
.y145{bottom:362.074140px;}
.y3f{bottom:363.662280px;}
.y129{bottom:373.268340px;}
.y94{bottom:373.842540px;}
.y15{bottom:374.527260px;}
.yf6{bottom:375.440220px;}
.y59{bottom:376.740000px;}
.ybb{bottom:377.745120px;}
.y144{bottom:379.359720px;}
.y3e{bottom:380.947860px;}
.y128{bottom:390.553920px;}
.y93{bottom:390.948840px;}
.y14{bottom:391.812840px;}
.yf5{bottom:392.725800px;}
.y58{bottom:393.300000px;}
.yba{bottom:395.030700px;}
.y143{bottom:396.645300px;}
.y3d{bottom:398.233440px;}
.y162{bottom:401.251320px;}
.y57{bottom:404.100000px;}
.y127{bottom:407.839500px;}
.y92{bottom:408.234420px;}
.y13{bottom:409.098420px;}
.yf4{bottom:410.011380px;}
.yb9{bottom:412.316280px;}
.y142{bottom:413.751600px;}
.y3c{bottom:415.519020px;}
.y161{bottom:418.357620px;}
.y126{bottom:424.945800px;}
.y91{bottom:425.520000px;}
.y12{bottom:426.384000px;}
.yf3{bottom:427.296960px;}
.yb8{bottom:429.601860px;}
.y141{bottom:431.037180px;}
.y3b{bottom:432.804600px;}
.y160{bottom:435.643200px;}
.y90{bottom:442.083960px;}
.y125{bottom:442.231380px;}
.y11{bottom:443.669580px;}
.yf2{bottom:444.582540px;}
.yb7{bottom:446.708160px;}
.y140{bottom:448.322760px;}
.y3a{bottom:449.910900px;}
.y15f{bottom:452.928780px;}
.y8f{bottom:455.760000px;}
.y124{bottom:459.516960px;}
.y10{bottom:460.775880px;}
.yf1{bottom:461.868120px;}
.yb6{bottom:463.993740px;}
.y13f{bottom:465.608340px;}
.y8e{bottom:466.740000px;}
.y39{bottom:467.196480px;}
.y15e{bottom:470.214360px;}
.y123{bottom:476.802540px;}
.yf{bottom:478.061460px;}
.yf0{bottom:478.974420px;}
.yb5{bottom:481.279320px;}
.y13e{bottom:482.893920px;}
.y38{bottom:484.482060px;}
.y15d{bottom:487.499940px;}
.y183{bottom:487.608120px;}
.y122{bottom:494.088120px;}
.ye{bottom:495.347040px;}
.y112{bottom:497.777400px;}
.yb4{bottom:499.640580px;}
.y13d{bottom:500.000220px;}
.y37{bottom:501.767640px;}
.y15c{bottom:504.785520px;}
.y182{bottom:504.893700px;}
.y121{bottom:511.373700px;}
.yd{bottom:512.632620px;}
.yef{bottom:512.823060px;}
.y111{bottom:515.062980px;}
.yb3{bottom:516.926160px;}
.y13c{bottom:517.285800px;}
.y36{bottom:519.053220px;}
.yd7{bottom:519.770340px;}
.y15b{bottom:521.891820px;}
.y181{bottom:522.000000px;}
.yee{bottom:526.680000px;}
.y120{bottom:528.480000px;}
.yc{bottom:529.918200px;}
.y110{bottom:532.348560px;}
.y13b{bottom:534.571380px;}
.yb2{bottom:535.287420px;}
.y35{bottom:536.338800px;}
.yd6{bottom:537.055920px;}
.y15a{bottom:539.177400px;}
.y180{bottom:539.257680px;}
.yed{bottom:541.074960px;}
.y11f{bottom:545.038380px;}
.yb{bottom:547.203780px;}
.y10f{bottom:549.634140px;}
.y13a{bottom:551.856960px;}
.yb1{bottom:552.393720px;}
.y34{bottom:553.445100px;}
.yd5{bottom:554.341500px;}
.yec{bottom:554.760000px;}
.y11e{bottom:555.840000px;}
.y159{bottom:556.462980px;}
.y17f{bottom:556.543260px;}
.y10e{bottom:566.919720px;}
.y139{bottom:569.142540px;}
.y33{bottom:570.730680px;}
.yb0{bottom:570.754980px;}
.yd4{bottom:571.447800px;}
.ya{bottom:572.945400px;}
.y158{bottom:573.748560px;}
.y17e{bottom:573.828840px;}
.y10d{bottom:584.026020px;}
.y138{bottom:586.428120px;}
.y32{bottom:588.016260px;}
.yaf{bottom:588.040560px;}
.yd3{bottom:588.733380px;}
.y8d{bottom:591.032700px;}
.y157{bottom:591.034140px;}
.y17d{bottom:591.114420px;}
.y10c{bottom:601.311600px;}
.y137{bottom:603.534420px;}
.y31{bottom:605.301840px;}
.yae{bottom:605.326140px;}
.yd2{bottom:606.018960px;}
.y8c{bottom:608.318280px;}
.y156{bottom:608.319720px;}
.y17c{bottom:608.400000px;}
.y10b{bottom:618.597180px;}
.y136{bottom:620.820000px;}
.yad{bottom:622.253160px;}
.y30{bottom:622.587420px;}
.yd1{bottom:623.304540px;}
.y8b{bottom:625.424580px;}
.y155{bottom:625.426020px;}
.y17b{bottom:625.454640px;}
.y9{bottom:626.580000px;}
.y10a{bottom:635.882760px;}
.y2f{bottom:639.693720px;}
.yd0{bottom:640.590120px;}
.y8a{bottom:642.710160px;}
.y154{bottom:642.711600px;}
.y17a{bottom:642.740220px;}
.y8{bottom:647.636400px;}
.y135{bottom:651.954240px;}
.y109{bottom:653.168340px;}
.y2e{bottom:656.979300px;}
.ycf{bottom:657.322920px;}
.yac{bottom:657.900000px;}
.y89{bottom:659.995740px;}
.y56{bottom:659.997180px;}
.y179{bottom:660.025800px;}
.y7{bottom:661.320000px;}
.y134{bottom:665.460000px;}
.y71{bottom:667.596960px;}
.y108{bottom:670.453920px;}
.yab{bottom:672.120000px;}
.yeb{bottom:676.580580px;}
.y88{bottom:677.281320px;}
.y55{bottom:677.282760px;}
.y178{bottom:677.311380px;}
.y2d{bottom:682.900200px;}
.y6{bottom:683.460000px;}
.y70{bottom:684.703260px;}
.y107{bottom:687.560220px;}
.ya8{bottom:690.120000px;}
.yce{bottom:692.969760px;}
.yea{bottom:693.686880px;}
.y87{bottom:694.566900px;}
.y54{bottom:694.568340px;}
.y177{bottom:694.596960px;}
.y5{bottom:700.740000px;}
.y6f{bottom:701.988840px;}
.y106{bottom:704.845800px;}
.ye9{bottom:710.972460px;}
.y86{bottom:711.673200px;}
.y53{bottom:711.674640px;}
.y176{bottom:711.703260px;}
.ycd{bottom:718.890660px;}
.y6e{bottom:719.274420px;}
.y105{bottom:722.131380px;}
.ye8{bottom:728.258040px;}
.y85{bottom:728.958780px;}
.y52{bottom:728.960220px;}
.y175{bottom:728.988840px;}
.y6d{bottom:736.533360px;}
.y2c{bottom:736.534800px;}
.y4{bottom:738.351210px;}
.y104{bottom:739.416960px;}
.ye7{bottom:745.543620px;}
.y84{bottom:746.244360px;}
.y51{bottom:746.245800px;}
.y174{bottom:746.274420px;}
.y6c{bottom:753.818940px;}
.y103{bottom:756.702540px;}
.ye6{bottom:762.470640px;}
.y83{bottom:763.529940px;}
.y50{bottom:763.531380px;}
.y173{bottom:763.560000px;}
.y3{bottom:771.114090px;}
.y102{bottom:773.808840px;}
.ye5{bottom:780.114780px;}
.y82{bottom:780.815520px;}
.y2b{bottom:780.816960px;}
.y6b{bottom:788.210820px;}
.ye4{bottom:796.847580px;}
.y81{bottom:798.101100px;}
.y2a{bottom:798.102540px;}
.y2{bottom:803.876970px;}
.y6a{bottom:805.137840px;}
.y101{bottom:808.380000px;}
.y80{bottom:815.207400px;}
.y29{bottom:815.208840px;}
.y100{bottom:824.943960px;}
.y7f{bottom:832.492980px;}
.y28{bottom:832.494420px;}
.y1{bottom:836.639850px;}
.y69{bottom:849.420000px;}
.y27{bottom:849.780000px;}
.yff{bottom:852.479850px;}
.y26{bottom:903.420000px;}
.h10{height:17.098500px;}
.hd{height:17.280000px;}
.h4{height:29.664141px;}
.hf{height:34.380000px;}
.he{height:34.560000px;}
.h7{height:47.321367px;}
.h5{height:58.651172px;}
.h15{height:58.698692px;}
.h18{height:58.740452px;}
.h16{height:58.742732px;}
.h14{height:58.787972px;}
.h17{height:58.832612px;}
.h3{height:59.038594px;}
.ha{height:59.130754px;}
.h8{height:59.145154px;}
.h9{height:59.150194px;}
.h12{height:59.153074px;}
.h13{height:59.662114px;}
.h6{height:60.226875px;}
.h11{height:62.327813px;}
.hc{height:68.940000px;}
.h2{height:114.648750px;}
.hb{height:127.051172px;}
.h1{height:978.000000px;}
.h0{height:978.120000px;}
.w2{width:67.141500px;}
.w5{width:71.100000px;}
.w3{width:77.040000px;}
.w7{width:86.220000px;}
.w4{width:87.300000px;}
.w6{width:101.340000px;}
.w8{width:106.560000px;}
.wa{width:107.818500px;}
.w9{width:109.261500px;}
.wb{width:118.078500px;}
.w1{width:680.250000px;}
.w0{width:680.400000px;}
.x0{left:0.000000px;}
.xf{left:7.740000px;}
.x2c{left:8.820000px;}
.x2f{left:10.080000px;}
.x2a{left:12.240000px;}
.x25{left:15.660000px;}
.x27{left:18.900000px;}
.x1f{left:20.340000px;}
.x1e{left:22.500000px;}
.x12{left:24.840000px;}
.x23{left:26.100000px;}
.x1c{left:28.080000px;}
.x21{left:33.660000px;}
.x31{left:39.600000px;}
.x1a{left:42.300000px;}
.x33{left:44.460000px;}
.x32{left:45.720000px;}
.x34{left:47.700000px;}
.x30{left:49.500000px;}
.xa{left:57.240000px;}
.x28{left:64.620000px;}
.xb{left:68.040000px;}
.x1{left:72.360000px;}
.x3{left:75.960000px;}
.x2{left:106.380000px;}
.x3c{left:115.555500px;}
.x1b{left:120.060000px;}
.x8{left:126.001260px;}
.x35{left:133.374960px;}
.x3f{left:140.943600px;}
.xc{left:146.880000px;}
.x26{left:148.140000px;}
.x36{left:160.371540px;}
.x29{left:171.900000px;}
.x1d{left:208.080000px;}
.xd{left:215.820000px;}
.x5{left:267.120000px;}
.xe{left:279.900000px;}
.x2b{left:281.880000px;}
.x11{left:295.920000px;}
.x10{left:298.800000px;}
.x3a{left:307.251900px;}
.x3d{left:340.200000px;}
.x20{left:347.760000px;}
.x6{left:357.300000px;}
.x13{left:361.080000px;}
.x2d{left:389.160000px;}
.x22{left:449.820000px;}
.x14{left:464.400000px;}
.x15{left:465.840000px;}
.x16{left:480.420000px;}
.x2e{left:497.700000px;}
.x3b{left:514.080000px;}
.x37{left:525.780000px;}
.x24{left:536.760000px;}
.x18{left:544.500000px;}
.x4{left:562.860000px;}
.x17{left:565.740000px;}
.x19{left:574.020000px;}
.x38{left:592.920000px;}
.x7{left:605.340000px;}
.x9{left:607.860000px;}
.x39{left:628.020000px;}
.x3e{left:634.860000px;}
.x40{left:648.000000px;}
@media print{
.v5{vertical-align:-61.459840pt;}
.v8{vertical-align:-58.890880pt;}
.v7{vertical-align:-51.179520pt;}
.v9{vertical-align:-49.279467pt;}
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.v6{vertical-align:60.800000pt;}
.ls1c{letter-spacing:-1.457920pt;}
.ls3c{letter-spacing:-1.221760pt;}
.ls1f{letter-spacing:-1.009280pt;}
.ls39{letter-spacing:-0.956160pt;}
.ls1b{letter-spacing:-0.900480pt;}
.ls3d{letter-spacing:-0.686080pt;}
.ls23{letter-spacing:-0.584320pt;}
.ls26{letter-spacing:-0.424960pt;}
.ls3a{letter-spacing:-0.371840pt;}
.ls21{letter-spacing:-0.318720pt;}
.ls1e{letter-spacing:-0.300160pt;}
.ls1a{letter-spacing:-0.257280pt;}
.ls25{letter-spacing:-0.212480pt;}
.ls3f{letter-spacing:-0.106240pt;}
.ls18{letter-spacing:-0.101120pt;}
.ls20{letter-spacing:-0.053120pt;}
.ls19{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.053120pt;}
.ls17{letter-spacing:0.101120pt;}
.ls22{letter-spacing:0.106240pt;}
.ls3b{letter-spacing:0.132800pt;}
.ls9{letter-spacing:0.136320pt;}
.ls10{letter-spacing:0.159360pt;}
.ls7{letter-spacing:0.160000pt;}
.ls33{letter-spacing:0.164672pt;}
.lsb{letter-spacing:0.171520pt;}
.ls5a{letter-spacing:0.185920pt;}
.ls24{letter-spacing:0.212480pt;}
.ls46{letter-spacing:0.228416pt;}
.ls59{letter-spacing:0.257280pt;}
.ls35{letter-spacing:0.270912pt;}
.ls2b{letter-spacing:0.286848pt;}
.ls12{letter-spacing:0.318720pt;}
.ls8{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.343040pt;}
.ls5{letter-spacing:0.408960pt;}
.ls2c{letter-spacing:0.424960pt;}
.ls3{letter-spacing:0.456320pt;}
.ls6{letter-spacing:0.545280pt;}
.ls14{letter-spacing:0.584320pt;}
.lsa{letter-spacing:0.640000pt;}
.ls63{letter-spacing:0.695872pt;}
.ls58{letter-spacing:0.743680pt;}
.ls13{letter-spacing:0.759616pt;}
.ls4{letter-spacing:0.776320pt;}
.ls62{letter-spacing:0.780864pt;}
.ls27{letter-spacing:0.796800pt;}
.ls64{letter-spacing:0.849920pt;}
.ls5f{letter-spacing:0.956160pt;}
.ls55{letter-spacing:1.386432pt;}
.ls56{letter-spacing:1.418304pt;}
.lsf{letter-spacing:1.434240pt;}
.ls36{letter-spacing:1.450176pt;}
.ls4c{letter-spacing:2.034496pt;}
.ls30{letter-spacing:2.071680pt;}
.ls61{letter-spacing:2.703808pt;}
.lse{letter-spacing:2.709120pt;}
.ls65{letter-spacing:3.314688pt;}
.ls31{letter-spacing:3.346560pt;}
.ls37{letter-spacing:3.978688pt;}
.ls11{letter-spacing:3.984000pt;}
.ls38{letter-spacing:4.015872pt;}
.ls5c{letter-spacing:4.100864pt;}
.ls28{letter-spacing:4.621440pt;}
.ls2f{letter-spacing:4.637376pt;}
.ls2{letter-spacing:4.640000pt;}
.ls1{letter-spacing:4.800000pt;}
.ls29{letter-spacing:5.258880pt;}
.ls51{letter-spacing:5.290752pt;}
.ls2d{letter-spacing:5.896320pt;}
.ls52{letter-spacing:5.912256pt;}
.ls5e{letter-spacing:6.533760pt;}
.ls32{letter-spacing:7.149952pt;}
.ls2a{letter-spacing:7.224320pt;}
.ls2e{letter-spacing:7.861760pt;}
.ls5d{letter-spacing:8.499200pt;}
.ls57{letter-spacing:9.051648pt;}
.ls47{letter-spacing:9.136640pt;}
.ls34{letter-spacing:9.774080pt;}
.ls4d{letter-spacing:10.411520pt;}
.ls53{letter-spacing:11.048960pt;}
.ls16{letter-spacing:11.686400pt;}
.ls15{letter-spacing:12.323840pt;}
.ls4a{letter-spacing:12.748800pt;}
.ls5b{letter-spacing:54.547200pt;}
.ls50{letter-spacing:54.560000pt;}
.ls60{letter-spacing:54.570880pt;}
.ls54{letter-spacing:54.576000pt;}
.ls49{letter-spacing:56.891520pt;}
.ls3e{letter-spacing:107.674240pt;}
.ls4f{letter-spacing:110.294400pt;}
.ls43{letter-spacing:140.980480pt;}
.ls42{letter-spacing:170.408960pt;}
.ls4b{letter-spacing:175.508480pt;}
.ls44{letter-spacing:181.936000pt;}
.ls41{letter-spacing:193.435520pt;}
.ls45{letter-spacing:202.387200pt;}
.ls4e{letter-spacing:313.104640pt;}
.ls40{letter-spacing:352.823040pt;}
.ls48{letter-spacing:441.108480pt;}
.ws67{word-spacing:-29.162880pt;}
.ws84{word-spacing:-14.236160pt;}
.ws87{word-spacing:-14.129920pt;}
.ws3a{word-spacing:-13.864320pt;}
.ws39{word-spacing:-13.704960pt;}
.ws9{word-spacing:-13.598720pt;}
.wsb{word-spacing:-13.492480pt;}
.ws66{word-spacing:-13.439360pt;}
.wsd{word-spacing:-13.386240pt;}
.ws6{word-spacing:-13.333120pt;}
.ws0{word-spacing:-13.280000pt;}
.ws38{word-spacing:-13.226880pt;}
.ws86{word-spacing:-13.173760pt;}
.wsc{word-spacing:-13.067520pt;}
.ws8{word-spacing:-12.961280pt;}
.ws57{word-spacing:-12.908160pt;}
.wse{word-spacing:-12.855040pt;}
.wsa{word-spacing:-12.695680pt;}
.ws61{word-spacing:-12.323840pt;}
.ws7{word-spacing:-12.270720pt;}
.ws56{word-spacing:-12.058240pt;}
.ws5{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.462720pt;}
.ws78{word-spacing:-10.033920pt;}
.ws3{word-spacing:-9.819520pt;}
.ws2{word-spacing:-8.640000pt;}
.ws4{word-spacing:-6.720000pt;}
.ws3b{word-spacing:-0.814720pt;}
.ws37{word-spacing:-0.796800pt;}
.ws7c{word-spacing:-0.743680pt;}
.ws7f{word-spacing:-0.728960pt;}
.ws64{word-spacing:-0.584320pt;}
.ws8c{word-spacing:-0.424960pt;}
.ws44{word-spacing:-0.318720pt;}
.ws51{word-spacing:-0.212480pt;}
.ws15{word-spacing:-0.171520pt;}
.ws16{word-spacing:-0.159360pt;}
.ws4a{word-spacing:-0.106240pt;}
.ws65{word-spacing:-0.053120pt;}
.ws11{word-spacing:0.000000pt;}
.ws18{word-spacing:0.053120pt;}
.ws5b{word-spacing:0.106240pt;}
.ws6b{word-spacing:0.159360pt;}
.wsf{word-spacing:0.202240pt;}
.ws24{word-spacing:0.212480pt;}
.ws58{word-spacing:0.214400pt;}
.ws12{word-spacing:0.257280pt;}
.ws5c{word-spacing:0.265600pt;}
.ws80{word-spacing:0.300160pt;}
.ws2a{word-spacing:0.318720pt;}
.ws54{word-spacing:0.371840pt;}
.ws10{word-spacing:0.404480pt;}
.ws50{word-spacing:0.424960pt;}
.ws79{word-spacing:0.428800pt;}
.ws3c{word-spacing:0.471680pt;}
.ws3d{word-spacing:0.478080pt;}
.ws27{word-spacing:0.584320pt;}
.ws81{word-spacing:0.637440pt;}
.ws5f{word-spacing:0.686080pt;}
.ws22{word-spacing:0.690560pt;}
.ws5e{word-spacing:0.743680pt;}
.ws31{word-spacing:0.849920pt;}
.ws13{word-spacing:0.900480pt;}
.ws6d{word-spacing:0.956160pt;}
.ws30{word-spacing:1.009280pt;}
.ws2f{word-spacing:1.115520pt;}
.ws62{word-spacing:1.221760pt;}
.ws28{word-spacing:1.328000pt;}
.ws7a{word-spacing:1.381120pt;}
.ws14{word-spacing:1.457920pt;}
.ws1e{word-spacing:1.487360pt;}
.ws17{word-spacing:1.752960pt;}
.ws55{word-spacing:1.859200pt;}
.ws23{word-spacing:1.965440pt;}
.ws19{word-spacing:2.124800pt;}
.ws1c{word-spacing:2.390400pt;}
.ws82{word-spacing:2.443520pt;}
.ws1a{word-spacing:2.602880pt;}
.ws1d{word-spacing:2.762240pt;}
.ws2b{word-spacing:3.027840pt;}
.ws60{word-spacing:3.134080pt;}
.ws2d{word-spacing:3.240320pt;}
.ws7d{word-spacing:3.293440pt;}
.ws2c{word-spacing:3.399680pt;}
.ws1b{word-spacing:3.665280pt;}
.ws63{word-spacing:3.771520pt;}
.ws29{word-spacing:3.877760pt;}
.ws2e{word-spacing:4.037120pt;}
.ws8a{word-spacing:4.196480pt;}
.ws32{word-spacing:4.302720pt;}
.ws7b{word-spacing:4.355840pt;}
.ws42{word-spacing:4.515200pt;}
.ws89{word-spacing:4.568320pt;}
.ws41{word-spacing:4.674560pt;}
.ws40{word-spacing:4.940160pt;}
.ws5d{word-spacing:5.099520pt;}
.ws20{word-spacing:5.152640pt;}
.ws88{word-spacing:5.205760pt;}
.ws43{word-spacing:5.312000pt;}
.ws21{word-spacing:5.577600pt;}
.ws47{word-spacing:5.790080pt;}
.ws6c{word-spacing:5.843200pt;}
.ws48{word-spacing:5.949440pt;}
.ws49{word-spacing:6.215040pt;}
.ws26{word-spacing:6.268160pt;}
.ws4b{word-spacing:6.321280pt;}
.ws4d{word-spacing:6.480640pt;}
.ws4e{word-spacing:6.640000pt;}
.ws25{word-spacing:6.905600pt;}
.ws45{word-spacing:7.118080pt;}
.ws4c{word-spacing:7.277440pt;}
.ws75{word-spacing:7.436800pt;}
.ws3e{word-spacing:7.543040pt;}
.ws59{word-spacing:7.596160pt;}
.ws6f{word-spacing:7.649280pt;}
.ws91{word-spacing:7.702400pt;}
.ws46{word-spacing:7.755520pt;}
.ws3f{word-spacing:7.914880pt;}
.ws4f{word-spacing:8.180480pt;}
.ws70{word-spacing:8.233600pt;}
.ws90{word-spacing:8.339840pt;}
.ws1f{word-spacing:8.392960pt;}
.ws5a{word-spacing:8.552320pt;}
.ws68{word-spacing:8.817920pt;}
.ws6a{word-spacing:9.030400pt;}
.ws83{word-spacing:9.189760pt;}
.ws69{word-spacing:9.455360pt;}
.ws53{word-spacing:9.667840pt;}
.ws52{word-spacing:9.827200pt;}
.ws8b{word-spacing:10.092800pt;}
.ws77{word-spacing:10.305280pt;}
.ws85{word-spacing:10.464640pt;}
.ws7e{word-spacing:10.942720pt;}
.ws76{word-spacing:11.102080pt;}
.ws34{word-spacing:11.367680pt;}
.ws35{word-spacing:11.580160pt;}
.ws36{word-spacing:11.739520pt;}
.ws33{word-spacing:12.005120pt;}
.ws72{word-spacing:12.217600pt;}
.ws71{word-spacing:12.642560pt;}
.ws6e{word-spacing:14.289280pt;}
.ws73{word-spacing:19.070080pt;}
.ws74{word-spacing:19.441920pt;}
.ws8f{word-spacing:20.344960pt;}
.ws8d{word-spacing:63.850240pt;}
.ws8e{word-spacing:64.062720pt;}
._8{margin-left:-2.080192pt;}
._3{margin-left:-1.023616pt;}
._0{width:1.395456pt;}
._4{width:2.642816pt;}
._2{width:3.930624pt;}
._1{width:5.482240pt;}
._5{width:6.545536pt;}
._7{width:7.924992pt;}
._9{width:9.153664pt;}
._c{width:10.315392pt;}
._6{width:11.594496pt;}
._a{width:54.554240pt;}
._b{width:383.865344pt;}
.fs4{font-size:26.880000pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:101.120000pt;}
.y0{bottom:0.000000pt;}
.yaa{bottom:3.200000pt;}
.y9c{bottom:3.360000pt;}
.ya9{bottom:18.560000pt;}
.ya2{bottom:18.720000pt;}
.y9b{bottom:49.280000pt;}
.yfe{bottom:68.640000pt;}
.y25{bottom:72.186880pt;}
.ycc{bottom:75.047200pt;}
.y153{bottom:75.061440pt;}
.y4f{bottom:77.894080pt;}
.y172{bottom:79.360000pt;}
.ya7{bottom:83.664480pt;}
.ye3{bottom:85.414560pt;}
.y7e{bottom:87.979520pt;}
.ycb{bottom:90.412160pt;}
.y152{bottom:90.426400pt;}
.y4e{bottom:93.259040pt;}
.y11d{bottom:94.524640pt;}
.y171{bottom:94.720000pt;}
.ya6{bottom:98.870080pt;}
.ye2{bottom:100.779520pt;}
.y24{bottom:102.916800pt;}
.y7d{bottom:103.344480pt;}
.y68{bottom:104.883680pt;}
.yca{bottom:105.777120pt;}
.y151{bottom:105.791360pt;}
.y4d{bottom:108.624000pt;}
.y11c{bottom:109.889600pt;}
.y170{bottom:110.080000pt;}
.ye1{bottom:115.985120pt;}
.y23{bottom:118.281760pt;}
.y7c{bottom:118.709440pt;}
.y67{bottom:120.248640pt;}
.yc9{bottom:121.142080pt;}
.y150{bottom:121.156320pt;}
.y4c{bottom:123.988960pt;}
.y11b{bottom:125.254560pt;}
.y16f{bottom:125.440000pt;}
.ya5{bottom:129.600000pt;}
.ye0{bottom:131.350080pt;}
.y22{bottom:133.646720pt;}
.y7b{bottom:134.074400pt;}
.y66{bottom:135.454240pt;}
.yc8{bottom:136.347680pt;}
.y14f{bottom:136.521280pt;}
.y4b{bottom:139.194560pt;}
.y11a{bottom:140.619520pt;}
.y16e{bottom:140.789440pt;}
.ya4{bottom:142.240000pt;}
.ydf{bottom:146.715040pt;}
.y21{bottom:148.852320pt;}
.y7a{bottom:149.255200pt;}
.y65{bottom:150.819200pt;}
.yc7{bottom:151.712640pt;}
.y14e{bottom:151.726880pt;}
.y4a{bottom:154.559520pt;}
.y119{bottom:155.984480pt;}
.y16d{bottom:156.154400pt;}
.ya1{bottom:158.240000pt;}
.yde{bottom:162.054560pt;}
.y20{bottom:164.217280pt;}
.y79{bottom:164.620160pt;}
.y64{bottom:166.184160pt;}
.yc6{bottom:167.077600pt;}
.y14d{bottom:167.091840pt;}
.ya3{bottom:169.280000pt;}
.y49{bottom:169.924480pt;}
.y118{bottom:171.190080pt;}
.y16c{bottom:171.360000pt;}
.ydd{bottom:177.419520pt;}
.y133{bottom:178.463200pt;}
.y1f{bottom:179.582240pt;}
.y78{bottom:179.985120pt;}
.y63{bottom:181.549120pt;}
.yc5{bottom:182.442560pt;}
.y14c{bottom:182.456800pt;}
.y48{bottom:185.289440pt;}
.y117{bottom:186.555040pt;}
.y16b{bottom:186.689600pt;}
.ya0{bottom:189.600000pt;}
.ydc{bottom:192.625120pt;}
.y132{bottom:193.828160pt;}
.y1e{bottom:194.947200pt;}
.y77{bottom:195.350080pt;}
.y62{bottom:196.914080pt;}
.yc4{bottom:197.807520pt;}
.y14b{bottom:197.821760pt;}
.y47{bottom:200.654400pt;}
.y116{bottom:201.920000pt;}
.y16a{bottom:202.054560pt;}
.y9a{bottom:205.600000pt;}
.ydb{bottom:207.990080pt;}
.y131{bottom:209.033760pt;}
.y1d{bottom:210.312160pt;}
.y76{bottom:210.715040pt;}
.y61{bottom:212.119680pt;}
.yc3{bottom:213.172480pt;}
.y14a{bottom:213.186720pt;}
.y46{bottom:216.019360pt;}
.y9f{bottom:216.640000pt;}
.y115{bottom:216.643520pt;}
.y169{bottom:217.419520pt;}
.y99{bottom:224.320000pt;}
.y130{bottom:224.398720pt;}
.y1c{bottom:225.517760pt;}
.y75{bottom:226.080000pt;}
.yfd{bottom:226.488640pt;}
.y60{bottom:227.484640pt;}
.yc2{bottom:228.378080pt;}
.y149{bottom:228.551680pt;}
.y114{bottom:228.799200pt;}
.y45{bottom:231.224960pt;}
.y9e{bottom:232.000000pt;}
.y168{bottom:232.784480pt;}
.y113{bottom:238.560000pt;}
.yda{bottom:238.720000pt;}
.y98{bottom:239.520000pt;}
.y12f{bottom:239.763680pt;}
.y74{bottom:240.642720pt;}
.y1b{bottom:240.882720pt;}
.yfc{bottom:241.853600pt;}
.y5f{bottom:242.849600pt;}
.yc1{bottom:243.743040pt;}
.y148{bottom:243.757280pt;}
.y44{bottom:246.589920pt;}
.y9d{bottom:247.200000pt;}
.y167{bottom:248.149440pt;}
.y73{bottom:252.960000pt;}
.y12e{bottom:255.128640pt;}
.y1a{bottom:256.247680pt;}
.yfb{bottom:257.059200pt;}
.y5e{bottom:258.214560pt;}
.yc0{bottom:259.108000pt;}
.y147{bottom:259.122240pt;}
.y43{bottom:261.954880pt;}
.y72{bottom:262.560000pt;}
.y166{bottom:263.355040pt;}
.yd9{bottom:266.234880pt;}
.y12d{bottom:270.493600pt;}
.y19{bottom:271.612640pt;}
.yfa{bottom:272.105440pt;}
.y5d{bottom:273.579520pt;}
.ybf{bottom:274.472960pt;}
.y42{bottom:277.319840pt;}
.yd8{bottom:278.240000pt;}
.y165{bottom:278.581440pt;}
.y146{bottom:282.163040pt;}
.y12c{bottom:285.858560pt;}
.y97{bottom:286.209600pt;}
.y18{bottom:286.977600pt;}
.yf9{bottom:287.470400pt;}
.y5c{bottom:288.944480pt;}
.ybe{bottom:289.837920pt;}
.y41{bottom:292.684800pt;}
.y164{bottom:293.946400pt;}
.y12b{bottom:301.064160pt;}
.y96{bottom:301.574560pt;}
.y17{bottom:302.342560pt;}
.yf8{bottom:303.154080pt;}
.y5b{bottom:304.150080pt;}
.ybd{bottom:305.202880pt;}
.y40{bottom:307.890400pt;}
.y12a{bottom:316.429120pt;}
.y95{bottom:316.939520pt;}
.y163{bottom:316.987200pt;}
.y16{bottom:317.548160pt;}
.yf7{bottom:318.519040pt;}
.y5a{bottom:319.515040pt;}
.ybc{bottom:320.408480pt;}
.y145{bottom:321.843680pt;}
.y3f{bottom:323.255360pt;}
.y129{bottom:331.794080pt;}
.y94{bottom:332.304480pt;}
.y15{bottom:332.913120pt;}
.yf6{bottom:333.724640pt;}
.y59{bottom:334.880000pt;}
.ybb{bottom:335.773440pt;}
.y144{bottom:337.208640pt;}
.y3e{bottom:338.620320pt;}
.y128{bottom:347.159040pt;}
.y93{bottom:347.510080pt;}
.y14{bottom:348.278080pt;}
.yf5{bottom:349.089600pt;}
.y58{bottom:349.600000pt;}
.yba{bottom:351.138400pt;}
.y143{bottom:352.573600pt;}
.y3d{bottom:353.985280pt;}
.y162{bottom:356.667840pt;}
.y57{bottom:359.200000pt;}
.y127{bottom:362.524000pt;}
.y92{bottom:362.875040pt;}
.y13{bottom:363.643040pt;}
.yf4{bottom:364.454560pt;}
.yb9{bottom:366.503360pt;}
.y142{bottom:367.779200pt;}
.y3c{bottom:369.350240pt;}
.y161{bottom:371.873440pt;}
.y126{bottom:377.729600pt;}
.y91{bottom:378.240000pt;}
.y12{bottom:379.008000pt;}
.yf3{bottom:379.819520pt;}
.yb8{bottom:381.868320pt;}
.y141{bottom:383.144160pt;}
.y3b{bottom:384.715200pt;}
.y160{bottom:387.238400pt;}
.y90{bottom:392.963520pt;}
.y125{bottom:393.094560pt;}
.y11{bottom:394.372960pt;}
.yf2{bottom:395.184480pt;}
.yb7{bottom:397.073920pt;}
.y140{bottom:398.509120pt;}
.y3a{bottom:399.920800pt;}
.y15f{bottom:402.603360pt;}
.y8f{bottom:405.120000pt;}
.y124{bottom:408.459520pt;}
.y10{bottom:409.578560pt;}
.yf1{bottom:410.549440pt;}
.yb6{bottom:412.438880pt;}
.y13f{bottom:413.874080pt;}
.y8e{bottom:414.880000pt;}
.y39{bottom:415.285760pt;}
.y15e{bottom:417.968320pt;}
.y123{bottom:423.824480pt;}
.yf{bottom:424.943520pt;}
.yf0{bottom:425.755040pt;}
.yb5{bottom:427.803840pt;}
.y13e{bottom:429.239040pt;}
.y38{bottom:430.650720pt;}
.y15d{bottom:433.333280pt;}
.y183{bottom:433.429440pt;}
.y122{bottom:439.189440pt;}
.ye{bottom:440.308480pt;}
.y112{bottom:442.468800pt;}
.yb4{bottom:444.124960pt;}
.y13d{bottom:444.444640pt;}
.y37{bottom:446.015680pt;}
.y15c{bottom:448.698240pt;}
.y182{bottom:448.794400pt;}
.y121{bottom:454.554400pt;}
.yd{bottom:455.673440pt;}
.yef{bottom:455.842720pt;}
.y111{bottom:457.833760pt;}
.yb3{bottom:459.489920pt;}
.y13c{bottom:459.809600pt;}
.y36{bottom:461.380640pt;}
.yd7{bottom:462.018080pt;}
.y15b{bottom:463.903840pt;}
.y181{bottom:464.000000pt;}
.yee{bottom:468.160000pt;}
.y120{bottom:469.760000pt;}
.yc{bottom:471.038400pt;}
.y110{bottom:473.198720pt;}
.y13b{bottom:475.174560pt;}
.yb2{bottom:475.811040pt;}
.y35{bottom:476.745600pt;}
.yd6{bottom:477.383040pt;}
.y15a{bottom:479.268800pt;}
.y180{bottom:479.340160pt;}
.yed{bottom:480.955520pt;}
.y11f{bottom:484.478560pt;}
.yb{bottom:486.403360pt;}
.y10f{bottom:488.563680pt;}
.y13a{bottom:490.539520pt;}
.yb1{bottom:491.016640pt;}
.y34{bottom:491.951200pt;}
.yd5{bottom:492.748000pt;}
.yec{bottom:493.120000pt;}
.y11e{bottom:494.080000pt;}
.y159{bottom:494.633760pt;}
.y17f{bottom:494.705120pt;}
.y10e{bottom:503.928640pt;}
.y139{bottom:505.904480pt;}
.y33{bottom:507.316160pt;}
.yb0{bottom:507.337760pt;}
.yd4{bottom:507.953600pt;}
.ya{bottom:509.284800pt;}
.y158{bottom:509.998720pt;}
.y17e{bottom:510.070080pt;}
.y10d{bottom:519.134240pt;}
.y138{bottom:521.269440pt;}
.y32{bottom:522.681120pt;}
.yaf{bottom:522.702720pt;}
.yd3{bottom:523.318560pt;}
.y8d{bottom:525.362400pt;}
.y157{bottom:525.363680pt;}
.y17d{bottom:525.435040pt;}
.y10c{bottom:534.499200pt;}
.y137{bottom:536.475040pt;}
.y31{bottom:538.046080pt;}
.yae{bottom:538.067680pt;}
.yd2{bottom:538.683520pt;}
.y8c{bottom:540.727360pt;}
.y156{bottom:540.728640pt;}
.y17c{bottom:540.800000pt;}
.y10b{bottom:549.864160pt;}
.y136{bottom:551.840000pt;}
.yad{bottom:553.113920pt;}
.y30{bottom:553.411040pt;}
.yd1{bottom:554.048480pt;}
.y8b{bottom:555.932960pt;}
.y155{bottom:555.934240pt;}
.y17b{bottom:555.959680pt;}
.y9{bottom:556.960000pt;}
.y10a{bottom:565.229120pt;}
.y2f{bottom:568.616640pt;}
.yd0{bottom:569.413440pt;}
.y8a{bottom:571.297920pt;}
.y154{bottom:571.299200pt;}
.y17a{bottom:571.324640pt;}
.y8{bottom:575.676800pt;}
.y135{bottom:579.514880pt;}
.y109{bottom:580.594080pt;}
.y2e{bottom:583.981600pt;}
.ycf{bottom:584.287040pt;}
.yac{bottom:584.800000pt;}
.y89{bottom:586.662880pt;}
.y56{bottom:586.664160pt;}
.y179{bottom:586.689600pt;}
.y7{bottom:587.840000pt;}
.y134{bottom:591.520000pt;}
.y71{bottom:593.419520pt;}
.y108{bottom:595.959040pt;}
.yab{bottom:597.440000pt;}
.yeb{bottom:601.404960pt;}
.y88{bottom:602.027840pt;}
.y55{bottom:602.029120pt;}
.y178{bottom:602.054560pt;}
.y2d{bottom:607.022400pt;}
.y6{bottom:607.520000pt;}
.y70{bottom:608.625120pt;}
.y107{bottom:611.164640pt;}
.ya8{bottom:613.440000pt;}
.yce{bottom:615.973120pt;}
.yea{bottom:616.610560pt;}
.y87{bottom:617.392800pt;}
.y54{bottom:617.394080pt;}
.y177{bottom:617.419520pt;}
.y5{bottom:622.880000pt;}
.y6f{bottom:623.990080pt;}
.y106{bottom:626.529600pt;}
.ye9{bottom:631.975520pt;}
.y86{bottom:632.598400pt;}
.y53{bottom:632.599680pt;}
.y176{bottom:632.625120pt;}
.ycd{bottom:639.013920pt;}
.y6e{bottom:639.355040pt;}
.y105{bottom:641.894560pt;}
.ye8{bottom:647.340480pt;}
.y85{bottom:647.963360pt;}
.y52{bottom:647.964640pt;}
.y175{bottom:647.990080pt;}
.y6d{bottom:654.696320pt;}
.y2c{bottom:654.697600pt;}
.y4{bottom:656.312187pt;}
.y104{bottom:657.259520pt;}
.ye7{bottom:662.705440pt;}
.y84{bottom:663.328320pt;}
.y51{bottom:663.329600pt;}
.y174{bottom:663.355040pt;}
.y6c{bottom:670.061280pt;}
.y103{bottom:672.624480pt;}
.ye6{bottom:677.751680pt;}
.y83{bottom:678.693280pt;}
.y50{bottom:678.694560pt;}
.y173{bottom:678.720000pt;}
.y3{bottom:685.434747pt;}
.y102{bottom:687.830080pt;}
.ye5{bottom:693.435360pt;}
.y82{bottom:694.058240pt;}
.y2b{bottom:694.059520pt;}
.y6b{bottom:700.631840pt;}
.ye4{bottom:708.308960pt;}
.y81{bottom:709.423200pt;}
.y2a{bottom:709.424480pt;}
.y2{bottom:714.557307pt;}
.y6a{bottom:715.678080pt;}
.y101{bottom:718.560000pt;}
.y80{bottom:724.628800pt;}
.y29{bottom:724.630080pt;}
.y100{bottom:733.283520pt;}
.y7f{bottom:739.993760pt;}
.y28{bottom:739.995040pt;}
.y1{bottom:743.679867pt;}
.y69{bottom:755.040000pt;}
.y27{bottom:755.360000pt;}
.yff{bottom:757.759867pt;}
.y26{bottom:803.040000pt;}
.h10{height:15.198667pt;}
.hd{height:15.360000pt;}
.h4{height:26.368125pt;}
.hf{height:30.560000pt;}
.he{height:30.720000pt;}
.h7{height:42.063437pt;}
.h5{height:52.134375pt;}
.h15{height:52.176615pt;}
.h18{height:52.213735pt;}
.h16{height:52.215762pt;}
.h14{height:52.255975pt;}
.h17{height:52.295655pt;}
.h3{height:52.478750pt;}
.ha{height:52.560670pt;}
.h8{height:52.573470pt;}
.h9{height:52.577950pt;}
.h12{height:52.580510pt;}
.h13{height:53.032990pt;}
.h6{height:53.535000pt;}
.h11{height:55.402500pt;}
.hc{height:61.280000pt;}
.h2{height:101.910000pt;}
.hb{height:112.934375pt;}
.h1{height:869.333333pt;}
.h0{height:869.440000pt;}
.w2{width:59.681333pt;}
.w5{width:63.200000pt;}
.w3{width:68.480000pt;}
.w7{width:76.640000pt;}
.w4{width:77.600000pt;}
.w6{width:90.080000pt;}
.w8{width:94.720000pt;}
.wa{width:95.838667pt;}
.w9{width:97.121333pt;}
.wb{width:104.958667pt;}
.w1{width:604.666667pt;}
.w0{width:604.800000pt;}
.x0{left:0.000000pt;}
.xf{left:6.880000pt;}
.x2c{left:7.840000pt;}
.x2f{left:8.960000pt;}
.x2a{left:10.880000pt;}
.x25{left:13.920000pt;}
.x27{left:16.800000pt;}
.x1f{left:18.080000pt;}
.x1e{left:20.000000pt;}
.x12{left:22.080000pt;}
.x23{left:23.200000pt;}
.x1c{left:24.960000pt;}
.x21{left:29.920000pt;}
.x31{left:35.200000pt;}
.x1a{left:37.600000pt;}
.x33{left:39.520000pt;}
.x32{left:40.640000pt;}
.x34{left:42.400000pt;}
.x30{left:44.000000pt;}
.xa{left:50.880000pt;}
.x28{left:57.440000pt;}
.xb{left:60.480000pt;}
.x1{left:64.320000pt;}
.x3{left:67.520000pt;}
.x2{left:94.560000pt;}
.x3c{left:102.716000pt;}
.x1b{left:106.720000pt;}
.x8{left:112.001120pt;}
.x35{left:118.555520pt;}
.x3f{left:125.283200pt;}
.xc{left:130.560000pt;}
.x26{left:131.680000pt;}
.x36{left:142.552480pt;}
.x29{left:152.800000pt;}
.x1d{left:184.960000pt;}
.xd{left:191.840000pt;}
.x5{left:237.440000pt;}
.xe{left:248.800000pt;}
.x2b{left:250.560000pt;}
.x11{left:263.040000pt;}
.x10{left:265.600000pt;}
.x3a{left:273.112800pt;}
.x3d{left:302.400000pt;}
.x20{left:309.120000pt;}
.x6{left:317.600000pt;}
.x13{left:320.960000pt;}
.x2d{left:345.920000pt;}
.x22{left:399.840000pt;}
.x14{left:412.800000pt;}
.x15{left:414.080000pt;}
.x16{left:427.040000pt;}
.x2e{left:442.400000pt;}
.x3b{left:456.960000pt;}
.x37{left:467.360000pt;}
.x24{left:477.120000pt;}
.x18{left:484.000000pt;}
.x4{left:500.320000pt;}
.x17{left:502.880000pt;}
.x19{left:510.240000pt;}
.x38{left:527.040000pt;}
.x7{left:538.080000pt;}
.x9{left:540.320000pt;}
.x39{left:558.240000pt;}
.x3e{left:564.320000pt;}
.x40{left:576.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; }
  