
    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_91013c7e8ef45a4642847315.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e1b93251a5ad768e3f5357ab.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_73baba885847ff2419472608.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_27c52a90c9a95fa65db385ce.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ac892177415c14f4d0631dd5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bdc9c5a487041e2fc2f193c9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_34b5cb19d0ad00496523141f.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_b8563b581cc047d1906b6b2a.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_e49d4e4ead983d579de0e596.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f4141129f885bf40e8849eb1.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_59eb3361244fcf1f9f22dcd7.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b81eec8acb5027cc14fcf3c0.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_0e736d5314d7ff3972aad75a.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_d70b58fcb91dcc84f782ffa7.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_d04453c70d146fccba544f98.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_941ef048d366ebdb995dd4d1.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_f84bf14c697862f3633c8869.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_68f4a909e84345e6b220a8e8.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.402354;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_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_7840a9d374473199fa85558a.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_16e5a9b816c37e51990dfe3c.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_30c6cadecc3726943fd8850c.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_3d8fb7ff493afc6bcbae0c84.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_0cfb8f3ed76689d4dfaf34ce.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;}
.m21{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.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);}
.m26{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.867500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.867500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.867500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.970000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.970000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.970000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(3.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.362500,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(4.922500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.922500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.922500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-8.512381px;}
.fc0{color:transparent;}
.fsa{font-size:18.000000px;}
.fs9{font-size:30.000000px;}
.fsd{font-size:36.000000px;}
.fse{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fsc{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:78.000000px;}
.fs7{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.fsb{font-size:96.000000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y102{bottom:14.848500px;}
.y100{bottom:24.598500px;}
.y101{bottom:24.898500px;}
.yff{bottom:24.973500px;}
.y16f{bottom:38.548500px;}
.y170{bottom:38.923500px;}
.y16e{bottom:48.598500px;}
.y147{bottom:69.148500px;}
.y166{bottom:73.500000px;}
.y167{bottom:73.798500px;}
.y168{bottom:74.923500px;}
.y164{bottom:83.173500px;}
.y165{bottom:85.723500px;}
.y146{bottom:91.500000px;}
.yfe{bottom:96.375000px;}
.yf2{bottom:96.523500px;}
.y36{bottom:96.673500px;}
.yf3{bottom:96.898500px;}
.yfd{bottom:98.548500px;}
.yfc{bottom:99.598500px;}
.yf8{bottom:99.750000px;}
.yf7{bottom:100.500000px;}
.yf6{bottom:100.875000px;}
.yfb{bottom:101.098500px;}
.y9c{bottom:101.923500px;}
.yfa{bottom:103.573500px;}
.y9d{bottom:104.098500px;}
.y145{bottom:111.973500px;}
.yf1{bottom:113.473500px;}
.yf9{bottom:117.900000px;}
.yf5{bottom:119.923500px;}
.yf4{bottom:120.000000px;}
.y2a{bottom:120.073500px;}
.y9a{bottom:122.098500px;}
.y9b{bottom:124.198500px;}
.yee{bottom:130.348500px;}
.yef{bottom:130.423500px;}
.yf0{bottom:130.723500px;}
.y144{bottom:132.073500px;}
.y29{bottom:140.173500px;}
.y99{bottom:141.223500px;}
.y35{bottom:147.448500px;}
.y143{bottom:151.948500px;}
.y28{bottom:159.673500px;}
.y98{bottom:162.375000px;}
.yed{bottom:166.798500px;}
.yeb{bottom:167.400000px;}
.yec{bottom:167.473500px;}
.y34{bottom:170.773500px;}
.y142{bottom:175.275000px;}
.y27{bottom:180.150000px;}
.y96{bottom:182.548500px;}
.y97{bottom:184.348500px;}
.ye8{bottom:186.900000px;}
.ye9{bottom:187.198500px;}
.yea{bottom:187.573500px;}
.y33{bottom:188.773500px;}
.y141{bottom:194.400000px;}
.y26{bottom:200.323500px;}
.y95{bottom:202.423500px;}
.ye7{bottom:207.000000px;}
.ye6{bottom:207.073500px;}
.ye4{bottom:207.375000px;}
.ye5{bottom:207.448500px;}
.y140{bottom:214.198500px;}
.y13f{bottom:218.473500px;}
.y13e{bottom:220.348500px;}
.y25{bottom:220.500000px;}
.y93{bottom:222.223500px;}
.y94{bottom:223.948500px;}
.ye3{bottom:227.548500px;}
.ye2{bottom:227.923500px;}
.y13d{bottom:231.150000px;}
.y13c{bottom:234.000000px;}
.y16d{bottom:235.125000px;}
.y16c{bottom:235.798500px;}
.y24{bottom:240.673500px;}
.y92{bottom:243.000000px;}
.ye1{bottom:247.423500px;}
.y13b{bottom:254.548500px;}
.y23{bottom:260.473500px;}
.y91{bottom:263.173500px;}
.ye0{bottom:267.223500px;}
.ydf{bottom:267.523500px;}
.yde{bottom:267.598500px;}
.ydd{bottom:267.898500px;}
.y13a{bottom:272.923500px;}
.y139{bottom:274.723500px;}
.y138{bottom:276.523500px;}
.y22{bottom:280.573500px;}
.y32{bottom:281.700000px;}
.y90{bottom:284.773500px;}
.ydc{bottom:287.698500px;}
.y137{bottom:295.198500px;}
.y21{bottom:300.448500px;}
.y8e{bottom:303.523500px;}
.y8f{bottom:305.323500px;}
.ydb{bottom:307.875000px;}
.yd9{bottom:308.250000px;}
.yda{bottom:308.548500px;}
.y136{bottom:314.698500px;}
.y20{bottom:320.625000px;}
.y8c{bottom:323.323500px;}
.y8d{bottom:325.500000px;}
.yd8{bottom:327.673500px;}
.y135{bottom:335.098500px;}
.y1f{bottom:341.098500px;}
.y8a{bottom:344.548500px;}
.y8b{bottom:345.298500px;}
.yd7{bottom:347.773500px;}
.y134{bottom:355.273500px;}
.y1e{bottom:360.898500px;}
.y88{bottom:365.098500px;}
.y89{bottom:366.523500px;}
.yd6{bottom:367.648500px;}
.y133{bottom:375.448500px;}
.y1d{bottom:381.000000px;}
.y81{bottom:384.523500px;}
.y82{bottom:384.898500px;}
.y83{bottom:385.198500px;}
.y84{bottom:385.573500px;}
.y86{bottom:385.948500px;}
.y85{bottom:386.023500px;}
.y87{bottom:386.323500px;}
.yd5{bottom:387.750000px;}
.y132{bottom:395.323500px;}
.y1c{bottom:400.875000px;}
.y7c{bottom:404.698500px;}
.y7d{bottom:405.073500px;}
.y7e{bottom:405.448500px;}
.y7f{bottom:405.750000px;}
.y80{bottom:406.198500px;}
.yd4{bottom:407.173500px;}
.yd3{bottom:407.923500px;}
.y131{bottom:415.798500px;}
.y1b{bottom:420.973500px;}
.y78{bottom:424.500000px;}
.y79{bottom:425.548500px;}
.y7a{bottom:426.298500px;}
.y7b{bottom:426.673500px;}
.yd2{bottom:428.098500px;}
.y130{bottom:435.598500px;}
.y1a{bottom:441.148500px;}
.y31{bottom:444.073500px;}
.y75{bottom:444.598500px;}
.y76{bottom:445.348500px;}
.y77{bottom:446.098500px;}
.yd1{bottom:448.273500px;}
.y12f{bottom:455.698500px;}
.y19{bottom:460.948500px;}
.y73{bottom:464.773500px;}
.y74{bottom:466.273500px;}
.yd0{bottom:467.023500px;}
.ycf{bottom:467.323500px;}
.yce{bottom:467.698500px;}
.ycd{bottom:468.073500px;}
.y12e{bottom:475.198500px;}
.y12d{bottom:479.098500px;}
.y12c{bottom:479.173500px;}
.y18{bottom:481.125000px;}
.y6f{bottom:484.273500px;}
.y6e{bottom:484.573500px;}
.y70{bottom:484.948500px;}
.y71{bottom:486.000000px;}
.y72{bottom:486.073500px;}
.ycc{bottom:487.798500px;}
.y17{bottom:500.923500px;}
.y12b{bottom:501.073500px;}
.y6b{bottom:504.750000px;}
.y6c{bottom:505.500000px;}
.y6d{bottom:506.173500px;}
.ycb{bottom:506.923500px;}
.yca{bottom:507.673500px;}
.y12a{bottom:517.648500px;}
.y16{bottom:520.798500px;}
.y129{bottom:522.000000px;}
.y67{bottom:524.548500px;}
.y68{bottom:525.298500px;}
.y69{bottom:525.673500px;}
.y6a{bottom:525.973500px;}
.yc9{bottom:528.148500px;}
.y30{bottom:530.775000px;}
.y128{bottom:537.823500px;}
.y15{bottom:540.898500px;}
.y64{bottom:544.348500px;}
.y63{bottom:544.723500px;}
.y65{bottom:545.098500px;}
.y66{bottom:545.773500px;}
.yc8{bottom:546.898500px;}
.yc7{bottom:547.273500px;}
.y16b{bottom:547.575000px;}
.yc6{bottom:548.323500px;}
.yc5{bottom:548.698500px;}
.yc4{bottom:549.448500px;}
.y127{bottom:556.198500px;}
.y126{bottom:558.000000px;}
.y125{bottom:560.098500px;}
.y14{bottom:561.000000px;}
.y2d{bottom:561.750000px;}
.y2e{bottom:561.825000px;}
.y2f{bottom:562.500000px;}
.y62{bottom:565.273500px;}
.yc3{bottom:567.750000px;}
.yc2{bottom:568.500000px;}
.yc1{bottom:568.875000px;}
.y124{bottom:577.500000px;}
.y13{bottom:581.173500px;}
.y5f{bottom:585.000000px;}
.y60{bottom:585.750000px;}
.y61{bottom:586.125000px;}
.yc0{bottom:588.298500px;}
.y2b{bottom:592.048500px;}
.y2c{bottom:594.525000px;}
.y169{bottom:596.173500px;}
.y16a{bottom:596.473500px;}
.y123{bottom:597.973500px;}
.y12{bottom:600.973500px;}
.y11{bottom:601.048500px;}
.y5d{bottom:604.875000px;}
.y5e{bottom:605.173500px;}
.ybf{bottom:608.473500px;}
.y122{bottom:615.223500px;}
.y121{bottom:616.348500px;}
.y120{bottom:619.500000px;}
.y163{bottom:620.398500px;}
.y10{bottom:620.773500px;}
.yf{bottom:620.848500px;}
.y5a{bottom:625.048500px;}
.y5b{bottom:625.348500px;}
.y5c{bottom:625.723500px;}
.ybe{bottom:628.200000px;}
.y11f{bottom:637.950000px;}
.ye{bottom:641.323500px;}
.y58{bottom:645.150000px;}
.y59{bottom:645.525000px;}
.ybd{bottom:648.448500px;}
.y11e{bottom:655.198500px;}
.y11d{bottom:655.875000px;}
.y161{bottom:658.875000px;}
.y162{bottom:659.625000px;}
.y11c{bottom:659.848500px;}
.yd{bottom:661.875000px;}
.y57{bottom:666.750000px;}
.ybc{bottom:667.125000px;}
.ybb{bottom:667.500000px;}
.yba{bottom:667.875000px;}
.yb9{bottom:668.173500px;}
.yb8{bottom:668.625000px;}
.yb7{bottom:669.298500px;}
.y11b{bottom:678.223500px;}
.yc{bottom:681.298500px;}
.y52{bottom:687.000000px;}
.y53{bottom:687.298500px;}
.yb6{bottom:687.598500px;}
.y54{bottom:687.973500px;}
.y56{bottom:688.348500px;}
.y55{bottom:688.423500px;}
.yb5{bottom:688.723500px;}
.yb4{bottom:689.775000px;}
.y11a{bottom:695.848500px;}
.y15f{bottom:698.473500px;}
.y119{bottom:699.073500px;}
.y160{bottom:699.973500px;}
.y118{bottom:700.948500px;}
.yb{bottom:701.098500px;}
.yb3{bottom:707.098500px;}
.y50{bottom:707.775000px;}
.y51{bottom:707.848500px;}
.yb2{bottom:708.525000px;}
.y15e{bottom:718.275000px;}
.y117{bottom:720.000000px;}
.ya{bottom:721.573500px;}
.y4d{bottom:727.573500px;}
.y4e{bottom:727.650000px;}
.y4f{bottom:727.948500px;}
.yb1{bottom:728.698500px;}
.yb0{bottom:729.375000px;}
.y15d{bottom:738.448500px;}
.y116{bottom:740.173500px;}
.y9{bottom:742.125000px;}
.y4a{bottom:747.375000px;}
.y4b{bottom:747.750000px;}
.y4c{bottom:748.125000px;}
.yaf{bottom:748.500000px;}
.y15a{bottom:757.500000px;}
.y15b{bottom:757.948500px;}
.y15c{bottom:759.375000px;}
.y115{bottom:760.275000px;}
.y8{bottom:762.298500px;}
.y45{bottom:766.875000px;}
.y46{bottom:767.173500px;}
.y47{bottom:767.250000px;}
.y48{bottom:767.548500px;}
.y49{bottom:767.923500px;}
.yae{bottom:769.348500px;}
.y155{bottom:777.675000px;}
.y156{bottom:778.425000px;}
.y157{bottom:778.800000px;}
.y158{bottom:779.098500px;}
.y159{bottom:779.848500px;}
.y7{bottom:781.800000px;}
.y5{bottom:782.098500px;}
.y6{bottom:782.473500px;}
.y114{bottom:785.175000px;}
.y43{bottom:787.050000px;}
.y44{bottom:787.348500px;}
.yad{bottom:788.775000px;}
.y152{bottom:798.223500px;}
.y113{bottom:798.448500px;}
.y153{bottom:799.650000px;}
.y154{bottom:799.723500px;}
.y112{bottom:799.875000px;}
.y111{bottom:803.175000px;}
.yac{bottom:806.848500px;}
.y40{bottom:807.150000px;}
.y42{bottom:807.223500px;}
.y41{bottom:807.525000px;}
.yab{bottom:808.573500px;}
.yaa{bottom:810.375000px;}
.y151{bottom:818.400000px;}
.y110{bottom:820.425000px;}
.y10f{bottom:824.775000px;}
.y10e{bottom:825.448500px;}
.y10d{bottom:826.198500px;}
.y10c{bottom:826.573500px;}
.y3e{bottom:827.323500px;}
.y3f{bottom:827.400000px;}
.y3d{bottom:827.698500px;}
.ya9{bottom:828.000000px;}
.ya8{bottom:829.500000px;}
.ya7{bottom:830.250000px;}
.y4{bottom:836.775000px;}
.y3{bottom:836.848500px;}
.y1{bottom:837.150000px;}
.y2{bottom:837.223500px;}
.y14e{bottom:837.900000px;}
.y14f{bottom:839.250000px;}
.y150{bottom:839.625000px;}
.y10b{bottom:842.025000px;}
.ya6{bottom:846.750000px;}
.ya5{bottom:848.550000px;}
.y3c{bottom:849.300000px;}
.y14d{bottom:858.300000px;}
.y10a{bottom:859.275000px;}
.y109{bottom:862.198500px;}
.y108{bottom:864.375000px;}
.ya4{bottom:867.598500px;}
.y3b{bottom:869.098500px;}
.ya3{bottom:869.775000px;}
.ya2{bottom:870.150000px;}
.ya1{bottom:870.525000px;}
.y14c{bottom:878.473500px;}
.y107{bottom:887.775000px;}
.ya0{bottom:888.900000px;}
.y3a{bottom:889.275000px;}
.y14a{bottom:897.223500px;}
.y14b{bottom:898.348500px;}
.y106{bottom:902.848500px;}
.y105{bottom:906.448500px;}
.y104{bottom:907.948500px;}
.y9f{bottom:908.698500px;}
.y39{bottom:909.375000px;}
.y38{bottom:909.448500px;}
.y148{bottom:935.400000px;}
.y149{bottom:935.698500px;}
.y103{bottom:942.823500px;}
.y9e{bottom:945.750000px;}
.y37{bottom:946.875000px;}
.hc{height:17.666016px;}
.hb{height:29.428711px;}
.h11{height:29.443359px;}
.hd{height:31.289062px;}
.h24{height:35.332031px;}
.h28{height:41.220703px;}
.h25{height:43.804688px;}
.h18{height:47.085938px;}
.h7{height:47.109375px;}
.h27{height:48.375000px;}
.h20{height:49.336436px;}
.h1c{height:50.062500px;}
.ha{height:52.998047px;}
.h1d{height:56.320312px;}
.h16{height:58.886719px;}
.h14{height:62.578125px;}
.h21{height:64.743164px;}
.h6{height:64.775391px;}
.h1a{height:68.835938px;}
.hf{height:70.664062px;}
.h2{height:72.562500px;}
.he{height:76.552734px;}
.h1{height:81.351562px;}
.h13{height:82.400391px;}
.h8{height:82.441406px;}
.h5{height:93.867188px;}
.h17{height:94.218750px;}
.h10{height:100.125000px;}
.h4{height:108.843750px;}
.h3{height:137.671875px;}
.h26{height:675.000000px;}
.h23{height:676.500000px;}
.h9{height:679.500000px;}
.h1e{height:687.000000px;}
.h12{height:1009.500000px;}
.h1b{height:1014.000000px;}
.h15{height:1018.500000px;}
.h22{height:1020.000000px;}
.h0{height:1021.500000px;}
.h1f{height:1026.000000px;}
.h19{height:1036.500000px;}
.w2{width:637.500000px;}
.w7{width:660.000000px;}
.w6{width:663.000000px;}
.w0{width:664.500000px;}
.w3{width:666.000000px;}
.w4{width:700.500000px;}
.w9{width:1006.500000px;}
.w8{width:1011.000000px;}
.w5{width:1014.000000px;}
.w1{width:1021.500000px;}
.x0{left:0.000000px;}
.xcc{left:38.550000px;}
.xcb{left:39.600000px;}
.xc6{left:40.650000px;}
.xc5{left:42.150000px;}
.xa5{left:43.200000px;}
.xb9{left:44.250000px;}
.xb6{left:45.375000px;}
.x28{left:47.550000px;}
.x32{left:49.348500px;}
.x44{left:51.450000px;}
.x3f{left:53.250000px;}
.x2c{left:54.375000px;}
.x73{left:55.425000px;}
.xab{left:60.825000px;}
.xe1{left:67.350000px;}
.xca{left:69.825000px;}
.xc3{left:70.950000px;}
.xbb{left:73.800000px;}
.xb7{left:75.225000px;}
.x16{left:78.150000px;}
.xc{left:79.200000px;}
.x17{left:80.250000px;}
.x12{left:81.375000px;}
.x77{left:82.425000px;}
.xc9{left:84.225000px;}
.x74{left:85.350000px;}
.xd0{left:87.150000px;}
.xd6{left:88.200000px;}
.x4f{left:92.550000px;}
.xc2{left:94.350000px;}
.x39{left:97.573500px;}
.x33{left:102.975000px;}
.x1{left:104.775000px;}
.x9{left:105.823500px;}
.x8f{left:106.948500px;}
.x15{left:109.800000px;}
.xd{left:110.850000px;}
.x1a{left:112.650000px;}
.x71{left:114.448500px;}
.x8b{left:115.575000px;}
.xd2{left:117.375000px;}
.xd8{left:119.175000px;}
.xc4{left:121.650000px;}
.x2d{left:123.825000px;}
.x6b{left:125.625000px;}
.x3a{left:127.050000px;}
.x95{left:129.975000px;}
.x48{left:131.400000px;}
.xa2{left:132.825000px;}
.x50{left:134.250000px;}
.x78{left:136.425000px;}
.x54{left:138.225000px;}
.x2e{left:141.450000px;}
.x45{left:142.950000px;}
.x72{left:145.800000px;}
.x34{left:150.150000px;}
.x9c{left:153.750000px;}
.x79{left:162.750000px;}
.x51{left:164.175000px;}
.x6c{left:165.975000px;}
.x5c{left:168.150000px;}
.x96{left:169.200000px;}
.x2{left:171.375000px;}
.x49{left:172.800000px;}
.x9d{left:176.025000px;}
.x7a{left:183.975000px;}
.x3b{left:185.025000px;}
.x7b{left:186.450000px;}
.x3{left:189.000000px;}
.xa6{left:195.148500px;}
.x2f{left:196.950000px;}
.x82{left:198.750000px;}
.xa7{left:201.225000px;}
.xac{left:202.350000px;}
.xa8{left:204.450000px;}
.x4a{left:205.950000px;}
.xe3{left:208.425000px;}
.xa9{left:211.350000px;}
.x84{left:217.050000px;}
.xbc{left:219.600000px;}
.x22{left:221.023500px;}
.x67{left:223.575000px;}
.x4{left:224.625000px;}
.x55{left:226.425000px;}
.x5d{left:230.775000px;}
.x7d{left:234.375000px;}
.x98{left:237.975000px;}
.x92{left:241.950000px;}
.x46{left:243.000000px;}
.x97{left:245.175000px;}
.x64{left:253.800000px;}
.xe4{left:255.600000px;}
.x7c{left:257.400000px;}
.x4b{left:259.200000px;}
.x83{left:262.050000px;}
.x5{left:264.975000px;}
.x68{left:266.775000px;}
.xa4{left:268.200000px;}
.xaf{left:270.000000px;}
.x27{left:271.050000px;}
.xad{left:281.175000px;}
.x88{left:288.750000px;}
.x4c{left:290.550000px;}
.x89{left:294.825000px;}
.x35{left:296.250000px;}
.xbd{left:298.425000px;}
.xb8{left:299.850000px;}
.xc7{left:302.400000px;}
.x85{left:303.450000px;}
.x59{left:305.625000px;}
.x76{left:306.750000px;}
.x29{left:308.850000px;}
.x8a{left:311.025000px;}
.xa{left:315.375000px;}
.x60{left:316.425000px;}
.x61{left:318.225000px;}
.xce{left:325.800000px;}
.xc1{left:329.775000px;}
.xcf{left:335.850000px;}
.xa0{left:339.825000px;}
.x5e{left:342.375000px;}
.x57{left:345.600000px;}
.xae{left:349.200000px;}
.xaa{left:352.425000px;}
.x4d{left:354.225000px;}
.x6{left:358.950000px;}
.x36{left:362.850000px;}
.x65{left:363.975000px;}
.x80{left:365.025000px;}
.x69{left:370.800000px;}
.xa3{left:372.225000px;}
.x41{left:378.000000px;}
.xd3{left:379.050000px;}
.xb0{left:381.600000px;}
.x8d{left:382.650000px;}
.xb{left:383.775000px;}
.x1b{left:387.000000px;}
.x5a{left:389.548500px;}
.x3c{left:395.625000px;}
.x62{left:397.798500px;}
.xba{left:400.350000px;}
.x86{left:402.450000px;}
.xbf{left:404.250000px;}
.x94{left:405.375000px;}
.x93{left:408.975000px;}
.x6d{left:411.450000px;}
.x6e{left:415.048500px;}
.xa1{left:416.850000px;}
.x1f{left:421.200000px;}
.x6a{left:423.375000px;}
.xb1{left:425.548500px;}
.x26{left:427.350000px;}
.x52{left:430.950000px;}
.x30{left:434.548500px;}
.x13{left:436.650000px;}
.xd1{left:437.775000px;}
.x7f{left:439.200000px;}
.xc0{left:440.625000px;}
.x42{left:443.850000px;}
.x56{left:449.250000px;}
.x6f{left:451.798500px;}
.x8e{left:455.025000px;}
.x43{left:460.800000px;}
.xbe{left:466.575000px;}
.x31{left:468.375000px;}
.x9e{left:469.800000px;}
.xd4{left:471.225000px;}
.x58{left:473.025000px;}
.x90{left:475.575000px;}
.xd5{left:477.000000px;}
.x63{left:483.150000px;}
.x18{left:488.850000px;}
.x3d{left:491.025000px;}
.x99{left:492.150000px;}
.x7{left:493.200000px;}
.x53{left:494.250000px;}
.x66{left:497.850000px;}
.x1c{left:500.400000px;}
.x5f{left:504.000000px;}
.x19{left:506.850000px;}
.x9a{left:511.200000px;}
.x40{left:512.625000px;}
.x75{left:515.175000px;}
.x87{left:517.650000px;}
.xcd{left:521.625000px;}
.x3e{left:523.425000px;}
.x1d{left:525.225000px;}
.x70{left:527.775000px;}
.x8{left:532.050000px;}
.xc8{left:533.850000px;}
.x4e{left:536.775000px;}
.x38{left:538.200000px;}
.x37{left:541.800000px;}
.x47{left:543.600000px;}
.x9f{left:547.575000px;}
.x2a{left:551.175000px;}
.x91{left:553.650000px;}
.x14{left:556.200000px;}
.x1e{left:558.750000px;}
.x5b{left:562.650000px;}
.x2b{left:567.000000px;}
.xb2{left:568.050000px;}
.x9b{left:571.350000px;}
.xd7{left:574.950000px;}
.xe{left:576.750000px;}
.x8c{left:579.975000px;}
.xf{left:581.400000px;}
.x10{left:582.825000px;}
.x11{left:586.425000px;}
.x81{left:591.150000px;}
.x7e{left:599.775000px;}
.x20{left:631.800000px;}
.xde{left:692.250000px;}
.xb3{left:721.425000px;}
.x24{left:722.550000px;}
.xdf{left:730.800000px;}
.xd9{left:745.950000px;}
.x23{left:748.800000px;}
.xe0{left:770.400000px;}
.x25{left:787.348500px;}
.xda{left:788.775000px;}
.xb4{left:790.200000px;}
.xe2{left:795.598500px;}
.xdb{left:806.775000px;}
.xe5{left:808.950000px;}
.xb5{left:817.200000px;}
.xdc{left:826.950000px;}
.xe6{left:836.250000px;}
.xdd{left:853.950000px;}
.x21{left:871.575000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-7.566561pt;}
.fsa{font-size:16.000000pt;}
.fs9{font-size:26.666667pt;}
.fsd{font-size:32.000000pt;}
.fse{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fsc{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:69.333333pt;}
.fs7{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.fsb{font-size:85.333333pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y102{bottom:13.198667pt;}
.y100{bottom:21.865333pt;}
.y101{bottom:22.132000pt;}
.yff{bottom:22.198667pt;}
.y16f{bottom:34.265333pt;}
.y170{bottom:34.598667pt;}
.y16e{bottom:43.198667pt;}
.y147{bottom:61.465333pt;}
.y166{bottom:65.333333pt;}
.y167{bottom:65.598667pt;}
.y168{bottom:66.598667pt;}
.y164{bottom:73.932000pt;}
.y165{bottom:76.198667pt;}
.y146{bottom:81.333333pt;}
.yfe{bottom:85.666667pt;}
.yf2{bottom:85.798667pt;}
.y36{bottom:85.932000pt;}
.yf3{bottom:86.132000pt;}
.yfd{bottom:87.598667pt;}
.yfc{bottom:88.532000pt;}
.yf8{bottom:88.666667pt;}
.yf7{bottom:89.333333pt;}
.yf6{bottom:89.666667pt;}
.yfb{bottom:89.865333pt;}
.y9c{bottom:90.598667pt;}
.yfa{bottom:92.065333pt;}
.y9d{bottom:92.532000pt;}
.y145{bottom:99.532000pt;}
.yf1{bottom:100.865333pt;}
.yf9{bottom:104.800000pt;}
.yf5{bottom:106.598667pt;}
.yf4{bottom:106.666667pt;}
.y2a{bottom:106.732000pt;}
.y9a{bottom:108.532000pt;}
.y9b{bottom:110.398667pt;}
.yee{bottom:115.865333pt;}
.yef{bottom:115.932000pt;}
.yf0{bottom:116.198667pt;}
.y144{bottom:117.398667pt;}
.y29{bottom:124.598667pt;}
.y99{bottom:125.532000pt;}
.y35{bottom:131.065333pt;}
.y143{bottom:135.065333pt;}
.y28{bottom:141.932000pt;}
.y98{bottom:144.333333pt;}
.yed{bottom:148.265333pt;}
.yeb{bottom:148.800000pt;}
.yec{bottom:148.865333pt;}
.y34{bottom:151.798667pt;}
.y142{bottom:155.800000pt;}
.y27{bottom:160.133333pt;}
.y96{bottom:162.265333pt;}
.y97{bottom:163.865333pt;}
.ye8{bottom:166.133333pt;}
.ye9{bottom:166.398667pt;}
.yea{bottom:166.732000pt;}
.y33{bottom:167.798667pt;}
.y141{bottom:172.800000pt;}
.y26{bottom:178.065333pt;}
.y95{bottom:179.932000pt;}
.ye7{bottom:184.000000pt;}
.ye6{bottom:184.065333pt;}
.ye4{bottom:184.333333pt;}
.ye5{bottom:184.398667pt;}
.y140{bottom:190.398667pt;}
.y13f{bottom:194.198667pt;}
.y13e{bottom:195.865333pt;}
.y25{bottom:196.000000pt;}
.y93{bottom:197.532000pt;}
.y94{bottom:199.065333pt;}
.ye3{bottom:202.265333pt;}
.ye2{bottom:202.598667pt;}
.y13d{bottom:205.466667pt;}
.y13c{bottom:208.000000pt;}
.y16d{bottom:209.000000pt;}
.y16c{bottom:209.598667pt;}
.y24{bottom:213.932000pt;}
.y92{bottom:216.000000pt;}
.ye1{bottom:219.932000pt;}
.y13b{bottom:226.265333pt;}
.y23{bottom:231.532000pt;}
.y91{bottom:233.932000pt;}
.ye0{bottom:237.532000pt;}
.ydf{bottom:237.798667pt;}
.yde{bottom:237.865333pt;}
.ydd{bottom:238.132000pt;}
.y13a{bottom:242.598667pt;}
.y139{bottom:244.198667pt;}
.y138{bottom:245.798667pt;}
.y22{bottom:249.398667pt;}
.y32{bottom:250.400000pt;}
.y90{bottom:253.132000pt;}
.ydc{bottom:255.732000pt;}
.y137{bottom:262.398667pt;}
.y21{bottom:267.065333pt;}
.y8e{bottom:269.798667pt;}
.y8f{bottom:271.398667pt;}
.ydb{bottom:273.666667pt;}
.yd9{bottom:274.000000pt;}
.yda{bottom:274.265333pt;}
.y136{bottom:279.732000pt;}
.y20{bottom:285.000000pt;}
.y8c{bottom:287.398667pt;}
.y8d{bottom:289.333333pt;}
.yd8{bottom:291.265333pt;}
.y135{bottom:297.865333pt;}
.y1f{bottom:303.198667pt;}
.y8a{bottom:306.265333pt;}
.y8b{bottom:306.932000pt;}
.yd7{bottom:309.132000pt;}
.y134{bottom:315.798667pt;}
.y1e{bottom:320.798667pt;}
.y88{bottom:324.532000pt;}
.y89{bottom:325.798667pt;}
.yd6{bottom:326.798667pt;}
.y133{bottom:333.732000pt;}
.y1d{bottom:338.666667pt;}
.y81{bottom:341.798667pt;}
.y82{bottom:342.132000pt;}
.y83{bottom:342.398667pt;}
.y84{bottom:342.732000pt;}
.y86{bottom:343.065333pt;}
.y85{bottom:343.132000pt;}
.y87{bottom:343.398667pt;}
.yd5{bottom:344.666667pt;}
.y132{bottom:351.398667pt;}
.y1c{bottom:356.333333pt;}
.y7c{bottom:359.732000pt;}
.y7d{bottom:360.065333pt;}
.y7e{bottom:360.398667pt;}
.y7f{bottom:360.666667pt;}
.y80{bottom:361.065333pt;}
.yd4{bottom:361.932000pt;}
.yd3{bottom:362.598667pt;}
.y131{bottom:369.598667pt;}
.y1b{bottom:374.198667pt;}
.y78{bottom:377.333333pt;}
.y79{bottom:378.265333pt;}
.y7a{bottom:378.932000pt;}
.y7b{bottom:379.265333pt;}
.yd2{bottom:380.532000pt;}
.y130{bottom:387.198667pt;}
.y1a{bottom:392.132000pt;}
.y31{bottom:394.732000pt;}
.y75{bottom:395.198667pt;}
.y76{bottom:395.865333pt;}
.y77{bottom:396.532000pt;}
.yd1{bottom:398.465333pt;}
.y12f{bottom:405.065333pt;}
.y19{bottom:409.732000pt;}
.y73{bottom:413.132000pt;}
.y74{bottom:414.465333pt;}
.yd0{bottom:415.132000pt;}
.ycf{bottom:415.398667pt;}
.yce{bottom:415.732000pt;}
.ycd{bottom:416.065333pt;}
.y12e{bottom:422.398667pt;}
.y12d{bottom:425.865333pt;}
.y12c{bottom:425.932000pt;}
.y18{bottom:427.666667pt;}
.y6f{bottom:430.465333pt;}
.y6e{bottom:430.732000pt;}
.y70{bottom:431.065333pt;}
.y71{bottom:432.000000pt;}
.y72{bottom:432.065333pt;}
.ycc{bottom:433.598667pt;}
.y17{bottom:445.265333pt;}
.y12b{bottom:445.398667pt;}
.y6b{bottom:448.666667pt;}
.y6c{bottom:449.333333pt;}
.y6d{bottom:449.932000pt;}
.ycb{bottom:450.598667pt;}
.yca{bottom:451.265333pt;}
.y12a{bottom:460.132000pt;}
.y16{bottom:462.932000pt;}
.y129{bottom:464.000000pt;}
.y67{bottom:466.265333pt;}
.y68{bottom:466.932000pt;}
.y69{bottom:467.265333pt;}
.y6a{bottom:467.532000pt;}
.yc9{bottom:469.465333pt;}
.y30{bottom:471.800000pt;}
.y128{bottom:478.065333pt;}
.y15{bottom:480.798667pt;}
.y64{bottom:483.865333pt;}
.y63{bottom:484.198667pt;}
.y65{bottom:484.532000pt;}
.y66{bottom:485.132000pt;}
.yc8{bottom:486.132000pt;}
.yc7{bottom:486.465333pt;}
.y16b{bottom:486.733333pt;}
.yc6{bottom:487.398667pt;}
.yc5{bottom:487.732000pt;}
.yc4{bottom:488.398667pt;}
.y127{bottom:494.398667pt;}
.y126{bottom:496.000000pt;}
.y125{bottom:497.865333pt;}
.y14{bottom:498.666667pt;}
.y2d{bottom:499.333333pt;}
.y2e{bottom:499.400000pt;}
.y2f{bottom:500.000000pt;}
.y62{bottom:502.465333pt;}
.yc3{bottom:504.666667pt;}
.yc2{bottom:505.333333pt;}
.yc1{bottom:505.666667pt;}
.y124{bottom:513.333333pt;}
.y13{bottom:516.598667pt;}
.y5f{bottom:520.000000pt;}
.y60{bottom:520.666667pt;}
.y61{bottom:521.000000pt;}
.yc0{bottom:522.932000pt;}
.y2b{bottom:526.265333pt;}
.y2c{bottom:528.466667pt;}
.y169{bottom:529.932000pt;}
.y16a{bottom:530.198667pt;}
.y123{bottom:531.532000pt;}
.y12{bottom:534.198667pt;}
.y11{bottom:534.265333pt;}
.y5d{bottom:537.666667pt;}
.y5e{bottom:537.932000pt;}
.ybf{bottom:540.865333pt;}
.y122{bottom:546.865333pt;}
.y121{bottom:547.865333pt;}
.y120{bottom:550.666667pt;}
.y163{bottom:551.465333pt;}
.y10{bottom:551.798667pt;}
.yf{bottom:551.865333pt;}
.y5a{bottom:555.598667pt;}
.y5b{bottom:555.865333pt;}
.y5c{bottom:556.198667pt;}
.ybe{bottom:558.400000pt;}
.y11f{bottom:567.066667pt;}
.ye{bottom:570.065333pt;}
.y58{bottom:573.466667pt;}
.y59{bottom:573.800000pt;}
.ybd{bottom:576.398667pt;}
.y11e{bottom:582.398667pt;}
.y11d{bottom:583.000000pt;}
.y161{bottom:585.666667pt;}
.y162{bottom:586.333333pt;}
.y11c{bottom:586.532000pt;}
.yd{bottom:588.333333pt;}
.y57{bottom:592.666667pt;}
.ybc{bottom:593.000000pt;}
.ybb{bottom:593.333333pt;}
.yba{bottom:593.666667pt;}
.yb9{bottom:593.932000pt;}
.yb8{bottom:594.333333pt;}
.yb7{bottom:594.932000pt;}
.y11b{bottom:602.865333pt;}
.yc{bottom:605.598667pt;}
.y52{bottom:610.666667pt;}
.y53{bottom:610.932000pt;}
.yb6{bottom:611.198667pt;}
.y54{bottom:611.532000pt;}
.y56{bottom:611.865333pt;}
.y55{bottom:611.932000pt;}
.yb5{bottom:612.198667pt;}
.yb4{bottom:613.133333pt;}
.y11a{bottom:618.532000pt;}
.y15f{bottom:620.865333pt;}
.y119{bottom:621.398667pt;}
.y160{bottom:622.198667pt;}
.y118{bottom:623.065333pt;}
.yb{bottom:623.198667pt;}
.yb3{bottom:628.532000pt;}
.y50{bottom:629.133333pt;}
.y51{bottom:629.198667pt;}
.yb2{bottom:629.800000pt;}
.y15e{bottom:638.466667pt;}
.y117{bottom:640.000000pt;}
.ya{bottom:641.398667pt;}
.y4d{bottom:646.732000pt;}
.y4e{bottom:646.800000pt;}
.y4f{bottom:647.065333pt;}
.yb1{bottom:647.732000pt;}
.yb0{bottom:648.333333pt;}
.y15d{bottom:656.398667pt;}
.y116{bottom:657.932000pt;}
.y9{bottom:659.666667pt;}
.y4a{bottom:664.333333pt;}
.y4b{bottom:664.666667pt;}
.y4c{bottom:665.000000pt;}
.yaf{bottom:665.333333pt;}
.y15a{bottom:673.333333pt;}
.y15b{bottom:673.732000pt;}
.y15c{bottom:675.000000pt;}
.y115{bottom:675.800000pt;}
.y8{bottom:677.598667pt;}
.y45{bottom:681.666667pt;}
.y46{bottom:681.932000pt;}
.y47{bottom:682.000000pt;}
.y48{bottom:682.265333pt;}
.y49{bottom:682.598667pt;}
.yae{bottom:683.865333pt;}
.y155{bottom:691.266667pt;}
.y156{bottom:691.933333pt;}
.y157{bottom:692.266667pt;}
.y158{bottom:692.532000pt;}
.y159{bottom:693.198667pt;}
.y7{bottom:694.933333pt;}
.y5{bottom:695.198667pt;}
.y6{bottom:695.532000pt;}
.y114{bottom:697.933333pt;}
.y43{bottom:699.600000pt;}
.y44{bottom:699.865333pt;}
.yad{bottom:701.133333pt;}
.y152{bottom:709.532000pt;}
.y113{bottom:709.732000pt;}
.y153{bottom:710.800000pt;}
.y154{bottom:710.865333pt;}
.y112{bottom:711.000000pt;}
.y111{bottom:713.933333pt;}
.yac{bottom:717.198667pt;}
.y40{bottom:717.466667pt;}
.y42{bottom:717.532000pt;}
.y41{bottom:717.800000pt;}
.yab{bottom:718.732000pt;}
.yaa{bottom:720.333333pt;}
.y151{bottom:727.466667pt;}
.y110{bottom:729.266667pt;}
.y10f{bottom:733.133333pt;}
.y10e{bottom:733.732000pt;}
.y10d{bottom:734.398667pt;}
.y10c{bottom:734.732000pt;}
.y3e{bottom:735.398667pt;}
.y3f{bottom:735.466667pt;}
.y3d{bottom:735.732000pt;}
.ya9{bottom:736.000000pt;}
.ya8{bottom:737.333333pt;}
.ya7{bottom:738.000000pt;}
.y4{bottom:743.800000pt;}
.y3{bottom:743.865333pt;}
.y1{bottom:744.133333pt;}
.y2{bottom:744.198667pt;}
.y14e{bottom:744.800000pt;}
.y14f{bottom:746.000000pt;}
.y150{bottom:746.333333pt;}
.y10b{bottom:748.466667pt;}
.ya6{bottom:752.666667pt;}
.ya5{bottom:754.266667pt;}
.y3c{bottom:754.933333pt;}
.y14d{bottom:762.933333pt;}
.y10a{bottom:763.800000pt;}
.y109{bottom:766.398667pt;}
.y108{bottom:768.333333pt;}
.ya4{bottom:771.198667pt;}
.y3b{bottom:772.532000pt;}
.ya3{bottom:773.133333pt;}
.ya2{bottom:773.466667pt;}
.ya1{bottom:773.800000pt;}
.y14c{bottom:780.865333pt;}
.y107{bottom:789.133333pt;}
.ya0{bottom:790.133333pt;}
.y3a{bottom:790.466667pt;}
.y14a{bottom:797.532000pt;}
.y14b{bottom:798.532000pt;}
.y106{bottom:802.532000pt;}
.y105{bottom:805.732000pt;}
.y104{bottom:807.065333pt;}
.y9f{bottom:807.732000pt;}
.y39{bottom:808.333333pt;}
.y38{bottom:808.398667pt;}
.y148{bottom:831.466667pt;}
.y149{bottom:831.732000pt;}
.y103{bottom:838.065333pt;}
.y9e{bottom:840.666667pt;}
.y37{bottom:841.666667pt;}
.hc{height:15.703125pt;}
.hb{height:26.158854pt;}
.h11{height:26.171875pt;}
.hd{height:27.812500pt;}
.h24{height:31.406250pt;}
.h28{height:36.640625pt;}
.h25{height:38.937500pt;}
.h18{height:41.854167pt;}
.h7{height:41.875000pt;}
.h27{height:43.000000pt;}
.h20{height:43.854610pt;}
.h1c{height:44.500000pt;}
.ha{height:47.109375pt;}
.h1d{height:50.062500pt;}
.h16{height:52.343750pt;}
.h14{height:55.625000pt;}
.h21{height:57.549479pt;}
.h6{height:57.578125pt;}
.h1a{height:61.187500pt;}
.hf{height:62.812500pt;}
.h2{height:64.500000pt;}
.he{height:68.046875pt;}
.h1{height:72.312500pt;}
.h13{height:73.244792pt;}
.h8{height:73.281250pt;}
.h5{height:83.437500pt;}
.h17{height:83.750000pt;}
.h10{height:89.000000pt;}
.h4{height:96.750000pt;}
.h3{height:122.375000pt;}
.h26{height:600.000000pt;}
.h23{height:601.333333pt;}
.h9{height:604.000000pt;}
.h1e{height:610.666667pt;}
.h12{height:897.333333pt;}
.h1b{height:901.333333pt;}
.h15{height:905.333333pt;}
.h22{height:906.666667pt;}
.h0{height:908.000000pt;}
.h1f{height:912.000000pt;}
.h19{height:921.333333pt;}
.w2{width:566.666667pt;}
.w7{width:586.666667pt;}
.w6{width:589.333333pt;}
.w0{width:590.666667pt;}
.w3{width:592.000000pt;}
.w4{width:622.666667pt;}
.w9{width:894.666667pt;}
.w8{width:898.666667pt;}
.w5{width:901.333333pt;}
.w1{width:908.000000pt;}
.x0{left:0.000000pt;}
.xcc{left:34.266667pt;}
.xcb{left:35.200000pt;}
.xc6{left:36.133333pt;}
.xc5{left:37.466667pt;}
.xa5{left:38.400000pt;}
.xb9{left:39.333333pt;}
.xb6{left:40.333333pt;}
.x28{left:42.266667pt;}
.x32{left:43.865333pt;}
.x44{left:45.733333pt;}
.x3f{left:47.333333pt;}
.x2c{left:48.333333pt;}
.x73{left:49.266667pt;}
.xab{left:54.066667pt;}
.xe1{left:59.866667pt;}
.xca{left:62.066667pt;}
.xc3{left:63.066667pt;}
.xbb{left:65.600000pt;}
.xb7{left:66.866667pt;}
.x16{left:69.466667pt;}
.xc{left:70.400000pt;}
.x17{left:71.333333pt;}
.x12{left:72.333333pt;}
.x77{left:73.266667pt;}
.xc9{left:74.866667pt;}
.x74{left:75.866667pt;}
.xd0{left:77.466667pt;}
.xd6{left:78.400000pt;}
.x4f{left:82.266667pt;}
.xc2{left:83.866667pt;}
.x39{left:86.732000pt;}
.x33{left:91.533333pt;}
.x1{left:93.133333pt;}
.x9{left:94.065333pt;}
.x8f{left:95.065333pt;}
.x15{left:97.600000pt;}
.xd{left:98.533333pt;}
.x1a{left:100.133333pt;}
.x71{left:101.732000pt;}
.x8b{left:102.733333pt;}
.xd2{left:104.333333pt;}
.xd8{left:105.933333pt;}
.xc4{left:108.133333pt;}
.x2d{left:110.066667pt;}
.x6b{left:111.666667pt;}
.x3a{left:112.933333pt;}
.x95{left:115.533333pt;}
.x48{left:116.800000pt;}
.xa2{left:118.066667pt;}
.x50{left:119.333333pt;}
.x78{left:121.266667pt;}
.x54{left:122.866667pt;}
.x2e{left:125.733333pt;}
.x45{left:127.066667pt;}
.x72{left:129.600000pt;}
.x34{left:133.466667pt;}
.x9c{left:136.666667pt;}
.x79{left:144.666667pt;}
.x51{left:145.933333pt;}
.x6c{left:147.533333pt;}
.x5c{left:149.466667pt;}
.x96{left:150.400000pt;}
.x2{left:152.333333pt;}
.x49{left:153.600000pt;}
.x9d{left:156.466667pt;}
.x7a{left:163.533333pt;}
.x3b{left:164.466667pt;}
.x7b{left:165.733333pt;}
.x3{left:168.000000pt;}
.xa6{left:173.465333pt;}
.x2f{left:175.066667pt;}
.x82{left:176.666667pt;}
.xa7{left:178.866667pt;}
.xac{left:179.866667pt;}
.xa8{left:181.733333pt;}
.x4a{left:183.066667pt;}
.xe3{left:185.266667pt;}
.xa9{left:187.866667pt;}
.x84{left:192.933333pt;}
.xbc{left:195.200000pt;}
.x22{left:196.465333pt;}
.x67{left:198.733333pt;}
.x4{left:199.666667pt;}
.x55{left:201.266667pt;}
.x5d{left:205.133333pt;}
.x7d{left:208.333333pt;}
.x98{left:211.533333pt;}
.x92{left:215.066667pt;}
.x46{left:216.000000pt;}
.x97{left:217.933333pt;}
.x64{left:225.600000pt;}
.xe4{left:227.200000pt;}
.x7c{left:228.800000pt;}
.x4b{left:230.400000pt;}
.x83{left:232.933333pt;}
.x5{left:235.533333pt;}
.x68{left:237.133333pt;}
.xa4{left:238.400000pt;}
.xaf{left:240.000000pt;}
.x27{left:240.933333pt;}
.xad{left:249.933333pt;}
.x88{left:256.666667pt;}
.x4c{left:258.266667pt;}
.x89{left:262.066667pt;}
.x35{left:263.333333pt;}
.xbd{left:265.266667pt;}
.xb8{left:266.533333pt;}
.xc7{left:268.800000pt;}
.x85{left:269.733333pt;}
.x59{left:271.666667pt;}
.x76{left:272.666667pt;}
.x29{left:274.533333pt;}
.x8a{left:276.466667pt;}
.xa{left:280.333333pt;}
.x60{left:281.266667pt;}
.x61{left:282.866667pt;}
.xce{left:289.600000pt;}
.xc1{left:293.133333pt;}
.xcf{left:298.533333pt;}
.xa0{left:302.066667pt;}
.x5e{left:304.333333pt;}
.x57{left:307.200000pt;}
.xae{left:310.400000pt;}
.xaa{left:313.266667pt;}
.x4d{left:314.866667pt;}
.x6{left:319.066667pt;}
.x36{left:322.533333pt;}
.x65{left:323.533333pt;}
.x80{left:324.466667pt;}
.x69{left:329.600000pt;}
.xa3{left:330.866667pt;}
.x41{left:336.000000pt;}
.xd3{left:336.933333pt;}
.xb0{left:339.200000pt;}
.x8d{left:340.133333pt;}
.xb{left:341.133333pt;}
.x1b{left:344.000000pt;}
.x5a{left:346.265333pt;}
.x3c{left:351.666667pt;}
.x62{left:353.598667pt;}
.xba{left:355.866667pt;}
.x86{left:357.733333pt;}
.xbf{left:359.333333pt;}
.x94{left:360.333333pt;}
.x93{left:363.533333pt;}
.x6d{left:365.733333pt;}
.x6e{left:368.932000pt;}
.xa1{left:370.533333pt;}
.x1f{left:374.400000pt;}
.x6a{left:376.333333pt;}
.xb1{left:378.265333pt;}
.x26{left:379.866667pt;}
.x52{left:383.066667pt;}
.x30{left:386.265333pt;}
.x13{left:388.133333pt;}
.xd1{left:389.133333pt;}
.x7f{left:390.400000pt;}
.xc0{left:391.666667pt;}
.x42{left:394.533333pt;}
.x56{left:399.333333pt;}
.x6f{left:401.598667pt;}
.x8e{left:404.466667pt;}
.x43{left:409.600000pt;}
.xbe{left:414.733333pt;}
.x31{left:416.333333pt;}
.x9e{left:417.600000pt;}
.xd4{left:418.866667pt;}
.x58{left:420.466667pt;}
.x90{left:422.733333pt;}
.xd5{left:424.000000pt;}
.x63{left:429.466667pt;}
.x18{left:434.533333pt;}
.x3d{left:436.466667pt;}
.x99{left:437.466667pt;}
.x7{left:438.400000pt;}
.x53{left:439.333333pt;}
.x66{left:442.533333pt;}
.x1c{left:444.800000pt;}
.x5f{left:448.000000pt;}
.x19{left:450.533333pt;}
.x9a{left:454.400000pt;}
.x40{left:455.666667pt;}
.x75{left:457.933333pt;}
.x87{left:460.133333pt;}
.xcd{left:463.666667pt;}
.x3e{left:465.266667pt;}
.x1d{left:466.866667pt;}
.x70{left:469.133333pt;}
.x8{left:472.933333pt;}
.xc8{left:474.533333pt;}
.x4e{left:477.133333pt;}
.x38{left:478.400000pt;}
.x37{left:481.600000pt;}
.x47{left:483.200000pt;}
.x9f{left:486.733333pt;}
.x2a{left:489.933333pt;}
.x91{left:492.133333pt;}
.x14{left:494.400000pt;}
.x1e{left:496.666667pt;}
.x5b{left:500.133333pt;}
.x2b{left:504.000000pt;}
.xb2{left:504.933333pt;}
.x9b{left:507.866667pt;}
.xd7{left:511.066667pt;}
.xe{left:512.666667pt;}
.x8c{left:515.533333pt;}
.xf{left:516.800000pt;}
.x10{left:518.066667pt;}
.x11{left:521.266667pt;}
.x81{left:525.466667pt;}
.x7e{left:533.133333pt;}
.x20{left:561.600000pt;}
.xde{left:615.333333pt;}
.xb3{left:641.266667pt;}
.x24{left:642.266667pt;}
.xdf{left:649.600000pt;}
.xd9{left:663.066667pt;}
.x23{left:665.600000pt;}
.xe0{left:684.800000pt;}
.x25{left:699.865333pt;}
.xda{left:701.133333pt;}
.xb4{left:702.400000pt;}
.xe2{left:707.198667pt;}
.xdb{left:717.133333pt;}
.xe5{left:719.066667pt;}
.xb5{left:726.400000pt;}
.xdc{left:735.066667pt;}
.xe6{left:743.333333pt;}
.xdd{left:759.066667pt;}
.x21{left:774.733333pt;}
}




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