
    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_0a45cd793544f62675fd5148.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.947000;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_76b14d6cf29c1b95ec14099e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.846000;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_5c649c9995fa7aade3a2beda.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.742000;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_8fb2e94884d2a4216e776199.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958000;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_fb2ae65750942ac7d0a00582.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.846000;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_132d80bfe7e3b375e8852a27.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.846000;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_17e198706d48c6fac35ad63a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.075000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_072dc904c7339f678ea627e8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.971000;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_b8b9b40b309baf589e69ea88.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.947000;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_d2b44de5ce35393c707517a5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.729000;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_6696d45bc897b79be53699c0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.871000;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_b3d4899e05c8095318abbec9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.894043;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;}
.m6e{transform:matrix(0.245349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245349,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.245592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245592,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.245664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245664,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.246024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246024,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.246025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246025,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.246266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246266,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.246581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246581,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.246584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246584,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.246825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246825,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.247127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247127,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.247330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247330,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.247356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247356,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.247408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247408,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.247410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247410,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.247483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247483,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.247789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247789,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.247791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247791,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.247830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247830,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248057,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.248062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248062,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.248187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248187,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248276,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248354,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.248369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248369,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.248431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248431,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.248512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248512,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248556,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248614,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248713,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.248761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248761,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.248929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248929,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.248962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248962,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.249041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249041,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249064,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249414,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249452,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249496,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249729,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249821,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249863,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249887,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249937,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);}
.m27{transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250032,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);}
.m36{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);}
.m29{transform:matrix(0.250392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250392,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.250410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250410,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.250663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250663,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250692,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250795,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.md{transform:matrix(0.251078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251078,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251113,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251213,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251327,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.251667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251667,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.251738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251738,0.000000,0.000000,0.250000,0,0);}
.m65{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);}
.m1b{transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.251937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251937,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252020,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.252432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252432,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252557,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.252603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252603,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.252657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252657,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.253022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253022,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253182,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.254128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254128,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.254482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254482,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-26.843989px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.757498px;}
.v2{vertical-align:26.843389px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.039006px;}
.lsb{letter-spacing:0.041814px;}
.ls5{letter-spacing:0.744005px;}
.ls2{letter-spacing:1.493211px;}
.ls1{letter-spacing:1.496031px;}
.ls9{letter-spacing:1.669324px;}
.ls8{letter-spacing:3.089644px;}
.ls3{letter-spacing:3.668089px;}
.ls4{letter-spacing:3.677463px;}
.ls6{letter-spacing:5.680623px;}
.ls7{letter-spacing:5.828882px;}
.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:-78.536882px;}
.ws6{word-spacing:-34.836455px;}
.wsf{word-spacing:-25.058139px;}
.wsb{word-spacing:-21.641096px;}
.ws5{word-spacing:-18.630883px;}
.ws9{word-spacing:-18.468168px;}
.ws1{word-spacing:-16.856500px;}
.wsa{word-spacing:-15.969309px;}
.wsc{word-spacing:-15.829839px;}
.ws7{word-spacing:-14.698563px;}
.ws2{word-spacing:-14.070953px;}
.wse{word-spacing:-12.312080px;}
.ws8{word-spacing:-10.711526px;}
.wsd{word-spacing:-1.758872px;}
.ws3{word-spacing:0.000000px;}
.ws4{word-spacing:1677.849921px;}
._16{margin-left:-12.632203px;}
._d{margin-left:-11.485802px;}
._11{margin-left:-9.981377px;}
._12{margin-left:-7.977468px;}
._f{margin-left:-6.855836px;}
._3{margin-left:-5.698599px;}
._4{margin-left:-4.416570px;}
._2{margin-left:-2.843397px;}
._0{margin-left:-1.084747px;}
._6{width:1.030441px;}
._7{width:2.115571px;}
._1{width:3.253450px;}
._8{width:4.979437px;}
._9{width:6.070650px;}
._a{width:7.131574px;}
._5{width:8.758093px;}
._14{width:9.790781px;}
._b{width:11.666511px;}
._c{width:12.920998px;}
._15{width:14.015790px;}
._13{width:44.009973px;}
._e{width:46.135802px;}
._10{width:73.763405px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:7.748337px;}
.fs7{font-size:47.187341px;}
.fs5{font-size:54.238238px;}
.fs3{font-size:61.986575px;}
.fs8{font-size:69.734972px;}
.fs4{font-size:73.609171px;}
.fs2{font-size:77.483369px;}
.fs6{font-size:81.357567px;}
.fsa{font-size:85.231766px;}
.fs1{font-size:100.728560px;}
.fs0{font-size:108.476357px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.120938px;}
.y6d{bottom:120.754564px;}
.y20{bottom:123.582513px;}
.y1c3{bottom:128.424511px;}
.y13e{bottom:128.426311px;}
.y8b{bottom:128.427061px;}
.ye1{bottom:130.413210px;}
.y12f{bottom:134.237759px;}
.ya0{bottom:135.400108px;}
.y19f{bottom:135.784408px;}
.y6c{bottom:139.351557px;}
.y44{bottom:140.613506px;}
.y1f{bottom:142.179506px;}
.y111{bottom:144.697705px;}
.y1c2{bottom:152.830701px;}
.y13d{bottom:152.832501px;}
.y8a{bottom:152.833701px;}
.ye0{bottom:154.821501px;}
.yf7{bottom:155.545100px;}
.y9f{bottom:157.480999px;}
.y12e{bottom:158.644999px;}
.y19e{bottom:160.191948px;}
.y1e{bottom:160.774998px;}
.y167{bottom:162.287448px;}
.y43{bottom:165.021796px;}
.y110{bottom:169.105995px;}
.y1c1{bottom:177.238992px;}
.y1e5{bottom:177.240492px;}
.y6b{bottom:177.240792px;}
.y89{bottom:177.241992px;}
.yf6{bottom:177.628091px;}
.ydf{bottom:179.227691px;}
.y1d{bottom:179.370491px;}
.y9e{bottom:179.563991px;}
.yc2{bottom:180.974740px;}
.y12d{bottom:183.051489px;}
.y19d{bottom:184.598139px;}
.y166{bottom:186.694988px;}
.y42{bottom:189.427987px;}
.y10f{bottom:193.512485px;}
.y1c{bottom:197.967483px;}
.yf5{bottom:199.711083px;}
.y1c0{bottom:201.645182px;}
.y1e4{bottom:201.646682px;}
.y6a{bottom:201.646982px;}
.y88{bottom:201.648182px;}
.yde{bottom:203.634481px;}
.yc1{bottom:205.382280px;}
.y12c{bottom:207.459629px;}
.y19c{bottom:209.004329px;}
.y165{bottom:211.101478px;}
.y41{bottom:213.836277px;}
.y1b{bottom:216.562976px;}
.y10e{bottom:217.920475px;}
.y1bf{bottom:226.053472px;}
.y1e3{bottom:226.054972px;}
.y69{bottom:226.055272px;}
.y87{bottom:226.056472px;}
.ydd{bottom:228.040971px;}
.yc0{bottom:229.789071px;}
.y12b{bottom:231.867170px;}
.y19b{bottom:233.411869px;}
.y164{bottom:235.509018px;}
.y40{bottom:238.242467px;}
.y10d{bottom:242.326966px;}
.yf4{bottom:243.875715px;}
.y1be{bottom:250.459662px;}
.y1e2{bottom:250.461162px;}
.y68{bottom:250.461462px;}
.yce{bottom:250.462662px;}
.ydc{bottom:252.450461px;}
.ybf{bottom:254.196611px;}
.y1a{bottom:255.476560px;}
.y12a{bottom:256.273960px;}
.y19a{bottom:257.819409px;}
.y163{bottom:259.915958px;}
.y3f{bottom:262.650757px;}
.yf3{bottom:265.958706px;}
.y10c{bottom:266.734956px;}
.y1bd{bottom:274.867953px;}
.y1e1{bottom:274.869453px;}
.y67{bottom:274.869753px;}
.y9d{bottom:274.870953px;}
.ydb{bottom:276.856802px;}
.ybe{bottom:278.603401px;}
.y129{bottom:280.680450px;}
.y199{bottom:282.225600px;}
.y19{bottom:283.049549px;}
.y162{bottom:284.323949px;}
.y3e{bottom:287.056948px;}
.yf2{bottom:288.041697px;}
.y10b{bottom:291.141146px;}
.y1bc{bottom:299.274143px;}
.y1e0{bottom:299.275643px;}
.y66{bottom:299.275943px;}
.y9c{bottom:299.277293px;}
.yda{bottom:301.263592px;}
.ybd{bottom:303.010941px;}
.y128{bottom:305.088440px;}
.y18{bottom:305.132540px;}
.y198{bottom:306.631790px;}
.y161{bottom:308.729389px;}
.y3d{bottom:311.466438px;}
.y10a{bottom:315.549436px;}
.y1bb{bottom:323.682433px;}
.y1df{bottom:323.683183px;}
.y65{bottom:323.684233px;}
.ycd{bottom:323.685283px;}
.y86{bottom:323.685433px;}
.y9b{bottom:323.685583px;}
.yd9{bottom:325.671132px;}
.y17{bottom:327.215532px;}
.ybc{bottom:327.417431px;}
.y127{bottom:329.496431px;}
.y197{bottom:331.040080px;}
.yf1{bottom:332.207830px;}
.y160{bottom:333.136929px;}
.y3c{bottom:335.872928px;}
.y109{bottom:339.955626px;}
.y1ba{bottom:348.088623px;}
.y1de{bottom:348.089373px;}
.y64{bottom:348.090423px;}
.ycc{bottom:348.091473px;}
.y9a{bottom:348.091773px;}
.y16{bottom:349.298523px;}
.yd8{bottom:350.077922px;}
.ybb{bottom:351.825722px;}
.y126{bottom:353.902171px;}
.y196{bottom:355.448370px;}
.y15f{bottom:357.544919px;}
.yf0{bottom:358.163669px;}
.y3b{bottom:360.280918px;}
.y108{bottom:364.363917px;}
.y15{bottom:371.380164px;}
.y1b9{bottom:372.496163px;}
.y1dd{bottom:372.497663px;}
.y85{bottom:372.498713px;}
.ycb{bottom:372.499763px;}
.y63{bottom:372.499913px;}
.y99{bottom:372.500063px;}
.yd7{bottom:374.485913px;}
.yba{bottom:376.232512px;}
.y195{bottom:379.854561px;}
.y15e{bottom:381.951410px;}
.y3a{bottom:384.687859px;}
.y107{bottom:388.770107px;}
.y14{bottom:393.462555px;}
.y1b8{bottom:396.903704px;}
.y1dc{bottom:396.905204px;}
.y84{bottom:396.905504px;}
.y62{bottom:396.905654px;}
.y13c{bottom:396.906404px;}
.yca{bottom:396.906554px;}
.y98{bottom:396.906854px;}
.yd6{bottom:398.890903px;}
.yb9{bottom:400.640052px;}
.y125{bottom:402.716651px;}
.y194{bottom:404.260751px;}
.yef{bottom:406.204000px;}
.y15d{bottom:406.358350px;}
.y39{bottom:409.095399px;}
.y106{bottom:413.178397px;}
.y13{bottom:415.545546px;}
.y1b7{bottom:421.311244px;}
.y1db{bottom:421.312744px;}
.y83{bottom:421.313044px;}
.y61{bottom:421.313194px;}
.yc9{bottom:421.314094px;}
.y97{bottom:421.314394px;}
.yd5{bottom:423.299193px;}
.y124{bottom:424.799643px;}
.yb8{bottom:425.046842px;}
.yee{bottom:428.286991px;}
.y193{bottom:428.669041px;}
.y15c{bottom:430.765890px;}
.y38{bottom:433.501589px;}
.y105{bottom:437.583387px;}
.y12{bottom:437.628537px;}
.y1b6{bottom:445.717434px;}
.y1da{bottom:445.718934px;}
.y82{bottom:445.719234px;}
.y60{bottom:445.719384px;}
.yc8{bottom:445.720284px;}
.y123{bottom:446.882634px;}
.yd4{bottom:447.705383px;}
.yb7{bottom:449.454383px;}
.yed{bottom:450.368632px;}
.y192{bottom:453.075831px;}
.y15b{bottom:455.173880px;}
.y37{bottom:457.909879px;}
.y104{bottom:461.993178px;}
.y1b5{bottom:470.124974px;}
.y1d9{bottom:470.126474px;}
.y81{bottom:470.127524px;}
.y13b{bottom:470.127674px;}
.yc7{bottom:470.128574px;}
.y5f{bottom:470.128874px;}
.yd3{bottom:472.113674px;}
.yec{bottom:472.451623px;}
.yb6{bottom:473.861173px;}
.y191{bottom:477.483371px;}
.y15a{bottom:479.580071px;}
.y36{bottom:482.314870px;}
.y11{bottom:489.609817px;}
.y122{bottom:491.048766px;}
.y1b4{bottom:494.532515px;}
.y1d8{bottom:494.534015px;}
.y80{bottom:494.534315px;}
.y13a{bottom:494.534465px;}
.yc6{bottom:494.535365px;}
.y5e{bottom:494.535965px;}
.yd2{bottom:496.519864px;}
.yb5{bottom:498.268713px;}
.y190{bottom:501.889562px;}
.y159{bottom:503.988361px;}
.y35{bottom:506.724360px;}
.y103{bottom:510.807658px;}
.y121{bottom:513.129657px;}
.y10{bottom:517.182806px;}
.y1b3{bottom:518.940055px;}
.y1d7{bottom:518.941555px;}
.y7f{bottom:518.941855px;}
.y139{bottom:518.942005px;}
.yeb{bottom:518.942155px;}
.y5d{bottom:518.943505px;}
.yd1{bottom:520.928154px;}
.yb4{bottom:522.675503px;}
.y18f{bottom:526.297852px;}
.y158{bottom:528.394851px;}
.y34{bottom:531.130550px;}
.y102{bottom:532.890649px;}
.y120{bottom:535.212648px;}
.yf{bottom:539.265797px;}
.y1b2{bottom:543.346245px;}
.y1d6{bottom:543.347745px;}
.y96{bottom:543.348045px;}
.y138{bottom:543.348195px;}
.y7e{bottom:543.348345px;}
.y5c{bottom:543.349695px;}
.yd0{bottom:545.334344px;}
.yb3{bottom:547.083044px;}
.y18e{bottom:550.704042px;}
.y157{bottom:552.802841px;}
.y101{bottom:554.972290px;}
.y33{bottom:555.538840px;}
.ye{bottom:561.348188px;}
.y1b1{bottom:567.753785px;}
.y1d5{bottom:567.756035px;}
.y7d{bottom:567.756335px;}
.y137{bottom:567.756485px;}
.yea{bottom:567.756635px;}
.y5b{bottom:567.757985px;}
.yb2{bottom:571.489834px;}
.y18d{bottom:575.112332px;}
.y156{bottom:577.209332px;}
.y32{bottom:579.943830px;}
.y11f{bottom:581.703930px;}
.yd{bottom:583.431179px;}
.ycf{bottom:589.113327px;}
.y1b0{bottom:592.161326px;}
.y1d4{bottom:592.162826px;}
.yc5{bottom:592.163276px;}
.ye9{bottom:592.163426px;}
.y95{bottom:592.164326px;}
.y7c{bottom:592.164476px;}
.y5a{bottom:592.164776px;}
.y17b{bottom:594.274825px;}
.yb1{bottom:595.896324px;}
.y100{bottom:599.137673px;}
.y18c{bottom:599.519123px;}
.y155{bottom:601.616272px;}
.y31{bottom:604.351821px;}
.yc{bottom:605.514170px;}
.y11e{bottom:606.110120px;}
.y1af{bottom:616.568866px;}
.y1d3{bottom:616.570366px;}
.y94{bottom:616.570816px;}
.ye8{bottom:616.570966px;}
.y142{bottom:616.571566px;}
.y7b{bottom:616.572016px;}
.y59{bottom:616.572316px;}
.y17a{bottom:618.684315px;}
.yb0{bottom:620.304464px;}
.yff{bottom:621.220664px;}
.y18b{bottom:623.926663px;}
.y154{bottom:626.023812px;}
.yb{bottom:627.595811px;}
.y30{bottom:628.758311px;}
.y1ae{bottom:640.975656px;}
.ye7{bottom:640.977756px;}
.y1d2{bottom:640.977906px;}
.y141{bottom:640.978356px;}
.y7a{bottom:640.978806px;}
.y58{bottom:640.979106px;}
.y179{bottom:643.089305px;}
.yfe{bottom:643.303655px;}
.yaf{bottom:644.712005px;}
.y18a{bottom:648.334203px;}
.ya{bottom:649.678803px;}
.y153{bottom:650.431802px;}
.y2f{bottom:653.166301px;}
.y11d{bottom:654.924600px;}
.y1ad{bottom:665.383196px;}
.y79{bottom:665.385296px;}
.y1d1{bottom:665.385446px;}
.y140{bottom:665.385896px;}
.yc4{bottom:665.386496px;}
.y57{bottom:665.386646px;}
.y136{bottom:665.386796px;}
.y178{bottom:667.498795px;}
.yae{bottom:669.118795px;}
.y9{bottom:671.761794px;}
.y189{bottom:672.741743px;}
.y152{bottom:674.836493px;}
.y11c{bottom:677.007592px;}
.y2e{bottom:677.572791px;}
.y1ac{bottom:689.790737px;}
.y78{bottom:689.792237px;}
.y93{bottom:689.792687px;}
.y1d0{bottom:689.792987px;}
.yc3{bottom:689.793287px;}
.y56{bottom:689.793437px;}
.yfd{bottom:689.793587px;}
.y177{bottom:691.904986px;}
.yad{bottom:693.525285px;}
.y188{bottom:697.149284px;}
.y11b{bottom:699.090583px;}
.y151{bottom:699.244783px;}
.y2d{bottom:701.980782px;}
.y1ab{bottom:714.198277px;}
.y77{bottom:714.199777px;}
.y92{bottom:714.200227px;}
.y1cf{bottom:714.200527px;}
.y55{bottom:714.200977px;}
.yfc{bottom:714.201127px;}
.y176{bottom:716.313276px;}
.yac{bottom:717.931775px;}
.y187{bottom:721.556824px;}
.y150{bottom:723.650973px;}
.y2c{bottom:726.389222px;}
.y1aa{bottom:738.605817px;}
.y91{bottom:738.607017px;}
.y76{bottom:738.607767px;}
.y54{bottom:738.607917px;}
.y1ce{bottom:738.608067px;}
.y175{bottom:740.718266px;}
.yab{bottom:742.340066px;}
.y11a{bottom:745.580514px;}
.y186{bottom:745.964364px;}
.y14f{bottom:748.059263px;}
.y2b{bottom:750.796762px;}
.y1a9{bottom:763.013357px;}
.y75{bottom:763.014257px;}
.y90{bottom:763.014557px;}
.y53{bottom:763.015457px;}
.y1cd{bottom:763.015607px;}
.y174{bottom:765.126556px;}
.yaa{bottom:766.746256px;}
.y119{bottom:769.988054px;}
.y185{bottom:770.371904px;}
.y14e{bottom:772.467553px;}
.y1a8{bottom:787.420897px;}
.y8f{bottom:787.421347px;}
.y52{bottom:787.422247px;}
.y1cc{bottom:787.423147px;}
.y173{bottom:789.532747px;}
.ya9{bottom:791.154546px;}
.y118{bottom:794.394845px;}
.y184{bottom:794.778695px;}
.y14d{bottom:796.873744px;}
.y1a7{bottom:811.828438px;}
.y51{bottom:811.828738px;}
.y8e{bottom:811.828888px;}
.ye6{bottom:811.829938px;}
.y1cb{bottom:811.830688px;}
.y172{bottom:813.940737px;}
.ya8{bottom:815.560736px;}
.y117{bottom:818.802385px;}
.y183{bottom:819.186235px;}
.y14c{bottom:821.283234px;}
.y2a{bottom:824.018033px;}
.y50{bottom:836.235678px;}
.y1a6{bottom:836.235978px;}
.y74{bottom:836.236728px;}
.y1ca{bottom:836.238228px;}
.y171{bottom:838.348727px;}
.ya7{bottom:839.969026px;}
.y182{bottom:843.593775px;}
.y14b{bottom:845.689424px;}
.y4f{bottom:860.643218px;}
.yfb{bottom:860.643368px;}
.y135{bottom:860.643518px;}
.y1c9{bottom:860.645768px;}
.y170{bottom:862.755217px;}
.y8{bottom:864.064717px;}
.ya6{bottom:864.375217px;}
.y116{bottom:867.616865px;}
.y181{bottom:868.001315px;}
.y14a{bottom:870.097714px;}
.y7{bottom:882.660209px;}
.y1a5{bottom:885.049708px;}
.y73{bottom:885.049858px;}
.yfa{bottom:885.050158px;}
.y134{bottom:885.050308px;}
.ye5{bottom:885.050458px;}
.y4e{bottom:885.051208px;}
.y1c8{bottom:885.051958px;}
.y16f{bottom:887.163208px;}
.ya5{bottom:888.783507px;}
.y115{bottom:889.698507px;}
.y180{bottom:892.408855px;}
.y149{bottom:894.502705px;}
.y29{bottom:897.240054px;}
.y1a4{bottom:909.455899px;}
.y72{bottom:909.456049px;}
.y4d{bottom:909.456199px;}
.yf9{bottom:909.456349px;}
.y133{bottom:909.456499px;}
.ye4{bottom:909.456649px;}
.y13f{bottom:909.457399px;}
.y1c7{bottom:909.458149px;}
.y16e{bottom:911.569698px;}
.y114{bottom:911.781498px;}
.ya4{bottom:913.189697px;}
.y17f{bottom:916.816396px;}
.y148{bottom:918.909195px;}
.y28{bottom:924.813043px;}
.y6{bottom:933.360189px;}
.y1a3{bottom:933.863439px;}
.y71{bottom:933.864339px;}
.y4c{bottom:933.864639px;}
.y132{bottom:933.864789px;}
.ye3{bottom:933.864939px;}
.y8d{bottom:933.865689px;}
.y1c6{bottom:933.866439px;}
.y16d{bottom:935.977688px;}
.ya3{bottom:937.597987px;}
.y17e{bottom:941.223186px;}
.y147{bottom:943.317185px;}
.y27{bottom:946.896034px;}
.y1a2{bottom:958.270979px;}
.y70{bottom:958.271879px;}
.y113{bottom:958.272029px;}
.y4b{bottom:958.272179px;}
.y131{bottom:958.272329px;}
.ye2{bottom:958.272479px;}
.y1c5{bottom:958.273229px;}
.y16c{bottom:960.384178px;}
.ya2{bottom:962.004178px;}
.y5{bottom:963.577677px;}
.y146{bottom:967.725175px;}
.y26{bottom:968.979025px;}
.y1a1{bottom:982.678519px;}
.y4a{bottom:982.678669px;}
.y112{bottom:982.678819px;}
.y130{bottom:982.679119px;}
.y8c{bottom:982.679269px;}
.y1c4{bottom:982.680019px;}
.y16b{bottom:984.792169px;}
.ya1{bottom:986.412168px;}
.y17d{bottom:990.036166px;}
.y25{bottom:991.062016px;}
.y145{bottom:992.131666px;}
.y4{bottom:993.796515px;}
.y1a0{bottom:1007.086060px;}
.yf8{bottom:1007.086360px;}
.y6f{bottom:1007.086660px;}
.y49{bottom:1007.086810px;}
.y16a{bottom:1009.199389px;}
.y24{bottom:1013.145007px;}
.y144{bottom:1016.539656px;}
.y3{bottom:1024.015353px;}
.y6e{bottom:1031.493150px;}
.y48{bottom:1031.493600px;}
.y169{bottom:1033.606330px;}
.y23{bottom:1035.227998px;}
.y2{bottom:1051.134142px;}
.y17c{bottom:1055.324615px;}
.y47{bottom:1055.901140px;}
.y22{bottom:1057.309640px;}
.y143{bottom:1057.419139px;}
.y168{bottom:1058.013870px;}
.y46{bottom:1154.715381px;}
.y45{bottom:1155.057100px;}
.y21{bottom:1155.148600px;}
.h10{height:6.338140px;}
.hb{height:44.506361px;}
.h5{height:45.312186px;}
.hc{height:46.644885px;}
.hf{height:49.790770px;}
.h8{height:50.402383px;}
.h7{height:50.705019px;}
.he{height:53.808304px;}
.h4{height:56.640343px;}
.hd{height:57.043207px;}
.h6{height:60.212302px;}
.h11{height:62.304421px;}
.h9{height:65.467418px;}
.ha{height:66.550490px;}
.h3{height:73.632577px;}
.h2{height:79.296217px;}
.h1{height:1262.879062px;}
.h0{height:1263.000000px;}
.w1{width:878.513400px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:6.963048px;}
.x2{left:120.754701px;}
.x3{left:142.717692px;}
.x14{left:144.443891px;}
.x11{left:145.973891px;}
.x4{left:153.700388px;}
.xd{left:177.551878px;}
.xc{left:178.690378px;}
.x6{left:186.646675px;}
.x12{left:187.697874px;}
.xe{left:198.076370px;}
.xa{left:218.735862px;}
.x13{left:233.528856px;}
.xf{left:306.445327px;}
.x10{left:317.620322px;}
.xb{left:323.546820px;}
.x9{left:355.328807px;}
.x5{left:444.554051px;}
.x7{left:707.339666px;}
.x8{left:717.527662px;}
@media print{
.v3{vertical-align:-23.861324pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.339999pt;}
.v2{vertical-align:23.860790pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.034672pt;}
.lsb{letter-spacing:0.037168pt;}
.ls5{letter-spacing:0.661337pt;}
.ls2{letter-spacing:1.327299pt;}
.ls1{letter-spacing:1.329805pt;}
.ls9{letter-spacing:1.483844pt;}
.ls8{letter-spacing:2.746350pt;}
.ls3{letter-spacing:3.260523pt;}
.ls4{letter-spacing:3.268856pt;}
.ls6{letter-spacing:5.049442pt;}
.ls7{letter-spacing:5.181229pt;}
.ws0{word-spacing:-69.810562pt;}
.ws6{word-spacing:-30.965738pt;}
.wsf{word-spacing:-22.273901pt;}
.wsb{word-spacing:-19.236530pt;}
.ws5{word-spacing:-16.560785pt;}
.ws9{word-spacing:-16.416149pt;}
.ws1{word-spacing:-14.983556pt;}
.wsa{word-spacing:-14.194941pt;}
.wsc{word-spacing:-14.070968pt;}
.ws7{word-spacing:-13.065389pt;}
.ws2{word-spacing:-12.507513pt;}
.wse{word-spacing:-10.944071pt;}
.ws8{word-spacing:-9.521357pt;}
.wsd{word-spacing:-1.563442pt;}
.ws3{word-spacing:0.000000pt;}
.ws4{word-spacing:1491.422152pt;}
._16{margin-left:-11.228625pt;}
._d{margin-left:-10.209602pt;}
._11{margin-left:-8.872335pt;}
._12{margin-left:-7.091083pt;}
._f{margin-left:-6.094076pt;}
._3{margin-left:-5.065422pt;}
._4{margin-left:-3.925840pt;}
._2{margin-left:-2.527464pt;}
._0{margin-left:-0.964220pt;}
._6{width:0.915947pt;}
._7{width:1.880508pt;}
._1{width:2.891956pt;}
._8{width:4.426166pt;}
._9{width:5.396134pt;}
._a{width:6.339177pt;}
._5{width:7.784971pt;}
._14{width:8.702917pt;}
._b{width:10.370232pt;}
._c{width:11.485332pt;}
._15{width:12.458480pt;}
._13{width:39.119976pt;}
._e{width:41.009602pt;}
._10{width:65.567471pt;}
.fs9{font-size:6.887411pt;}
.fs7{font-size:41.944303pt;}
.fs5{font-size:48.211767pt;}
.fs3{font-size:55.099178pt;}
.fs8{font-size:61.986642pt;}
.fs4{font-size:65.430374pt;}
.fs2{font-size:68.874106pt;}
.fs6{font-size:72.317838pt;}
.fsa{font-size:75.761570pt;}
.fs1{font-size:89.536498pt;}
.fs0{font-size:96.423428pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.107500pt;}
.y6d{bottom:107.337390pt;}
.y20{bottom:109.851123pt;}
.y1c3{bottom:114.155121pt;}
.y13e{bottom:114.156721pt;}
.y8b{bottom:114.157388pt;}
.ye1{bottom:115.922854pt;}
.y12f{bottom:119.322452pt;}
.ya0{bottom:120.355652pt;}
.y19f{bottom:120.697252pt;}
.y6c{bottom:123.868050pt;}
.y44{bottom:124.989783pt;}
.y1f{bottom:126.381783pt;}
.y111{bottom:128.620182pt;}
.y1c2{bottom:135.849512pt;}
.y13d{bottom:135.851112pt;}
.y8a{bottom:135.852179pt;}
.ye0{bottom:137.619112pt;}
.yf7{bottom:138.262311pt;}
.y9f{bottom:139.983111pt;}
.y12e{bottom:141.017777pt;}
.y19e{bottom:142.392843pt;}
.y1e{bottom:142.911109pt;}
.y167{bottom:144.255509pt;}
.y43{bottom:146.686041pt;}
.y110{bottom:150.316440pt;}
.y1c1{bottom:157.545770pt;}
.y1e5{bottom:157.547104pt;}
.y6b{bottom:157.547370pt;}
.y89{bottom:157.548437pt;}
.yf6{bottom:157.891637pt;}
.ydf{bottom:159.313503pt;}
.y1d{bottom:159.440436pt;}
.y9e{bottom:159.612436pt;}
.yc2{bottom:160.866436pt;}
.y12d{bottom:162.712435pt;}
.y19d{bottom:164.087234pt;}
.y166{bottom:165.951100pt;}
.y42{bottom:168.380433pt;}
.y10f{bottom:172.011098pt;}
.y1c{bottom:175.971096pt;}
.yf5{bottom:177.520962pt;}
.y1c0{bottom:179.240162pt;}
.y1e4{bottom:179.241495pt;}
.y6a{bottom:179.241762pt;}
.y88{bottom:179.242828pt;}
.yde{bottom:181.008428pt;}
.yc1{bottom:182.562027pt;}
.y12c{bottom:184.408560pt;}
.y19c{bottom:185.781626pt;}
.y165{bottom:187.645758pt;}
.y41{bottom:190.076691pt;}
.y1b{bottom:192.500423pt;}
.y10e{bottom:193.707089pt;}
.y1bf{bottom:200.936420pt;}
.y1e3{bottom:200.937753pt;}
.y69{bottom:200.938020pt;}
.y87{bottom:200.939086pt;}
.ydd{bottom:202.703086pt;}
.yc0{bottom:204.256952pt;}
.y12b{bottom:206.104151pt;}
.y19b{bottom:207.477217pt;}
.y164{bottom:209.341350pt;}
.y40{bottom:211.771082pt;}
.y10d{bottom:215.401747pt;}
.yf4{bottom:216.778413pt;}
.y1be{bottom:222.630811pt;}
.y1e2{bottom:222.632144pt;}
.y68{bottom:222.632411pt;}
.yce{bottom:222.633478pt;}
.ydc{bottom:224.400410pt;}
.ybf{bottom:225.952543pt;}
.y1a{bottom:227.090276pt;}
.y12a{bottom:227.799076pt;}
.y19a{bottom:229.172808pt;}
.y163{bottom:231.036408pt;}
.y3f{bottom:233.467340pt;}
.yf3{bottom:236.407739pt;}
.y10c{bottom:237.097738pt;}
.y1bd{bottom:244.327069pt;}
.y1e1{bottom:244.328402pt;}
.y67{bottom:244.328669pt;}
.y9d{bottom:244.329736pt;}
.ydb{bottom:246.094935pt;}
.ybe{bottom:247.647468pt;}
.y129{bottom:249.493733pt;}
.y199{bottom:250.867200pt;}
.y19{bottom:251.599599pt;}
.y162{bottom:252.732399pt;}
.y3e{bottom:255.161731pt;}
.yf2{bottom:256.037064pt;}
.y10b{bottom:258.792130pt;}
.y1bc{bottom:266.021460pt;}
.y1e0{bottom:266.022794pt;}
.y66{bottom:266.023060pt;}
.y9c{bottom:266.024260pt;}
.yda{bottom:267.789860pt;}
.ybd{bottom:269.343059pt;}
.y128{bottom:271.189725pt;}
.y18{bottom:271.228925pt;}
.y198{bottom:272.561591pt;}
.y161{bottom:274.426124pt;}
.y3d{bottom:276.859056pt;}
.y10a{bottom:280.488388pt;}
.y1bb{bottom:287.717718pt;}
.y1df{bottom:287.718385pt;}
.y65{bottom:287.719318pt;}
.ycd{bottom:287.720252pt;}
.y86{bottom:287.720385pt;}
.y9b{bottom:287.720518pt;}
.yd9{bottom:289.485451pt;}
.y17{bottom:290.858250pt;}
.ybc{bottom:291.037717pt;}
.y127{bottom:292.885716pt;}
.y197{bottom:294.257849pt;}
.yf1{bottom:295.295849pt;}
.y160{bottom:296.121715pt;}
.y3c{bottom:298.553714pt;}
.y109{bottom:302.182779pt;}
.y1ba{bottom:309.412110pt;}
.y1de{bottom:309.412776pt;}
.y64{bottom:309.413710pt;}
.ycc{bottom:309.414643pt;}
.y9a{bottom:309.414910pt;}
.y16{bottom:310.487576pt;}
.yd8{bottom:311.180375pt;}
.ybb{bottom:312.733975pt;}
.y126{bottom:314.579707pt;}
.y196{bottom:315.954107pt;}
.y15f{bottom:317.817706pt;}
.yf0{bottom:318.367706pt;}
.y3b{bottom:320.249705pt;}
.y108{bottom:323.879037pt;}
.y15{bottom:330.115701pt;}
.y1b9{bottom:331.107701pt;}
.y1dd{bottom:331.109034pt;}
.y85{bottom:331.109968pt;}
.ycb{bottom:331.110901pt;}
.y63{bottom:331.111034pt;}
.y99{bottom:331.111168pt;}
.yd7{bottom:332.876367pt;}
.yba{bottom:334.428900pt;}
.y195{bottom:337.648498pt;}
.y15e{bottom:339.512364pt;}
.y3a{bottom:341.944763pt;}
.y107{bottom:345.573428pt;}
.y14{bottom:349.744493pt;}
.y1b8{bottom:352.803292pt;}
.y1dc{bottom:352.804626pt;}
.y84{bottom:352.804892pt;}
.y62{bottom:352.805026pt;}
.y13c{bottom:352.805692pt;}
.yca{bottom:352.805826pt;}
.y98{bottom:352.806092pt;}
.yd6{bottom:354.569691pt;}
.yb9{bottom:356.124491pt;}
.y125{bottom:357.970357pt;}
.y194{bottom:359.342890pt;}
.yef{bottom:361.070222pt;}
.y15d{bottom:361.207422pt;}
.y39{bottom:363.640355pt;}
.y106{bottom:367.269686pt;}
.y13{bottom:369.373819pt;}
.y1b7{bottom:374.498883pt;}
.y1db{bottom:374.500217pt;}
.y83{bottom:374.500483pt;}
.y61{bottom:374.500617pt;}
.yc9{bottom:374.501417pt;}
.y97{bottom:374.501683pt;}
.yd5{bottom:376.265949pt;}
.y124{bottom:377.599682pt;}
.yb8{bottom:377.819415pt;}
.yee{bottom:380.699548pt;}
.y193{bottom:381.039148pt;}
.y15c{bottom:382.903013pt;}
.y38{bottom:385.334746pt;}
.y105{bottom:388.963011pt;}
.y12{bottom:389.003144pt;}
.y1b6{bottom:396.193275pt;}
.y1da{bottom:396.194608pt;}
.y82{bottom:396.194875pt;}
.y60{bottom:396.195008pt;}
.yc8{bottom:396.195808pt;}
.y123{bottom:397.229008pt;}
.yd4{bottom:397.960341pt;}
.yb7{bottom:399.515007pt;}
.yed{bottom:400.327673pt;}
.y192{bottom:402.734072pt;}
.y15b{bottom:404.599005pt;}
.y37{bottom:407.031004pt;}
.y104{bottom:410.660602pt;}
.y1b5{bottom:417.888866pt;}
.y1d9{bottom:417.890199pt;}
.y81{bottom:417.891133pt;}
.y13b{bottom:417.891266pt;}
.yc7{bottom:417.892066pt;}
.y5f{bottom:417.892333pt;}
.yd3{bottom:419.656599pt;}
.yec{bottom:419.956999pt;}
.yb6{bottom:421.209931pt;}
.y191{bottom:424.429664pt;}
.y15a{bottom:426.293396pt;}
.y36{bottom:428.724328pt;}
.y11{bottom:435.208726pt;}
.y122{bottom:436.487792pt;}
.y1b4{bottom:439.584457pt;}
.y1d8{bottom:439.585791pt;}
.y80{bottom:439.586057pt;}
.y13a{bottom:439.586191pt;}
.yc6{bottom:439.586991pt;}
.y5e{bottom:439.587524pt;}
.yd2{bottom:441.350990pt;}
.yb5{bottom:442.905523pt;}
.y190{bottom:446.124055pt;}
.y159{bottom:447.989654pt;}
.y35{bottom:450.421653pt;}
.y103{bottom:454.051252pt;}
.y121{bottom:456.115251pt;}
.y10{bottom:459.718049pt;}
.y1b3{bottom:461.280049pt;}
.y1d7{bottom:461.281382pt;}
.y7f{bottom:461.281649pt;}
.y139{bottom:461.281782pt;}
.yeb{bottom:461.281915pt;}
.y5d{bottom:461.283115pt;}
.yd1{bottom:463.047248pt;}
.yb4{bottom:464.600447pt;}
.y18f{bottom:467.820313pt;}
.y158{bottom:469.684312pt;}
.y34{bottom:472.116044pt;}
.y102{bottom:473.680577pt;}
.y120{bottom:475.744576pt;}
.yf{bottom:479.347375pt;}
.y1b2{bottom:482.974440pt;}
.y1d6{bottom:482.975773pt;}
.y96{bottom:482.976040pt;}
.y138{bottom:482.976173pt;}
.y7e{bottom:482.976307pt;}
.y5c{bottom:482.977507pt;}
.yd0{bottom:484.741639pt;}
.yb3{bottom:486.296039pt;}
.y18e{bottom:489.514704pt;}
.y157{bottom:491.380303pt;}
.y101{bottom:493.308703pt;}
.y33{bottom:493.812302pt;}
.ye{bottom:498.976167pt;}
.y1b1{bottom:504.670031pt;}
.y1d5{bottom:504.672031pt;}
.y7d{bottom:504.672298pt;}
.y137{bottom:504.672431pt;}
.yea{bottom:504.672565pt;}
.y5b{bottom:504.673765pt;}
.yb2{bottom:507.990963pt;}
.y18d{bottom:511.210962pt;}
.y156{bottom:513.074961pt;}
.y32{bottom:515.505627pt;}
.y11f{bottom:517.070160pt;}
.yd{bottom:518.605493pt;}
.ycf{bottom:523.656290pt;}
.y1b0{bottom:526.365623pt;}
.y1d4{bottom:526.366956pt;}
.yc5{bottom:526.367356pt;}
.ye9{bottom:526.367489pt;}
.y95{bottom:526.368289pt;}
.y7c{bottom:526.368423pt;}
.y5a{bottom:526.368689pt;}
.y17b{bottom:528.244289pt;}
.yb1{bottom:529.685621pt;}
.y100{bottom:532.566820pt;}
.y18c{bottom:532.905887pt;}
.y155{bottom:534.770019pt;}
.y31{bottom:537.201618pt;}
.yc{bottom:538.234818pt;}
.y11e{bottom:538.764551pt;}
.y1af{bottom:548.061214pt;}
.y1d3{bottom:548.062547pt;}
.y94{bottom:548.062947pt;}
.ye8{bottom:548.063081pt;}
.y142{bottom:548.063614pt;}
.y7b{bottom:548.064014pt;}
.y59{bottom:548.064281pt;}
.y17a{bottom:549.941613pt;}
.yb0{bottom:551.381746pt;}
.yff{bottom:552.196146pt;}
.y18b{bottom:554.601478pt;}
.y154{bottom:556.465611pt;}
.yb{bottom:557.862943pt;}
.y30{bottom:558.896276pt;}
.y1ae{bottom:569.756139pt;}
.ye7{bottom:569.758005pt;}
.y1d2{bottom:569.758139pt;}
.y141{bottom:569.758539pt;}
.y7a{bottom:569.758939pt;}
.y58{bottom:569.759205pt;}
.y179{bottom:571.634938pt;}
.yfe{bottom:571.825471pt;}
.yaf{bottom:573.077337pt;}
.y18a{bottom:576.297069pt;}
.ya{bottom:577.492269pt;}
.y153{bottom:578.161602pt;}
.y2f{bottom:580.592268pt;}
.y11d{bottom:582.155200pt;}
.y1ad{bottom:591.451730pt;}
.y79{bottom:591.453597pt;}
.y1d1{bottom:591.453730pt;}
.y140{bottom:591.454130pt;}
.yc4{bottom:591.454663pt;}
.y57{bottom:591.454797pt;}
.y136{bottom:591.454930pt;}
.y178{bottom:593.332263pt;}
.yae{bottom:594.772262pt;}
.y9{bottom:597.121594pt;}
.y189{bottom:597.992661pt;}
.y152{bottom:599.854660pt;}
.y11c{bottom:601.784526pt;}
.y2e{bottom:602.286926pt;}
.y1ac{bottom:613.147321pt;}
.y78{bottom:613.148655pt;}
.y93{bottom:613.149055pt;}
.y1d0{bottom:613.149321pt;}
.yc3{bottom:613.149588pt;}
.y56{bottom:613.149721pt;}
.yfd{bottom:613.149855pt;}
.y177{bottom:615.026654pt;}
.yad{bottom:616.466920pt;}
.y188{bottom:619.688252pt;}
.y11b{bottom:621.413851pt;}
.y151{bottom:621.550918pt;}
.y2d{bottom:623.982917pt;}
.y1ab{bottom:634.842913pt;}
.y77{bottom:634.844246pt;}
.y92{bottom:634.844646pt;}
.y1cf{bottom:634.844913pt;}
.y55{bottom:634.845313pt;}
.yfc{bottom:634.845446pt;}
.y176{bottom:636.722912pt;}
.yac{bottom:638.161578pt;}
.y187{bottom:641.383843pt;}
.y150{bottom:643.245309pt;}
.y2c{bottom:645.679308pt;}
.y1aa{bottom:656.538504pt;}
.y91{bottom:656.539571pt;}
.y76{bottom:656.540237pt;}
.y54{bottom:656.540371pt;}
.y1ce{bottom:656.540504pt;}
.y175{bottom:658.416237pt;}
.yab{bottom:659.857836pt;}
.y11a{bottom:662.738235pt;}
.y186{bottom:663.079435pt;}
.y14f{bottom:664.941567pt;}
.y2b{bottom:667.374900pt;}
.y1a9{bottom:678.234095pt;}
.y75{bottom:678.234895pt;}
.y90{bottom:678.235162pt;}
.y53{bottom:678.235962pt;}
.y1cd{bottom:678.236095pt;}
.y174{bottom:680.112495pt;}
.yaa{bottom:681.552227pt;}
.y119{bottom:684.433826pt;}
.y185{bottom:684.775026pt;}
.y14e{bottom:686.637825pt;}
.y1a8{bottom:699.929687pt;}
.y8f{bottom:699.930087pt;}
.y52{bottom:699.930887pt;}
.y1cc{bottom:699.931687pt;}
.y173{bottom:701.806886pt;}
.ya9{bottom:703.248485pt;}
.y118{bottom:706.128751pt;}
.y184{bottom:706.469951pt;}
.y14d{bottom:708.332217pt;}
.y1a7{bottom:721.625278pt;}
.y51{bottom:721.625545pt;}
.y8e{bottom:721.625678pt;}
.ye6{bottom:721.626611pt;}
.y1cb{bottom:721.627278pt;}
.y172{bottom:723.502877pt;}
.ya8{bottom:724.942877pt;}
.y117{bottom:727.824342pt;}
.y183{bottom:728.165542pt;}
.y14c{bottom:730.029541pt;}
.y2a{bottom:732.460474pt;}
.y50{bottom:743.320603pt;}
.y1a6{bottom:743.320869pt;}
.y74{bottom:743.321536pt;}
.y1ca{bottom:743.322869pt;}
.y171{bottom:745.198869pt;}
.ya7{bottom:746.639135pt;}
.y182{bottom:749.861133pt;}
.y14b{bottom:751.723933pt;}
.y4f{bottom:765.016194pt;}
.yfb{bottom:765.016327pt;}
.y135{bottom:765.016461pt;}
.y1c9{bottom:765.018461pt;}
.y170{bottom:766.893527pt;}
.y8{bottom:768.057526pt;}
.ya6{bottom:768.333526pt;}
.y116{bottom:771.214991pt;}
.y181{bottom:771.556725pt;}
.y14a{bottom:773.420191pt;}
.y7{bottom:784.586853pt;}
.y1a5{bottom:786.710852pt;}
.y73{bottom:786.710985pt;}
.yfa{bottom:786.711252pt;}
.y134{bottom:786.711385pt;}
.ye5{bottom:786.711519pt;}
.y4e{bottom:786.712185pt;}
.y1c8{bottom:786.712852pt;}
.y16f{bottom:788.589518pt;}
.ya5{bottom:790.029784pt;}
.y115{bottom:790.843117pt;}
.y180{bottom:793.252316pt;}
.y149{bottom:795.113515pt;}
.y29{bottom:797.546714pt;}
.y1a4{bottom:808.405243pt;}
.y72{bottom:808.405377pt;}
.y4d{bottom:808.405510pt;}
.yf9{bottom:808.405643pt;}
.y133{bottom:808.405777pt;}
.ye4{bottom:808.405910pt;}
.y13f{bottom:808.406577pt;}
.y1c7{bottom:808.407243pt;}
.y16e{bottom:810.284176pt;}
.y114{bottom:810.472442pt;}
.ya4{bottom:811.724175pt;}
.y17f{bottom:814.947907pt;}
.y148{bottom:816.808173pt;}
.y28{bottom:822.056038pt;}
.y6{bottom:829.653501pt;}
.y1a3{bottom:830.100835pt;}
.y71{bottom:830.101635pt;}
.y4c{bottom:830.101901pt;}
.y132{bottom:830.102035pt;}
.ye3{bottom:830.102168pt;}
.y8d{bottom:830.102835pt;}
.y1c6{bottom:830.103501pt;}
.y16d{bottom:831.980167pt;}
.ya3{bottom:833.420433pt;}
.y17e{bottom:836.642832pt;}
.y147{bottom:838.504165pt;}
.y27{bottom:841.685363pt;}
.y1a2{bottom:851.796426pt;}
.y70{bottom:851.797226pt;}
.y113{bottom:851.797359pt;}
.y4b{bottom:851.797493pt;}
.y131{bottom:851.797626pt;}
.ye2{bottom:851.797759pt;}
.y1c5{bottom:851.798426pt;}
.y16c{bottom:853.674825pt;}
.ya2{bottom:855.114825pt;}
.y5{bottom:856.513491pt;}
.y146{bottom:860.200156pt;}
.y26{bottom:861.314689pt;}
.y1a1{bottom:873.492017pt;}
.y4a{bottom:873.492151pt;}
.y112{bottom:873.492284pt;}
.y130{bottom:873.492551pt;}
.y8c{bottom:873.492684pt;}
.y1c4{bottom:873.493351pt;}
.y16b{bottom:875.370816pt;}
.ya1{bottom:876.810816pt;}
.y17d{bottom:880.032148pt;}
.y25{bottom:880.944014pt;}
.y145{bottom:881.894814pt;}
.y4{bottom:883.374680pt;}
.y1a0{bottom:895.187609pt;}
.yf8{bottom:895.187875pt;}
.y6f{bottom:895.188142pt;}
.y49{bottom:895.188275pt;}
.y16a{bottom:897.066124pt;}
.y24{bottom:900.573340pt;}
.y144{bottom:903.590805pt;}
.y3{bottom:910.235869pt;}
.y6e{bottom:916.882800pt;}
.y48{bottom:916.883200pt;}
.y169{bottom:918.761182pt;}
.y23{bottom:920.202665pt;}
.y2{bottom:934.341460pt;}
.y17c{bottom:938.066325pt;}
.y47{bottom:938.578791pt;}
.y22{bottom:939.830791pt;}
.y143{bottom:939.928124pt;}
.y168{bottom:940.456773pt;}
.y46{bottom:1026.413672pt;}
.y45{bottom:1026.717423pt;}
.y21{bottom:1026.798756pt;}
.h10{height:5.633902pt;}
.hb{height:39.561210pt;}
.h5{height:40.277499pt;}
.hc{height:41.462120pt;}
.hf{height:44.258462pt;}
.h8{height:44.802119pt;}
.h7{height:45.071128pt;}
.he{height:47.829603pt;}
.h4{height:50.346971pt;}
.hd{height:50.705073pt;}
.h6{height:53.522046pt;}
.h11{height:55.381707pt;}
.h9{height:58.193260pt;}
.ha{height:59.155991pt;}
.h3{height:65.451180pt;}
.h2{height:70.485526pt;}
.h1{height:1122.559167pt;}
.h0{height:1122.666667pt;}
.w1{width:780.900800pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:6.189376pt;}
.x2{left:107.337512pt;}
.x3{left:126.860171pt;}
.x14{left:128.394570pt;}
.x11{left:129.754570pt;}
.x4{left:136.622567pt;}
.xd{left:157.823892pt;}
.xc{left:158.835891pt;}
.x6{left:165.908155pt;}
.x12{left:166.842555pt;}
.xe{left:176.067884pt;}
.xa{left:194.431877pt;}
.x13{left:207.581205pt;}
.xf{left:272.395846pt;}
.x10{left:282.329175pt;}
.xb{left:287.597173pt;}
.x9{left:315.847829pt;}
.x5{left:395.159157pt;}
.x7{left:628.746370pt;}
.x8{left:637.802366pt;}
}




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