
    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_ef86a23a4fbb8066affab8c3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.766000;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_caeb2b6ed9b54baa46b5e359.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.128000;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_ef91b725cbd06fecea264841.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.995000;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_b2dfb22bc896d52556237785.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.128000;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_283e6f9b5b7ddf4140751238.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.128000;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_3c8ee114144c057e4bc6f6f1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_676e0c6e74b033331176eccd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.128000;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_283e6f9b5b7ddf4140751238.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.128000;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_72d60efae0ac3c760726c5af.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.113000;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;}
.m22{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247515,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.247543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247543,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.247558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247558,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.247688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247688,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247773,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.247860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247860,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247890,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.247918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247918,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.247962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247962,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.248037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248037,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248085,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248092,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248255,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.248260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248260,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.248332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248332,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248383,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.248553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248553,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.248682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248682,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248690,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.248722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248722,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248738,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248818,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248828,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248963,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249248,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.249260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249260,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249673,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249768,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,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);}
.m3e{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250202,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.250337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250337,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250440,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.250578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250578,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250622,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250825,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250927,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.251030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251030,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.251147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251147,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251260,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251270,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.251348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251348,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.251368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251368,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.251430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251430,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.251513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251513,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.251570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251570,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251580,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.251743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251743,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.251770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251770,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.252057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252057,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.252097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252097,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252107,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.252367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252367,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);}
.m1a{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);}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls17{letter-spacing:-1.200000px;}
.ls16{letter-spacing:-0.480000px;}
.lsd{letter-spacing:-0.420000px;}
.lsa{letter-spacing:-0.240000px;}
.ls6{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.120000px;}
.ls7{letter-spacing:-0.060000px;}
.ls4{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.030000px;}
.ls3{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.090000px;}
.ls2{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.240000px;}
.lsc{letter-spacing:0.300000px;}
.lsf{letter-spacing:0.330000px;}
.lse{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.390000px;}
.ls11{letter-spacing:0.420000px;}
.ls15{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.600000px;}
.ls12{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.780000px;}
.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;}
}
.ws14{word-spacing:-12.300000px;}
.ws0{word-spacing:-12.000000px;}
.ws18{word-spacing:-10.800000px;}
.ws12{word-spacing:-6.996000px;}
.ws13{word-spacing:-5.596800px;}
.wsd{word-spacing:-1.380000px;}
.wsf{word-spacing:-0.780000px;}
.ws10{word-spacing:-0.720000px;}
.ws9{word-spacing:-0.600000px;}
.ws16{word-spacing:-0.540000px;}
.ws11{word-spacing:-0.420000px;}
.wse{word-spacing:-0.360000px;}
.wsc{word-spacing:-0.300000px;}
.wsa{word-spacing:-0.240000px;}
.ws5{word-spacing:-0.180000px;}
.ws6{word-spacing:-0.120000px;}
.ws7{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws4{word-spacing:0.060000px;}
.ws2{word-spacing:0.120000px;}
.ws3{word-spacing:0.180000px;}
.ws8{word-spacing:0.240000px;}
.wsb{word-spacing:0.420000px;}
.ws17{word-spacing:0.480000px;}
.ws15{word-spacing:0.720000px;}
.ws19{word-spacing:1.200000px;}
._b{margin-left:-7.056000px;}
._6{margin-left:-5.992800px;}
._4{margin-left:-4.225800px;}
._2{margin-left:-2.927400px;}
._0{margin-left:-1.894200px;}
._3{width:1.194000px;}
._1{width:2.320200px;}
._5{width:3.385800px;}
._9{width:4.397400px;}
._7{width:5.508000px;}
._8{width:7.332000px;}
._a{width:9.312000px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:27.984000px;}
.fs4{font-size:34.980000px;}
.fs0{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y49{bottom:50.226900px;}
.y23{bottom:54.502500px;}
.yfa{bottom:86.740050px;}
.y46{bottom:86.740200px;}
.ydb{bottom:105.736200px;}
.y119{bottom:107.076150px;}
.y45{bottom:107.380650px;}
.y9a{bottom:107.490750px;}
.y69{bottom:108.006300px;}
.yf9{bottom:108.280800px;}
.y118{bottom:127.412250px;}
.y20{bottom:127.430400px;}
.yb9{bottom:128.021100px;}
.y99{bottom:128.241300px;}
.y68{bottom:129.272250px;}
.yf8{bottom:129.821400px;}
.y44{bottom:145.029000px;}
.yaf{bottom:145.249200px;}
.y1f{bottom:147.590400px;}
.y117{bottom:147.748200px;}
.yb8{bottom:148.661700px;}
.y98{bottom:148.991850px;}
.y67{bottom:150.538200px;}
.yf7{bottom:151.362150px;}
.yda{bottom:154.282950px;}
.y43{bottom:165.669600px;}
.yae{bottom:165.999750px;}
.y1e{bottom:167.750400px;}
.y97{bottom:169.742550px;}
.y66{bottom:171.804150px;}
.yf6{bottom:172.902750px;}
.yd9{bottom:174.532950px;}
.y127{bottom:181.017150px;}
.y116{bottom:185.092200px;}
.y42{bottom:186.310050px;}
.yad{bottom:186.750300px;}
.y1d{bottom:187.910400px;}
.y96{bottom:190.493100px;}
.yd8{bottom:194.782950px;}
.y115{bottom:205.428300px;}
.y7a{bottom:206.950500px;}
.y1c{bottom:208.070400px;}
.y65{bottom:210.078000px;}
.y95{bottom:211.243650px;}
.yf5{bottom:211.451400px;}
.yd7{bottom:215.032950px;}
.y126{bottom:218.275050px;}
.y41{bottom:223.958400px;}
.yac{bottom:224.508750px;}
.y114{bottom:225.764250px;}
.y79{bottom:227.591100px;}
.y1b{bottom:228.230400px;}
.y64{bottom:231.343950px;}
.yf4{bottom:232.992000px;}
.yd6{bottom:235.282950px;}
.y125{bottom:238.525050px;}
.y40{bottom:244.598850px;}
.yab{bottom:245.259450px;}
.y113{bottom:246.100350px;}
.y78{bottom:248.231550px;}
.y1a{bottom:248.390400px;}
.y94{bottom:249.002100px;}
.y63{bottom:252.609900px;}
.yf3{bottom:254.532750px;}
.yd5{bottom:255.532950px;}
.y124{bottom:258.775050px;}
.y3f{bottom:265.239450px;}
.yaa{bottom:266.010000px;}
.y112{bottom:266.436450px;}
.y77{bottom:268.872000px;}
.y93{bottom:269.752650px;}
.y62{bottom:273.875850px;}
.yd4{bottom:275.782950px;}
.yf2{bottom:276.073500px;}
.y123{bottom:279.025050px;}
.y19{bottom:285.558150px;}
.y3e{bottom:285.879900px;}
.ya9{bottom:286.760550px;}
.y111{bottom:286.772400px;}
.y76{bottom:289.512600px;}
.y92{bottom:290.503200px;}
.y61{bottom:295.141800px;}
.yd3{bottom:296.032950px;}
.yf1{bottom:297.614100px;}
.y122{bottom:299.275050px;}
.y18{bottom:305.718150px;}
.y3d{bottom:306.520500px;}
.y110{bottom:307.108500px;}
.ya8{bottom:307.511100px;}
.yb7{bottom:310.153050px;}
.yd2{bottom:316.282950px;}
.y60{bottom:316.407900px;}
.y121{bottom:319.525050px;}
.y17{bottom:325.878150px;}
.y3c{bottom:327.160950px;}
.y91{bottom:328.261650px;}
.yb6{bottom:330.793500px;}
.yf0{bottom:336.162750px;}
.yd1{bottom:336.532950px;}
.y120{bottom:339.775050px;}
.y10f{bottom:344.452350px;}
.ya7{bottom:345.269550px;}
.y16{bottom:346.038150px;}
.y3b{bottom:347.801400px;}
.y90{bottom:349.012350px;}
.yb5{bottom:351.434100px;}
.y5f{bottom:354.681600px;}
.yd0{bottom:356.782950px;}
.y11f{bottom:360.025050px;}
.ya6{bottom:366.020250px;}
.y15{bottom:366.198150px;}
.y3a{bottom:368.442000px;}
.y8f{bottom:369.762900px;}
.yb4{bottom:372.074550px;}
.yef{bottom:374.711250px;}
.y5e{bottom:375.947700px;}
.ycf{bottom:377.032950px;}
.y11e{bottom:380.275050px;}
.y10e{bottom:381.796350px;}
.y14{bottom:386.358150px;}
.ya5{bottom:386.770800px;}
.y39{bottom:389.082450px;}
.y8e{bottom:390.513450px;}
.yb3{bottom:392.715000px;}
.yee{bottom:396.251850px;}
.y5d{bottom:397.213650px;}
.yce{bottom:397.282950px;}
.y10d{bottom:402.132300px;}
.y13{bottom:406.518150px;}
.ya4{bottom:407.521350px;}
.y38{bottom:409.722900px;}
.y8d{bottom:411.264000px;}
.yb2{bottom:413.355600px;}
.ycd{bottom:417.532950px;}
.yed{bottom:417.792600px;}
.y5c{bottom:418.479600px;}
.y10c{bottom:422.468400px;}
.y12{bottom:426.678150px;}
.ya3{bottom:428.271900px;}
.y37{bottom:430.363350px;}
.y8c{bottom:432.014550px;}
.yb1{bottom:433.996050px;}
.ycc{bottom:437.782950px;}
.yec{bottom:439.333350px;}
.y5b{bottom:439.745550px;}
.y10b{bottom:442.804500px;}
.y11{bottom:446.838300px;}
.ya2{bottom:449.022450px;}
.y36{bottom:451.003950px;}
.y8b{bottom:452.765250px;}
.ycb{bottom:458.032950px;}
.yeb{bottom:460.873950px;}
.y10{bottom:466.998150px;}
.ya1{bottom:469.773000px;}
.y35{bottom:471.644400px;}
.y8a{bottom:473.515800px;}
.y5a{bottom:478.019400px;}
.yca{bottom:478.282950px;}
.y10a{bottom:480.148350px;}
.yf{bottom:487.158150px;}
.ya0{bottom:490.523550px;}
.y34{bottom:492.284850px;}
.y89{bottom:494.266350px;}
.yc9{bottom:498.532950px;}
.y59{bottom:499.285350px;}
.yea{bottom:499.422600px;}
.y109{bottom:500.484300px;}
.ye{bottom:507.318300px;}
.y75{bottom:509.292750px;}
.y9f{bottom:511.274250px;}
.y33{bottom:512.925450px;}
.yc8{bottom:518.782950px;}
.y58{bottom:520.551300px;}
.ye9{bottom:520.963200px;}
.yd{bottom:527.478150px;}
.y74{bottom:529.933350px;}
.y88{bottom:532.024800px;}
.yb0{bottom:533.565900px;}
.y108{bottom:537.828300px;}
.yc7{bottom:539.032950px;}
.y57{bottom:541.817250px;}
.ye8{bottom:542.503950px;}
.yc{bottom:547.638150px;}
.y32{bottom:550.573800px;}
.y87{bottom:552.775350px;}
.y107{bottom:558.164400px;}
.yc6{bottom:559.282950px;}
.y56{bottom:563.083350px;}
.y73{bottom:567.581700px;}
.y31{bottom:571.214250px;}
.y86{bottom:573.525900px;}
.y106{bottom:578.500350px;}
.yc5{bottom:579.532950px;}
.ye7{bottom:581.052450px;}
.y55{bottom:584.349300px;}
.yb{bottom:584.806050px;}
.y72{bottom:588.222150px;}
.y9e{bottom:590.533800px;}
.y30{bottom:591.854850px;}
.y85{bottom:594.276600px;}
.y105{bottom:598.836450px;}
.yc4{bottom:599.782950px;}
.ye6{bottom:602.593200px;}
.ya{bottom:604.966050px;}
.y54{bottom:605.615250px;}
.y71{bottom:608.862600px;}
.y9d{bottom:611.284350px;}
.y2f{bottom:612.495300px;}
.y104{bottom:619.172550px;}
.y11d{bottom:620.032950px;}
.ye5{bottom:624.133800px;}
.y9{bottom:625.126050px;}
.y53{bottom:626.881200px;}
.y70{bottom:629.503200px;}
.y84{bottom:632.035050px;}
.y2e{bottom:633.135750px;}
.yc3{bottom:637.040850px;}
.y103{bottom:639.508650px;}
.y8{bottom:645.286050px;}
.ye4{bottom:645.674550px;}
.y52{bottom:648.147150px;}
.y6f{bottom:650.143650px;}
.y83{bottom:652.785600px;}
.y2d{bottom:653.776350px;}
.yc2{bottom:657.290850px;}
.y102{bottom:659.844600px;}
.y7{bottom:665.446050px;}
.ye3{bottom:667.215300px;}
.y51{bottom:669.413250px;}
.y6e{bottom:670.784250px;}
.y82{bottom:673.536150px;}
.y2c{bottom:674.416800px;}
.yc1{bottom:677.540850px;}
.y101{bottom:680.180700px;}
.y6{bottom:685.606050px;}
.ye2{bottom:688.755900px;}
.y9c{bottom:690.544050px;}
.y50{bottom:690.679200px;}
.y6d{bottom:691.424700px;}
.y81{bottom:694.286700px;}
.y2b{bottom:695.057400px;}
.y11c{bottom:697.790850px;}
.y9b{bottom:711.294600px;}
.y4f{bottom:711.945150px;}
.y6c{bottom:712.065150px;}
.yc0{bottom:714.798750px;}
.y2a{bottom:715.697850px;}
.y100{bottom:717.524550px;}
.y11b{bottom:718.040850px;}
.ye1{bottom:727.304550px;}
.y80{bottom:732.045300px;}
.y6b{bottom:732.705750px;}
.ybf{bottom:735.048750px;}
.y29{bottom:736.338300px;}
.yff{bottom:737.860650px;}
.y11a{bottom:738.290850px;}
.ye0{bottom:748.845150px;}
.y4e{bottom:750.219000px;}
.y7f{bottom:752.795850px;}
.y6a{bottom:753.346200px;}
.ybe{bottom:755.298750px;}
.yfe{bottom:758.196600px;}
.ydf{bottom:770.385900px;}
.y4d{bottom:771.484800px;}
.y7e{bottom:773.546400px;}
.y28{bottom:773.986650px;}
.ybd{bottom:775.548750px;}
.yfd{bottom:778.532700px;}
.y5{bottom:786.553500px;}
.yde{bottom:791.926500px;}
.y4c{bottom:792.750750px;}
.y7d{bottom:794.296950px;}
.y27{bottom:794.627250px;}
.ybc{bottom:795.798750px;}
.yfc{bottom:798.868800px;}
.y4{bottom:807.553500px;}
.ydd{bottom:813.467250px;}
.y4b{bottom:814.016850px;}
.y7c{bottom:815.047650px;}
.y26{bottom:815.267700px;}
.ybb{bottom:816.048750px;}
.ydc{bottom:835.008000px;}
.y4a{bottom:835.282800px;}
.y7b{bottom:835.798050px;}
.y25{bottom:835.908300px;}
.yfb{bottom:836.212650px;}
.yba{bottom:836.298750px;}
.y24{bottom:856.548750px;}
.y3{bottom:880.653450px;}
.y2{bottom:880.653600px;}
.y1{bottom:893.253600px;}
.y22{bottom:898.288950px;}
.y48{bottom:898.290300px;}
.y21{bottom:898.309800px;}
.y47{bottom:898.311150px;}
.h8{height:24.240000px;}
.h2{height:29.568000px;}
.h3{height:35.196000px;}
.h7{height:40.224000px;}
.h6{height:42.240000px;}
.h9{height:49.380000px;}
.h5{height:50.280000px;}
.h4{height:60.336000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x5{left:114.803100px;}
.x3{left:170.078700px;}
.x2{left:436.488300px;}
.x1{left:441.664650px;}
.x4{left:569.904300px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls17{letter-spacing:-1.066667pt;}
.ls16{letter-spacing:-0.426667pt;}
.lsd{letter-spacing:-0.373333pt;}
.lsa{letter-spacing:-0.213333pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.106667pt;}
.ls7{letter-spacing:-0.053333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.026667pt;}
.ls3{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.080000pt;}
.ls2{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.213333pt;}
.lsc{letter-spacing:0.266667pt;}
.lsf{letter-spacing:0.293333pt;}
.lse{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.346667pt;}
.ls11{letter-spacing:0.373333pt;}
.ls15{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.533333pt;}
.ls12{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.693333pt;}
.ws14{word-spacing:-10.933333pt;}
.ws0{word-spacing:-10.666667pt;}
.ws18{word-spacing:-9.600000pt;}
.ws12{word-spacing:-6.218667pt;}
.ws13{word-spacing:-4.974933pt;}
.wsd{word-spacing:-1.226667pt;}
.wsf{word-spacing:-0.693333pt;}
.ws10{word-spacing:-0.640000pt;}
.ws9{word-spacing:-0.533333pt;}
.ws16{word-spacing:-0.480000pt;}
.ws11{word-spacing:-0.373333pt;}
.wse{word-spacing:-0.320000pt;}
.wsc{word-spacing:-0.266667pt;}
.wsa{word-spacing:-0.213333pt;}
.ws5{word-spacing:-0.160000pt;}
.ws6{word-spacing:-0.106667pt;}
.ws7{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws4{word-spacing:0.053333pt;}
.ws2{word-spacing:0.106667pt;}
.ws3{word-spacing:0.160000pt;}
.ws8{word-spacing:0.213333pt;}
.wsb{word-spacing:0.373333pt;}
.ws17{word-spacing:0.426667pt;}
.ws15{word-spacing:0.640000pt;}
.ws19{word-spacing:1.066667pt;}
._b{margin-left:-6.272000pt;}
._6{margin-left:-5.326933pt;}
._4{margin-left:-3.756267pt;}
._2{margin-left:-2.602133pt;}
._0{margin-left:-1.683733pt;}
._3{width:1.061333pt;}
._1{width:2.062400pt;}
._5{width:3.009600pt;}
._9{width:3.908800pt;}
._7{width:4.896000pt;}
._8{width:6.517333pt;}
._a{width:8.277333pt;}
.fs5{font-size:24.874667pt;}
.fs4{font-size:31.093333pt;}
.fs0{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:44.646133pt;}
.y23{bottom:48.446667pt;}
.yfa{bottom:77.102267pt;}
.y46{bottom:77.102400pt;}
.ydb{bottom:93.987733pt;}
.y119{bottom:95.178800pt;}
.y45{bottom:95.449467pt;}
.y9a{bottom:95.547333pt;}
.y69{bottom:96.005600pt;}
.yf9{bottom:96.249600pt;}
.y118{bottom:113.255333pt;}
.y20{bottom:113.271467pt;}
.yb9{bottom:113.796533pt;}
.y99{bottom:113.992267pt;}
.y68{bottom:114.908667pt;}
.yf8{bottom:115.396800pt;}
.y44{bottom:128.914667pt;}
.yaf{bottom:129.110400pt;}
.y1f{bottom:131.191467pt;}
.y117{bottom:131.331733pt;}
.yb8{bottom:132.143733pt;}
.y98{bottom:132.437200pt;}
.y67{bottom:133.811733pt;}
.yf7{bottom:134.544133pt;}
.yda{bottom:137.140400pt;}
.y43{bottom:147.261867pt;}
.yae{bottom:147.555333pt;}
.y1e{bottom:149.111467pt;}
.y97{bottom:150.882267pt;}
.y66{bottom:152.714800pt;}
.yf6{bottom:153.691333pt;}
.yd9{bottom:155.140400pt;}
.y127{bottom:160.904133pt;}
.y116{bottom:164.526400pt;}
.y42{bottom:165.608933pt;}
.yad{bottom:166.000267pt;}
.y1d{bottom:167.031467pt;}
.y96{bottom:169.327200pt;}
.yd8{bottom:173.140400pt;}
.y115{bottom:182.602933pt;}
.y7a{bottom:183.956000pt;}
.y1c{bottom:184.951467pt;}
.y65{bottom:186.736000pt;}
.y95{bottom:187.772133pt;}
.yf5{bottom:187.956800pt;}
.yd7{bottom:191.140400pt;}
.y126{bottom:194.022267pt;}
.y41{bottom:199.074133pt;}
.yac{bottom:199.563333pt;}
.y114{bottom:200.679333pt;}
.y79{bottom:202.303200pt;}
.y1b{bottom:202.871467pt;}
.y64{bottom:205.639067pt;}
.yf4{bottom:207.104000pt;}
.yd6{bottom:209.140400pt;}
.y125{bottom:212.022267pt;}
.y40{bottom:217.421200pt;}
.yab{bottom:218.008400pt;}
.y113{bottom:218.755867pt;}
.y78{bottom:220.650267pt;}
.y1a{bottom:220.791467pt;}
.y94{bottom:221.335200pt;}
.y63{bottom:224.542133pt;}
.yf3{bottom:226.251333pt;}
.yd5{bottom:227.140400pt;}
.y124{bottom:230.022267pt;}
.y3f{bottom:235.768400pt;}
.yaa{bottom:236.453333pt;}
.y112{bottom:236.832400pt;}
.y77{bottom:238.997333pt;}
.y93{bottom:239.780133pt;}
.y62{bottom:243.445200pt;}
.yd4{bottom:245.140400pt;}
.yf2{bottom:245.398667pt;}
.y123{bottom:248.022267pt;}
.y19{bottom:253.829467pt;}
.y3e{bottom:254.115467pt;}
.ya9{bottom:254.898267pt;}
.y111{bottom:254.908800pt;}
.y76{bottom:257.344533pt;}
.y92{bottom:258.225067pt;}
.y61{bottom:262.348267pt;}
.yd3{bottom:263.140400pt;}
.yf1{bottom:264.545867pt;}
.y122{bottom:266.022267pt;}
.y18{bottom:271.749467pt;}
.y3d{bottom:272.462667pt;}
.y110{bottom:272.985333pt;}
.ya8{bottom:273.343200pt;}
.yb7{bottom:275.691600pt;}
.yd2{bottom:281.140400pt;}
.y60{bottom:281.251467pt;}
.y121{bottom:284.022267pt;}
.y17{bottom:289.669467pt;}
.y3c{bottom:290.809733pt;}
.y91{bottom:291.788133pt;}
.yb6{bottom:294.038667pt;}
.yf0{bottom:298.811333pt;}
.yd1{bottom:299.140400pt;}
.y120{bottom:302.022267pt;}
.y10f{bottom:306.179867pt;}
.ya7{bottom:306.906267pt;}
.y16{bottom:307.589467pt;}
.y3b{bottom:309.156800pt;}
.y90{bottom:310.233200pt;}
.yb5{bottom:312.385867pt;}
.y5f{bottom:315.272533pt;}
.yd0{bottom:317.140400pt;}
.y11f{bottom:320.022267pt;}
.ya6{bottom:325.351333pt;}
.y15{bottom:325.509467pt;}
.y3a{bottom:327.504000pt;}
.y8f{bottom:328.678133pt;}
.yb4{bottom:330.732933pt;}
.yef{bottom:333.076667pt;}
.y5e{bottom:334.175733pt;}
.ycf{bottom:335.140400pt;}
.y11e{bottom:338.022267pt;}
.y10e{bottom:339.374533pt;}
.y14{bottom:343.429467pt;}
.ya5{bottom:343.796267pt;}
.y39{bottom:345.851067pt;}
.y8e{bottom:347.123067pt;}
.yb3{bottom:349.080000pt;}
.yee{bottom:352.223867pt;}
.y5d{bottom:353.078800pt;}
.yce{bottom:353.140400pt;}
.y10d{bottom:357.450933pt;}
.y13{bottom:361.349467pt;}
.ya4{bottom:362.241200pt;}
.y38{bottom:364.198133pt;}
.y8d{bottom:365.568000pt;}
.yb2{bottom:367.427200pt;}
.ycd{bottom:371.140400pt;}
.yed{bottom:371.371200pt;}
.y5c{bottom:371.981867pt;}
.y10c{bottom:375.527467pt;}
.y12{bottom:379.269467pt;}
.ya3{bottom:380.686133pt;}
.y37{bottom:382.545200pt;}
.y8c{bottom:384.012933pt;}
.yb1{bottom:385.774267pt;}
.ycc{bottom:389.140400pt;}
.yec{bottom:390.518533pt;}
.y5b{bottom:390.884933pt;}
.y10b{bottom:393.604000pt;}
.y11{bottom:397.189600pt;}
.ya2{bottom:399.131067pt;}
.y36{bottom:400.892400pt;}
.y8b{bottom:402.458000pt;}
.ycb{bottom:407.140400pt;}
.yeb{bottom:409.665733pt;}
.y10{bottom:415.109467pt;}
.ya1{bottom:417.576000pt;}
.y35{bottom:419.239467pt;}
.y8a{bottom:420.902933pt;}
.y5a{bottom:424.906133pt;}
.yca{bottom:425.140400pt;}
.y10a{bottom:426.798533pt;}
.yf{bottom:433.029467pt;}
.ya0{bottom:436.020933pt;}
.y34{bottom:437.586533pt;}
.y89{bottom:439.347867pt;}
.yc9{bottom:443.140400pt;}
.y59{bottom:443.809200pt;}
.yea{bottom:443.931200pt;}
.y109{bottom:444.874933pt;}
.ye{bottom:450.949600pt;}
.y75{bottom:452.704667pt;}
.y9f{bottom:454.466000pt;}
.y33{bottom:455.933733pt;}
.yc8{bottom:461.140400pt;}
.y58{bottom:462.712267pt;}
.ye9{bottom:463.078400pt;}
.yd{bottom:468.869467pt;}
.y74{bottom:471.051867pt;}
.y88{bottom:472.910933pt;}
.yb0{bottom:474.280800pt;}
.y108{bottom:478.069600pt;}
.yc7{bottom:479.140400pt;}
.y57{bottom:481.615333pt;}
.ye8{bottom:482.225733pt;}
.yc{bottom:486.789467pt;}
.y32{bottom:489.398933pt;}
.y87{bottom:491.355867pt;}
.y107{bottom:496.146133pt;}
.yc6{bottom:497.140400pt;}
.y56{bottom:500.518533pt;}
.y73{bottom:504.517067pt;}
.y31{bottom:507.746000pt;}
.y86{bottom:509.800800pt;}
.y106{bottom:514.222533pt;}
.yc5{bottom:515.140400pt;}
.ye7{bottom:516.491067pt;}
.y55{bottom:519.421600pt;}
.yb{bottom:519.827600pt;}
.y72{bottom:522.864133pt;}
.y9e{bottom:524.918933pt;}
.y30{bottom:526.093200pt;}
.y85{bottom:528.245867pt;}
.y105{bottom:532.299067pt;}
.yc4{bottom:533.140400pt;}
.ye6{bottom:535.638400pt;}
.ya{bottom:537.747600pt;}
.y54{bottom:538.324667pt;}
.y71{bottom:541.211200pt;}
.y9d{bottom:543.363867pt;}
.y2f{bottom:544.440267pt;}
.y104{bottom:550.375600pt;}
.y11d{bottom:551.140400pt;}
.ye5{bottom:554.785600pt;}
.y9{bottom:555.667600pt;}
.y53{bottom:557.227733pt;}
.y70{bottom:559.558400pt;}
.y84{bottom:561.808933pt;}
.y2e{bottom:562.787333pt;}
.yc3{bottom:566.258533pt;}
.y103{bottom:568.452133pt;}
.y8{bottom:573.587600pt;}
.ye4{bottom:573.932933pt;}
.y52{bottom:576.130800pt;}
.y6f{bottom:577.905467pt;}
.y83{bottom:580.253867pt;}
.y2d{bottom:581.134533pt;}
.yc2{bottom:584.258533pt;}
.y102{bottom:586.528533pt;}
.y7{bottom:591.507600pt;}
.ye3{bottom:593.080267pt;}
.y51{bottom:595.034000pt;}
.y6e{bottom:596.252667pt;}
.y82{bottom:598.698800pt;}
.y2c{bottom:599.481600pt;}
.yc1{bottom:602.258533pt;}
.y101{bottom:604.605067pt;}
.y6{bottom:609.427600pt;}
.ye2{bottom:612.227467pt;}
.y9c{bottom:613.816933pt;}
.y50{bottom:613.937067pt;}
.y6d{bottom:614.599733pt;}
.y81{bottom:617.143733pt;}
.y2b{bottom:617.828800pt;}
.y11c{bottom:620.258533pt;}
.y9b{bottom:632.261867pt;}
.y4f{bottom:632.840133pt;}
.y6c{bottom:632.946800pt;}
.yc0{bottom:635.376667pt;}
.y2a{bottom:636.175867pt;}
.y100{bottom:637.799600pt;}
.y11b{bottom:638.258533pt;}
.ye1{bottom:646.492933pt;}
.y80{bottom:650.706933pt;}
.y6b{bottom:651.294000pt;}
.ybf{bottom:653.376667pt;}
.y29{bottom:654.522933pt;}
.yff{bottom:655.876133pt;}
.y11a{bottom:656.258533pt;}
.ye0{bottom:665.640133pt;}
.y4e{bottom:666.861333pt;}
.y7f{bottom:669.151867pt;}
.y6a{bottom:669.641067pt;}
.ybe{bottom:671.376667pt;}
.yfe{bottom:673.952533pt;}
.ydf{bottom:684.787467pt;}
.y4d{bottom:685.764267pt;}
.y7e{bottom:687.596800pt;}
.y28{bottom:687.988133pt;}
.ybd{bottom:689.376667pt;}
.yfd{bottom:692.029067pt;}
.y5{bottom:699.158667pt;}
.yde{bottom:703.934667pt;}
.y4c{bottom:704.667333pt;}
.y7d{bottom:706.041733pt;}
.y27{bottom:706.335333pt;}
.ybc{bottom:707.376667pt;}
.yfc{bottom:710.105600pt;}
.y4{bottom:717.825333pt;}
.ydd{bottom:723.082000pt;}
.y4b{bottom:723.570533pt;}
.y7c{bottom:724.486800pt;}
.y26{bottom:724.682400pt;}
.ybb{bottom:725.376667pt;}
.ydc{bottom:742.229333pt;}
.y4a{bottom:742.473600pt;}
.y7b{bottom:742.931600pt;}
.y25{bottom:743.029600pt;}
.yfb{bottom:743.300133pt;}
.yba{bottom:743.376667pt;}
.y24{bottom:761.376667pt;}
.y3{bottom:782.803067pt;}
.y2{bottom:782.803200pt;}
.y1{bottom:794.003200pt;}
.y22{bottom:798.479067pt;}
.y48{bottom:798.480267pt;}
.y21{bottom:798.497600pt;}
.y47{bottom:798.498800pt;}
.h8{height:21.546667pt;}
.h2{height:26.282667pt;}
.h3{height:31.285333pt;}
.h7{height:35.754667pt;}
.h6{height:37.546667pt;}
.h9{height:43.893333pt;}
.h5{height:44.693333pt;}
.h4{height:53.632000pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x5{left:102.047200pt;}
.x3{left:151.181067pt;}
.x2{left:387.989600pt;}
.x1{left:392.590800pt;}
.x4{left:506.581600pt;}
}




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