
    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_44bcb8df8b4ea48919195411.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.078000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_18c80f918211f9cb5748eb27.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.964789;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_82a0f561eb8df0c91e754047.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.024902;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_3b0f6fceba8f7dbb539f9557.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.038574;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_10ea4f03c3ddea14413e3aea.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.074000;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_6b15d683b931e5aafd2e15ea.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919000;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_c17e62d3eac313b62b1dac2e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914000;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_bed6f0c257702d52cc812e44.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.041992;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_e38fb7347ba3e8b03e237876.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.989746;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;}
.m1b{transform:matrix(0.245065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245065,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.245167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245167,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.245178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245178,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245256,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.245330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245330,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245344,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.245435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245435,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.245443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245443,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.245488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245488,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.245519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245519,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.245656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245656,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.245684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245684,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.245782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245782,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.245830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245830,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246103,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.246165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246165,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246249,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.246392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246392,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246481,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.246505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246505,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.246533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246533,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.246780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246780,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.246833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246833,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.246969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246969,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.246976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246976,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247136,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.247309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247309,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247722,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.247957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247957,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248014,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248086,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.248397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248397,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248452,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.248493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248493,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248502,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248534,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248779,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248806,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.248921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248921,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248971,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);}
.m41{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);}
.m29{transform:matrix(0.249134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249134,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.249421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249421,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249651,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249983,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);}
.m51{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250301,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);}
.m59{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);}
.m66{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);}
.m53{transform:matrix(0.250483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250483,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250562,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250593,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250744,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250764,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250976,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251017,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.251019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251019,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.251024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251024,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.251081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251081,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.251203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251203,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251309,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.251313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251313,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251455,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.251541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251541,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.251584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251584,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251639,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.251646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251646,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.251663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251663,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.251677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251677,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251684,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.251706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251706,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251926,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251945,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252003,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252060,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.252084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252084,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252088,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.252158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252158,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252177,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252211,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.252249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252249,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.252428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252428,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252778,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.252806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252806,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252830,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.252940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252940,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.253093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253093,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.253096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253096,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253586,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.253935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253935,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.253988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253988,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.254041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254041,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.254510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254510,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.254706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254706,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.254732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254732,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.062400px;}
.ls2{letter-spacing:0.062700px;}
.ls4{letter-spacing:0.123840px;}
.ls1{letter-spacing:0.125400px;}
.ls5{letter-spacing:0.188100px;}
.ls7{letter-spacing:0.246000px;}
.ls9{letter-spacing:0.249600px;}
.ls6{letter-spacing:0.250800px;}
.lsa{letter-spacing:0.313500px;}
.ls3{letter-spacing:0.376200px;}
.lsc{letter-spacing:1.881000px;}
.lsb{letter-spacing:2.570700px;}
.lse{letter-spacing:3.887400px;}
.lsd{letter-spacing:5.580300px;}
.lsf{letter-spacing:8.276400px;}
.ls10{letter-spacing:15.424200px;}
.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;}
}
.ws3{word-spacing:-17.242500px;}
.ws23{word-spacing:-15.361500px;}
.ws13{word-spacing:-14.922600px;}
.ws12{word-spacing:-14.671800px;}
.ws1c{word-spacing:-4.702500px;}
.ws14{word-spacing:-4.577100px;}
.ws21{word-spacing:-4.451700px;}
.ws1a{word-spacing:-4.389000px;}
.ws7{word-spacing:-3.887400px;}
.ws20{word-spacing:-3.824700px;}
.ws1f{word-spacing:-3.260400px;}
.ws19{word-spacing:-3.135000px;}
.ws18{word-spacing:-2.696100px;}
.ws6{word-spacing:-2.508000px;}
.wsf{word-spacing:-2.319900px;}
.ws9{word-spacing:-2.194500px;}
.wsc{word-spacing:-1.881000px;}
.ws1d{word-spacing:-1.755600px;}
.ws10{word-spacing:-1.254000px;}
.ws8{word-spacing:-1.191300px;}
.ws22{word-spacing:-1.128600px;}
.ws1e{word-spacing:-0.752400px;}
.wsa{word-spacing:-0.376200px;}
.ws1b{word-spacing:-0.313500px;}
.ws11{word-spacing:-0.250800px;}
.ws17{word-spacing:-0.249600px;}
.ws15{word-spacing:-0.246000px;}
.wse{word-spacing:-0.188100px;}
.ws5{word-spacing:-0.125400px;}
.wsb{word-spacing:-0.123840px;}
.ws2{word-spacing:-0.066000px;}
.wsd{word-spacing:-0.062700px;}
.ws16{word-spacing:-0.062400px;}
.ws1{word-spacing:-0.061500px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:7.837500px;}
._3{margin-left:-6.960000px;}
._4{margin-left:-5.148600px;}
._0{margin-left:-3.480000px;}
._2{margin-left:-1.740000px;}
._1{width:1.722600px;}
._5{width:3.062400px;}
._6{width:4.183740px;}
._7{width:6.061440px;}
._9{width:7.336800px;}
._f{width:8.388360px;}
._14{width:9.685890px;}
._16{width:11.763780px;}
._10{width:13.831620px;}
._17{width:18.139110px;}
._11{width:19.173660px;}
._15{width:28.074000px;}
._12{width:40.334910px;}
._d{width:475.794000px;}
._18{width:480.612000px;}
._13{width:482.790000px;}
._e{width:496.056000px;}
._b{width:504.702000px;}
._a{width:506.880000px;}
._c{width:508.134000px;}
._8{width:520.146000px;}
.fc4{color:rgb(246,174,45);}
.fc2{color:rgb(74,114,132);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(251,251,251);}
.fc0{color:rgb(245,174,38);}
.fsb{font-size:42.000000px;}
.fsa{font-size:60.000000px;}
.fs5{font-size:61.500000px;}
.fs6{font-size:61.920000px;}
.fs7{font-size:62.280000px;}
.fs8{font-size:62.400000px;}
.fs3{font-size:62.700000px;}
.fs4{font-size:66.000000px;}
.fs9{font-size:78.000000px;}
.fs2{font-size:87.000000px;}
.fs1{font-size:126.000000px;}
.fs0{font-size:174.000000px;}
.y0{bottom:0.000000px;}
.y14{bottom:46.935450px;}
.y22{bottom:48.837000px;}
.y83{bottom:49.498950px;}
.y19b{bottom:91.891350px;}
.y19a{bottom:104.491350px;}
.y199{bottom:117.091350px;}
.yee{bottom:125.607900px;}
.ya7{bottom:131.941350px;}
.y82{bottom:135.139950px;}
.y31{bottom:136.981575px;}
.y12c{bottom:137.655600px;}
.yca{bottom:141.065850px;}
.y198{bottom:142.291350px;}
.yed{bottom:151.107900px;}
.y197{bottom:154.891350px;}
.ya6{bottom:157.441350px;}
.y81{bottom:160.639950px;}
.y30{bottom:162.484800px;}
.y12b{bottom:163.155600px;}
.yc9{bottom:166.565850px;}
.yec{bottom:176.607900px;}
.y111{bottom:177.458850px;}
.ya5{bottom:182.938125px;}
.y80{bottom:186.139950px;}
.y2f{bottom:187.981575px;}
.y12a{bottom:188.656350px;}
.y184{bottom:189.406125px;}
.y5b{bottom:190.167450px;}
.yc8{bottom:192.065850px;}
.y110{bottom:202.958850px;}
.y162{bottom:207.387900px;}
.yeb{bottom:207.936000px;}
.ya4{bottom:208.441350px;}
.y7f{bottom:211.639950px;}
.y183{bottom:211.899750px;}
.y2e{bottom:213.484800px;}
.y129{bottom:214.159575px;}
.y5a{bottom:215.667450px;}
.yc7{bottom:217.565850px;}
.y10f{bottom:228.458850px;}
.y161{bottom:229.900650px;}
.ya3{bottom:233.941350px;}
.y7e{bottom:237.132525px;}
.y2d{bottom:238.984800px;}
.y59{bottom:241.164225px;}
.ycb{bottom:246.878550px;}
.y182{bottom:251.933700px;}
.y160{bottom:252.394275px;}
.y10e{bottom:253.955625px;}
.y128{bottom:254.569725px;}
.ya2{bottom:259.441350px;}
.y2c{bottom:264.481725px;}
.y58{bottom:266.667450px;}
.y7d{bottom:271.037550px;}
.yea{bottom:271.191000px;}
.y181{bottom:274.427325px;}
.y10d{bottom:279.458850px;}
.y127{bottom:280.072950px;}
.ya1{bottom:284.941500px;}
.y2b{bottom:289.984950px;}
.y15f{bottom:290.939100px;}
.y57{bottom:292.167450px;}
.y7c{bottom:296.537550px;}
.ye9{bottom:296.691000px;}
.y180{bottom:296.920950px;}
.y10c{bottom:304.958850px;}
.y126{bottom:305.572950px;}
.yc5{bottom:306.104550px;}
.ya0{bottom:310.441500px;}
.y15e{bottom:313.457250px;}
.y2a{bottom:315.484950px;}
.y7b{bottom:322.037550px;}
.ye8{bottom:322.191150px;}
.y10b{bottom:330.458850px;}
.y56{bottom:330.553350px;}
.yc4{bottom:331.604550px;}
.y15d{bottom:335.950875px;}
.y17f{bottom:336.954900px;}
.y9f{bottom:341.769600px;}
.y137{bottom:346.553925px;}
.y7a{bottom:347.537550px;}
.ye7{bottom:347.685975px;}
.y10a{bottom:355.958850px;}
.y55{bottom:356.053350px;}
.y36{bottom:356.308200px;}
.yc3{bottom:357.104550px;}
.y15c{bottom:358.444500px;}
.y17e{bottom:359.484825px;}
.y136{bottom:372.057150px;}
.y79{bottom:373.037550px;}
.y109{bottom:381.458850px;}
.y54{bottom:381.550125px;}
.y35{bottom:381.808200px;}
.y17d{bottom:381.978450px;}
.yc2{bottom:382.604550px;}
.ye6{bottom:386.011350px;}
.y135{bottom:397.557150px;}
.y15b{bottom:398.478450px;}
.y78{bottom:398.534325px;}
.y4{bottom:404.142000px;}
.y9e{bottom:405.867900px;}
.y53{bottom:407.053350px;}
.y34{bottom:407.308200px;}
.yc1{bottom:408.104550px;}
.ye5{bottom:411.514575px;}
.y15a{bottom:420.978450px;}
.y108{bottom:421.947000px;}
.y17c{bottom:422.012400px;}
.y134{bottom:423.057150px;}
.y77{bottom:424.037550px;}
.y9d{bottom:431.373900px;}
.y52{bottom:432.553350px;}
.y33{bottom:432.808200px;}
.yc0{bottom:433.604550px;}
.ye4{bottom:437.017800px;}
.y159{bottom:443.483850px;}
.y17b{bottom:444.506025px;}
.y107{bottom:447.447000px;}
.y133{bottom:448.557150px;}
.y76{bottom:449.537550px;}
.y9c{bottom:456.879900px;}
.y51{bottom:458.053350px;}
.y32{bottom:458.303400px;}
.ye3{bottom:462.517800px;}
.y17a{bottom:466.999650px;}
.y106{bottom:472.947000px;}
.ybf{bottom:473.203575px;}
.y132{bottom:474.057150px;}
.y75{bottom:475.037550px;}
.y9b{bottom:482.379900px;}
.y158{bottom:483.517800px;}
.y50{bottom:483.553350px;}
.ye2{bottom:488.017800px;}
.y29{bottom:498.129300px;}
.y105{bottom:498.434100px;}
.ybe{bottom:498.706800px;}
.y131{bottom:499.557150px;}
.y74{bottom:500.537550px;}
.y157{bottom:506.017800px;}
.y179{bottom:507.033600px;}
.y9a{bottom:507.879900px;}
.y4f{bottom:509.053350px;}
.y3{bottom:512.665800px;}
.ye1{bottom:513.517800px;}
.y1f{bottom:517.636725px;}
.y28{bottom:523.632525px;}
.y104{bottom:523.937325px;}
.ybd{bottom:524.206800px;}
.y130{bottom:525.057150px;}
.y73{bottom:526.037550px;}
.y156{bottom:528.581625px;}
.y178{bottom:529.553550px;}
.y99{bottom:533.366400px;}
.y4e{bottom:534.553350px;}
.y1e{bottom:537.132225px;}
.y27{bottom:549.135750px;}
.y103{bottom:549.440550px;}
.ybc{bottom:549.700350px;}
.y12f{bottom:550.557150px;}
.ye0{bottom:551.419125px;}
.y72{bottom:551.537550px;}
.y177{bottom:552.047175px;}
.y98{bottom:558.872400px;}
.y4d{bottom:560.053350px;}
.y2{bottom:562.168800px;}
.y155{bottom:569.509050px;}
.y26{bottom:574.635750px;}
.y102{bottom:574.943775px;}
.ybb{bottom:575.203575px;}
.y12e{bottom:576.057150px;}
.ydf{bottom:576.922350px;}
.y1d{bottom:577.629975px;}
.y97{bottom:584.378400px;}
.y4c{bottom:585.553350px;}
.y154{bottom:592.002675px;}
.y71{bottom:592.108350px;}
.y176{bottom:594.071850px;}
.y25{bottom:600.135750px;}
.y101{bottom:600.447000px;}
.yba{bottom:600.706800px;}
.y12d{bottom:601.557150px;}
.yde{bottom:602.422350px;}
.y1{bottom:611.671800px;}
.y153{bottom:614.496300px;}
.y13{bottom:615.057900px;}
.y175{bottom:616.565475px;}
.y70{bottom:617.608350px;}
.y1c{bottom:618.127725px;}
.y4b{bottom:623.863275px;}
.y96{bottom:624.610800px;}
.y24{bottom:625.635750px;}
.y100{bottom:625.947000px;}
.yb9{bottom:626.206800px;}
.ydd{bottom:627.922350px;}
.y152{bottom:636.989925px;}
.y1b{bottom:637.623225px;}
.y12{bottom:640.561125px;}
.y125{bottom:640.884675px;}
.y6f{bottom:643.105125px;}
.y4a{bottom:649.366500px;}
.y95{bottom:650.116800px;}
.yb8{bottom:651.706800px;}
.ydc{bottom:653.419725px;}
.y174{bottom:654.624375px;}
.y23{bottom:656.963850px;}
.yff{bottom:664.267350px;}
.y11{bottom:666.064350px;}
.y124{bottom:666.387900px;}
.y6e{bottom:668.608350px;}
.y49{bottom:674.869725px;}
.y94{bottom:675.616800px;}
.y1a{bottom:676.629600px;}
.y151{bottom:677.023875px;}
.y173{bottom:677.118000px;}
.yfe{bottom:689.770575px;}
.ydb{bottom:689.832750px;}
.yb7{bottom:690.805725px;}
.y123{bottom:691.887900px;}
.y6d{bottom:694.108350px;}
.y19{bottom:696.125100px;}
.y150{bottom:699.517500px;}
.y172{bottom:699.611625px;}
.y48{bottom:700.372950px;}
.y93{bottom:701.110800px;}
.y10{bottom:711.960750px;}
.yfd{bottom:715.273800px;}
.yda{bottom:715.332750px;}
.yb6{bottom:716.308950px;}
.y122{bottom:717.387900px;}
.y6c{bottom:719.608350px;}
.y14f{bottom:722.011125px;}
.y171{bottom:722.105250px;}
.y47{bottom:725.876175px;}
.y92{bottom:726.616800px;}
.y5{bottom:732.277500px;}
.y18{bottom:735.131475px;}
.yf{bottom:737.445675px;}
.yfc{bottom:740.773800px;}
.yd9{bottom:740.832750px;}
.yb5{bottom:741.812175px;}
.y121{bottom:742.887900px;}
.y6b{bottom:745.108350px;}
.y46{bottom:751.379400px;}
.y91{bottom:752.116800px;}
.y17{bottom:754.626975px;}
.y170{bottom:761.136000px;}
.y14e{bottom:762.938550px;}
.yfb{bottom:766.273800px;}
.yd8{bottom:766.332750px;}
.yb4{bottom:767.315400px;}
.y120{bottom:768.383175px;}
.y196{bottom:770.073900px;}
.y6a{bottom:770.608350px;}
.y45{bottom:776.882625px;}
.y90{bottom:777.616800px;}
.y16f{bottom:783.700200px;}
.ye{bottom:783.796650px;}
.y14d{bottom:785.432175px;}
.y195{bottom:788.073900px;}
.yfa{bottom:791.771250px;}
.yd7{bottom:791.832750px;}
.yb3{bottom:792.815400px;}
.y16{bottom:793.633350px;}
.y69{bottom:796.108350px;}
.y8f{bottom:803.116800px;}
.y194{bottom:806.073900px;}
.y14c{bottom:807.925800px;}
.yd{bottom:809.299875px;}
.y11f{bottom:809.686800px;}
.y15{bottom:813.128850px;}
.y44{bottom:817.104675px;}
.yd6{bottom:817.332750px;}
.yb2{bottom:818.315400px;}
.y68{bottom:821.608350px;}
.y193{bottom:824.073900px;}
.y16e{bottom:825.724875px;}
.y8e{bottom:828.616800px;}
.yf9{bottom:830.112300px;}
.y14b{bottom:830.419425px;}
.yc{bottom:834.803100px;}
.y11e{bottom:835.190025px;}
.y20{bottom:838.685700px;}
.y43{bottom:842.607900px;}
.yd5{bottom:842.824500px;}
.yb1{bottom:843.815400px;}
.y67{bottom:847.108350px;}
.y16d{bottom:848.218500px;}
.y8d{bottom:854.088300px;}
.yf8{bottom:855.612300px;}
.y11d{bottom:860.693250px;}
.y42{bottom:868.111125px;}
.yd4{bottom:868.327725px;}
.y14a{bottom:870.453375px;}
.y18d{bottom:872.053800px;}
.y66{bottom:872.605125px;}
.yc6{bottom:873.127950px;}
.y140{bottom:879.030225px;}
.y8c{bottom:879.595425px;}
.yf7{bottom:881.112300px;}
.yb{bottom:881.154075px;}
.y11c{bottom:886.193250px;}
.y16c{bottom:888.252450px;}
.y149{bottom:892.947000px;}
.y41{bottom:893.614350px;}
.yd3{bottom:893.830950px;}
.y18c{bottom:894.547425px;}
.y65{bottom:898.108350px;}
.y192{bottom:904.053900px;}
.y13f{bottom:904.533450px;}
.y8b{bottom:905.102550px;}
.yf6{bottom:906.612300px;}
.ya{bottom:906.657300px;}
.y16b{bottom:910.746075px;}
.y11b{bottom:911.693250px;}
.y148{bottom:915.464625px;}
.y18b{bottom:917.041050px;}
.y40{bottom:919.114350px;}
.yd2{bottom:919.334175px;}
.y191{bottom:922.053900px;}
.y64{bottom:923.608350px;}
.y13e{bottom:930.033450px;}
.y8a{bottom:930.609675px;}
.yb0{bottom:931.633875px;}
.yf5{bottom:932.112300px;}
.y16a{bottom:933.239700px;}
.y11a{bottom:937.193250px;}
.y190{bottom:940.053900px;}
.y3f{bottom:944.610690px;}
.y63{bottom:949.108350px;}
.y9{bottom:951.080250px;}
.y147{bottom:954.949950px;}
.y13d{bottom:955.530225px;}
.y18a{bottom:956.071800px;}
.y89{bottom:956.116800px;}
.yaf{bottom:957.137100px;}
.yf4{bottom:957.612300px;}
.yd1{bottom:957.659550px;}
.y18f{bottom:958.053900px;}
.y119{bottom:962.686800px;}
.y3e{bottom:970.114350px;}
.y169{bottom:972.725025px;}
.y62{bottom:974.605800px;}
.y18e{bottom:976.053900px;}
.y8{bottom:976.583475px;}
.y146{bottom:977.443575px;}
.y189{bottom:978.565425px;}
.y13c{bottom:981.033450px;}
.y88{bottom:981.616800px;}
.yae{bottom:982.637100px;}
.yf3{bottom:983.112300px;}
.yd0{bottom:983.159550px;}
.y118{bottom:988.190025px;}
.y168{bottom:995.218650px;}
.y3d{bottom:995.614350px;}
.y145{bottom:999.937200px;}
.y7{bottom:1002.086700px;}
.y13b{bottom:1006.533450px;}
.y87{bottom:1007.116800px;}
.yad{bottom:1008.137100px;}
.ycf{bottom:1008.659550px;}
.y117{bottom:1013.693250px;}
.y61{bottom:1014.812175px;}
.y167{bottom:1017.712275px;}
.y188{bottom:1018.599375px;}
.yf2{bottom:1021.110975px;}
.y3c{bottom:1021.114350px;}
.y144{bottom:1022.443125px;}
.y13a{bottom:1032.027000px;}
.yac{bottom:1033.637100px;}
.yce{bottom:1034.159550px;}
.ya8{bottom:1035.721500px;}
.y116{bottom:1039.193250px;}
.y166{bottom:1040.205900px;}
.y60{bottom:1040.315400px;}
.y187{bottom:1041.093000px;}
.yf1{bottom:1046.614200px;}
.y3b{bottom:1046.614350px;}
.y6{bottom:1049.901000px;}
.y139{bottom:1057.530225px;}
.yab{bottom:1059.137100px;}
.ycd{bottom:1059.659550px;}
.y143{bottom:1063.025700px;}
.y186{bottom:1063.586625px;}
.y115{bottom:1064.690025px;}
.y5f{bottom:1065.815400px;}
.yf0{bottom:1072.114200px;}
.y3a{bottom:1072.114350px;}
.y165{bottom:1081.133325px;}
.y138{bottom:1083.033450px;}
.yaa{bottom:1084.637100px;}
.ycc{bottom:1085.159550px;}
.y142{bottom:1085.531625px;}
.y114{bottom:1090.193250px;}
.y5e{bottom:1091.315400px;}
.y86{bottom:1097.607750px;}
.yef{bottom:1097.614200px;}
.y39{bottom:1097.614350px;}
.y185{bottom:1103.620575px;}
.y164{bottom:1103.626950px;}
.y113{bottom:1115.693250px;}
.y5d{bottom:1116.815400px;}
.y85{bottom:1123.110975px;}
.ya9{bottom:1123.114200px;}
.y38{bottom:1123.114350px;}
.y141{bottom:1126.114200px;}
.y163{bottom:1126.120575px;}
.y112{bottom:1147.021500px;}
.y5c{bottom:1148.143650px;}
.y84{bottom:1148.614200px;}
.y37{bottom:1148.614350px;}
.y21{bottom:1194.314850px;}
.h13{height:34.125000px;}
.h8{height:45.325500px;}
.h12{height:48.750000px;}
.h9{height:49.434000px;}
.he{height:49.968750px;}
.h5{height:50.086523px;}
.hc{height:50.310000px;}
.hd{height:50.602500px;}
.hf{height:50.700000px;}
.h6{height:50.943750px;}
.hb{height:50.962950px;}
.h11{height:51.770361px;}
.ha{height:53.169600px;}
.h7{height:55.704000px;}
.h10{height:66.144000px;}
.h4{height:73.776000px;}
.h3{height:94.374000px;}
.h2{height:147.552000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:34.015800px;}
.xa{left:37.200600px;}
.xe{left:46.302600px;}
.xb{left:51.560850px;}
.x5{left:54.758100px;}
.x10{left:68.161050px;}
.x2{left:69.842850px;}
.x14{left:77.598450px;}
.xf{left:85.508850px;}
.x1{left:89.809350px;}
.x8{left:92.058600px;}
.x9{left:103.512975px;}
.xc{left:106.833975px;}
.xd{left:117.719475px;}
.x3{left:137.354850px;}
.x16{left:162.588450px;}
.x12{left:170.078700px;}
.x15{left:198.693450px;}
.x17{left:209.565300px;}
.x6{left:219.188850px;}
.x13{left:257.247375px;}
.x11{left:579.010500px;}
.x4{left:597.062100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.055467pt;}
.ls2{letter-spacing:0.055733pt;}
.ls4{letter-spacing:0.110080pt;}
.ls1{letter-spacing:0.111467pt;}
.ls5{letter-spacing:0.167200pt;}
.ls7{letter-spacing:0.218667pt;}
.ls9{letter-spacing:0.221867pt;}
.ls6{letter-spacing:0.222933pt;}
.lsa{letter-spacing:0.278667pt;}
.ls3{letter-spacing:0.334400pt;}
.lsc{letter-spacing:1.672000pt;}
.lsb{letter-spacing:2.285067pt;}
.lse{letter-spacing:3.455467pt;}
.lsd{letter-spacing:4.960267pt;}
.lsf{letter-spacing:7.356800pt;}
.ls10{letter-spacing:13.710400pt;}
.ws3{word-spacing:-15.326667pt;}
.ws23{word-spacing:-13.654667pt;}
.ws13{word-spacing:-13.264533pt;}
.ws12{word-spacing:-13.041600pt;}
.ws1c{word-spacing:-4.180000pt;}
.ws14{word-spacing:-4.068533pt;}
.ws21{word-spacing:-3.957067pt;}
.ws1a{word-spacing:-3.901333pt;}
.ws7{word-spacing:-3.455467pt;}
.ws20{word-spacing:-3.399733pt;}
.ws1f{word-spacing:-2.898133pt;}
.ws19{word-spacing:-2.786667pt;}
.ws18{word-spacing:-2.396533pt;}
.ws6{word-spacing:-2.229333pt;}
.wsf{word-spacing:-2.062133pt;}
.ws9{word-spacing:-1.950667pt;}
.wsc{word-spacing:-1.672000pt;}
.ws1d{word-spacing:-1.560533pt;}
.ws10{word-spacing:-1.114667pt;}
.ws8{word-spacing:-1.058933pt;}
.ws22{word-spacing:-1.003200pt;}
.ws1e{word-spacing:-0.668800pt;}
.wsa{word-spacing:-0.334400pt;}
.ws1b{word-spacing:-0.278667pt;}
.ws11{word-spacing:-0.222933pt;}
.ws17{word-spacing:-0.221867pt;}
.ws15{word-spacing:-0.218667pt;}
.wse{word-spacing:-0.167200pt;}
.ws5{word-spacing:-0.111467pt;}
.wsb{word-spacing:-0.110080pt;}
.ws2{word-spacing:-0.058667pt;}
.wsd{word-spacing:-0.055733pt;}
.ws16{word-spacing:-0.055467pt;}
.ws1{word-spacing:-0.054667pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:6.966667pt;}
._3{margin-left:-6.186667pt;}
._4{margin-left:-4.576533pt;}
._0{margin-left:-3.093333pt;}
._2{margin-left:-1.546667pt;}
._1{width:1.531200pt;}
._5{width:2.722133pt;}
._6{width:3.718880pt;}
._7{width:5.387947pt;}
._9{width:6.521600pt;}
._f{width:7.456320pt;}
._14{width:8.609680pt;}
._16{width:10.456693pt;}
._10{width:12.294773pt;}
._17{width:16.123653pt;}
._11{width:17.043253pt;}
._15{width:24.954667pt;}
._12{width:35.853253pt;}
._d{width:422.928000pt;}
._18{width:427.210667pt;}
._13{width:429.146667pt;}
._e{width:440.938667pt;}
._b{width:448.624000pt;}
._a{width:450.560000pt;}
._c{width:451.674667pt;}
._8{width:462.352000pt;}
.fsb{font-size:37.333333pt;}
.fsa{font-size:53.333333pt;}
.fs5{font-size:54.666667pt;}
.fs6{font-size:55.040000pt;}
.fs7{font-size:55.360000pt;}
.fs8{font-size:55.466667pt;}
.fs3{font-size:55.733333pt;}
.fs4{font-size:58.666667pt;}
.fs9{font-size:69.333333pt;}
.fs2{font-size:77.333333pt;}
.fs1{font-size:112.000000pt;}
.fs0{font-size:154.666667pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:41.720400pt;}
.y22{bottom:43.410667pt;}
.y83{bottom:43.999067pt;}
.y19b{bottom:81.681200pt;}
.y19a{bottom:92.881200pt;}
.y199{bottom:104.081200pt;}
.yee{bottom:111.651467pt;}
.ya7{bottom:117.281200pt;}
.y82{bottom:120.124400pt;}
.y31{bottom:121.761400pt;}
.y12c{bottom:122.360533pt;}
.yca{bottom:125.391867pt;}
.y198{bottom:126.481200pt;}
.yed{bottom:134.318133pt;}
.y197{bottom:137.681200pt;}
.ya6{bottom:139.947867pt;}
.y81{bottom:142.791067pt;}
.y30{bottom:144.430933pt;}
.y12b{bottom:145.027200pt;}
.yc9{bottom:148.058533pt;}
.yec{bottom:156.984800pt;}
.y111{bottom:157.741200pt;}
.ya5{bottom:162.611667pt;}
.y80{bottom:165.457733pt;}
.y2f{bottom:167.094733pt;}
.y12a{bottom:167.694533pt;}
.y184{bottom:168.361000pt;}
.y5b{bottom:169.037733pt;}
.yc8{bottom:170.725200pt;}
.y110{bottom:180.407867pt;}
.y162{bottom:184.344800pt;}
.yeb{bottom:184.832000pt;}
.ya4{bottom:185.281200pt;}
.y7f{bottom:188.124400pt;}
.y183{bottom:188.355333pt;}
.y2e{bottom:189.764267pt;}
.y129{bottom:190.364067pt;}
.y5a{bottom:191.704400pt;}
.yc7{bottom:193.391867pt;}
.y10f{bottom:203.074533pt;}
.y161{bottom:204.356133pt;}
.ya3{bottom:207.947867pt;}
.y7e{bottom:210.784467pt;}
.y2d{bottom:212.430933pt;}
.y59{bottom:214.368200pt;}
.ycb{bottom:219.447600pt;}
.y182{bottom:223.941067pt;}
.y160{bottom:224.350467pt;}
.y10e{bottom:225.738333pt;}
.y128{bottom:226.284200pt;}
.ya2{bottom:230.614533pt;}
.y2c{bottom:235.094867pt;}
.y58{bottom:237.037733pt;}
.y7d{bottom:240.922267pt;}
.yea{bottom:241.058667pt;}
.y181{bottom:243.935400pt;}
.y10d{bottom:248.407867pt;}
.y127{bottom:248.953733pt;}
.ya1{bottom:253.281333pt;}
.y2b{bottom:257.764400pt;}
.y15f{bottom:258.612533pt;}
.y57{bottom:259.704400pt;}
.y7c{bottom:263.588933pt;}
.ye9{bottom:263.725333pt;}
.y180{bottom:263.929733pt;}
.y10c{bottom:271.074533pt;}
.y126{bottom:271.620400pt;}
.yc5{bottom:272.092933pt;}
.ya0{bottom:275.948000pt;}
.y15e{bottom:278.628667pt;}
.y2a{bottom:280.431067pt;}
.y7b{bottom:286.255600pt;}
.ye8{bottom:286.392133pt;}
.y10b{bottom:293.741200pt;}
.y56{bottom:293.825200pt;}
.yc4{bottom:294.759600pt;}
.y15d{bottom:298.623000pt;}
.y17f{bottom:299.515467pt;}
.y9f{bottom:303.795200pt;}
.y137{bottom:308.047933pt;}
.y7a{bottom:308.922267pt;}
.ye7{bottom:309.054200pt;}
.y10a{bottom:316.407867pt;}
.y55{bottom:316.491867pt;}
.y36{bottom:316.718400pt;}
.yc3{bottom:317.426267pt;}
.y15c{bottom:318.617333pt;}
.y17e{bottom:319.542067pt;}
.y136{bottom:330.717467pt;}
.y79{bottom:331.588933pt;}
.y109{bottom:339.074533pt;}
.y54{bottom:339.155667pt;}
.y35{bottom:339.385067pt;}
.y17d{bottom:339.536400pt;}
.yc2{bottom:340.092933pt;}
.ye6{bottom:343.121200pt;}
.y135{bottom:353.384133pt;}
.y15b{bottom:354.203067pt;}
.y78{bottom:354.252733pt;}
.y4{bottom:359.237333pt;}
.y9e{bottom:360.771467pt;}
.y53{bottom:361.825200pt;}
.y34{bottom:362.051733pt;}
.yc1{bottom:362.759600pt;}
.ye5{bottom:365.790733pt;}
.y15a{bottom:374.203067pt;}
.y108{bottom:375.064000pt;}
.y17c{bottom:375.122133pt;}
.y134{bottom:376.050800pt;}
.y77{bottom:376.922267pt;}
.y9d{bottom:383.443467pt;}
.y52{bottom:384.491867pt;}
.y33{bottom:384.718400pt;}
.yc0{bottom:385.426267pt;}
.ye4{bottom:388.460267pt;}
.y159{bottom:394.207867pt;}
.y17b{bottom:395.116467pt;}
.y107{bottom:397.730667pt;}
.y133{bottom:398.717467pt;}
.y76{bottom:399.588933pt;}
.y9c{bottom:406.115467pt;}
.y51{bottom:407.158533pt;}
.y32{bottom:407.380800pt;}
.ye3{bottom:411.126933pt;}
.y17a{bottom:415.110800pt;}
.y106{bottom:420.397333pt;}
.ybf{bottom:420.625400pt;}
.y132{bottom:421.384133pt;}
.y75{bottom:422.255600pt;}
.y9b{bottom:428.782133pt;}
.y158{bottom:429.793600pt;}
.y50{bottom:429.825200pt;}
.ye2{bottom:433.793600pt;}
.y29{bottom:442.781600pt;}
.y105{bottom:443.052533pt;}
.ybe{bottom:443.294933pt;}
.y131{bottom:444.050800pt;}
.y74{bottom:444.922267pt;}
.y157{bottom:449.793600pt;}
.y179{bottom:450.696533pt;}
.y9a{bottom:451.448800pt;}
.y4f{bottom:452.491867pt;}
.y3{bottom:455.702933pt;}
.ye1{bottom:456.460267pt;}
.y1f{bottom:460.121533pt;}
.y28{bottom:465.451133pt;}
.y104{bottom:465.722067pt;}
.ybd{bottom:465.961600pt;}
.y130{bottom:466.717467pt;}
.y73{bottom:467.588933pt;}
.y156{bottom:469.850333pt;}
.y178{bottom:470.714267pt;}
.y99{bottom:474.103467pt;}
.y4e{bottom:475.158533pt;}
.y1e{bottom:477.450867pt;}
.y27{bottom:488.120667pt;}
.y103{bottom:488.391600pt;}
.ybc{bottom:488.622533pt;}
.y12f{bottom:489.384133pt;}
.ye0{bottom:490.150333pt;}
.y72{bottom:490.255600pt;}
.y177{bottom:490.708600pt;}
.y98{bottom:496.775467pt;}
.y4d{bottom:497.825200pt;}
.y2{bottom:499.705600pt;}
.y155{bottom:506.230267pt;}
.y26{bottom:510.787333pt;}
.y102{bottom:511.061133pt;}
.ybb{bottom:511.292067pt;}
.y12e{bottom:512.050800pt;}
.ydf{bottom:512.819867pt;}
.y1d{bottom:513.448867pt;}
.y97{bottom:519.447467pt;}
.y4c{bottom:520.491867pt;}
.y154{bottom:526.224600pt;}
.y71{bottom:526.318533pt;}
.y176{bottom:528.063867pt;}
.y25{bottom:533.454000pt;}
.y101{bottom:533.730667pt;}
.yba{bottom:533.961600pt;}
.y12d{bottom:534.717467pt;}
.yde{bottom:535.486533pt;}
.y1{bottom:543.708267pt;}
.y153{bottom:546.218933pt;}
.y13{bottom:546.718133pt;}
.y175{bottom:548.058200pt;}
.y70{bottom:548.985200pt;}
.y1c{bottom:549.446867pt;}
.y4b{bottom:554.545133pt;}
.y96{bottom:555.209600pt;}
.y24{bottom:556.120667pt;}
.y100{bottom:556.397333pt;}
.yb9{bottom:556.628267pt;}
.ydd{bottom:558.153200pt;}
.y152{bottom:566.213267pt;}
.y1b{bottom:566.776200pt;}
.y12{bottom:569.387667pt;}
.y125{bottom:569.675267pt;}
.y6f{bottom:571.649000pt;}
.y4a{bottom:577.214667pt;}
.y95{bottom:577.881600pt;}
.yb8{bottom:579.294933pt;}
.ydc{bottom:580.817533pt;}
.y174{bottom:581.888333pt;}
.y23{bottom:583.967867pt;}
.yff{bottom:590.459867pt;}
.y11{bottom:592.057200pt;}
.y124{bottom:592.344800pt;}
.y6e{bottom:594.318533pt;}
.y49{bottom:599.884200pt;}
.y94{bottom:600.548267pt;}
.y1a{bottom:601.448533pt;}
.y151{bottom:601.799000pt;}
.y173{bottom:601.882667pt;}
.yfe{bottom:613.129400pt;}
.ydb{bottom:613.184667pt;}
.yb7{bottom:614.049533pt;}
.y123{bottom:615.011467pt;}
.y6d{bottom:616.985200pt;}
.y19{bottom:618.777867pt;}
.y150{bottom:621.793333pt;}
.y172{bottom:621.877000pt;}
.y48{bottom:622.553733pt;}
.y93{bottom:623.209600pt;}
.y10{bottom:632.854000pt;}
.yfd{bottom:635.798933pt;}
.yda{bottom:635.851333pt;}
.yb6{bottom:636.719067pt;}
.y122{bottom:637.678133pt;}
.y6c{bottom:639.651867pt;}
.y14f{bottom:641.787667pt;}
.y171{bottom:641.871333pt;}
.y47{bottom:645.223267pt;}
.y92{bottom:645.881600pt;}
.y5{bottom:650.913333pt;}
.y18{bottom:653.450200pt;}
.yf{bottom:655.507267pt;}
.yfc{bottom:658.465600pt;}
.yd9{bottom:658.518000pt;}
.yb5{bottom:659.388600pt;}
.y121{bottom:660.344800pt;}
.y6b{bottom:662.318533pt;}
.y46{bottom:667.892800pt;}
.y91{bottom:668.548267pt;}
.y17{bottom:670.779533pt;}
.y170{bottom:676.565333pt;}
.y14e{bottom:678.167600pt;}
.yfb{bottom:681.132267pt;}
.yd8{bottom:681.184667pt;}
.yb4{bottom:682.058133pt;}
.y120{bottom:683.007267pt;}
.y196{bottom:684.510133pt;}
.y6a{bottom:684.985200pt;}
.y45{bottom:690.562333pt;}
.y90{bottom:691.214933pt;}
.y16f{bottom:696.622400pt;}
.ye{bottom:696.708133pt;}
.y14d{bottom:698.161933pt;}
.y195{bottom:700.510133pt;}
.yfa{bottom:703.796667pt;}
.yd7{bottom:703.851333pt;}
.yb3{bottom:704.724800pt;}
.y16{bottom:705.451867pt;}
.y69{bottom:707.651867pt;}
.y8f{bottom:713.881600pt;}
.y194{bottom:716.510133pt;}
.y14c{bottom:718.156267pt;}
.yd{bottom:719.377667pt;}
.y11f{bottom:719.721600pt;}
.y15{bottom:722.781200pt;}
.y44{bottom:726.315267pt;}
.yd6{bottom:726.518000pt;}
.yb2{bottom:727.391467pt;}
.y68{bottom:730.318533pt;}
.y193{bottom:732.510133pt;}
.y16e{bottom:733.977667pt;}
.y8e{bottom:736.548267pt;}
.yf9{bottom:737.877600pt;}
.y14b{bottom:738.150600pt;}
.yc{bottom:742.047200pt;}
.y11e{bottom:742.391133pt;}
.y20{bottom:745.498400pt;}
.y43{bottom:748.984800pt;}
.yd5{bottom:749.177333pt;}
.yb1{bottom:750.058133pt;}
.y67{bottom:752.985200pt;}
.y16d{bottom:753.972000pt;}
.y8d{bottom:759.189600pt;}
.yf8{bottom:760.544267pt;}
.y11d{bottom:765.060667pt;}
.y42{bottom:771.654333pt;}
.yd4{bottom:771.846867pt;}
.y14a{bottom:773.736333pt;}
.y18d{bottom:775.158933pt;}
.y66{bottom:775.649000pt;}
.yc6{bottom:776.113733pt;}
.y140{bottom:781.360200pt;}
.y8c{bottom:781.862600pt;}
.yf7{bottom:783.210933pt;}
.yb{bottom:783.248067pt;}
.y11c{bottom:787.727333pt;}
.y16c{bottom:789.557733pt;}
.y149{bottom:793.730667pt;}
.y41{bottom:794.323867pt;}
.yd3{bottom:794.516400pt;}
.y18c{bottom:795.153267pt;}
.y65{bottom:798.318533pt;}
.y192{bottom:803.603467pt;}
.y13f{bottom:804.029733pt;}
.y8b{bottom:804.535600pt;}
.yf6{bottom:805.877600pt;}
.ya{bottom:805.917600pt;}
.y16b{bottom:809.552067pt;}
.y11b{bottom:810.394000pt;}
.y148{bottom:813.746333pt;}
.y18b{bottom:815.147600pt;}
.y40{bottom:816.990533pt;}
.yd2{bottom:817.185933pt;}
.y191{bottom:819.603467pt;}
.y64{bottom:820.985200pt;}
.y13e{bottom:826.696400pt;}
.y8a{bottom:827.208600pt;}
.yb0{bottom:828.119000pt;}
.yf5{bottom:828.544267pt;}
.y16a{bottom:829.546400pt;}
.y11a{bottom:833.060667pt;}
.y190{bottom:835.603467pt;}
.y3f{bottom:839.653947pt;}
.y63{bottom:843.651867pt;}
.y9{bottom:845.404667pt;}
.y147{bottom:848.844400pt;}
.y13d{bottom:849.360200pt;}
.y18a{bottom:849.841600pt;}
.y89{bottom:849.881600pt;}
.yaf{bottom:850.788533pt;}
.yf4{bottom:851.210933pt;}
.yd1{bottom:851.252933pt;}
.y18f{bottom:851.603467pt;}
.y119{bottom:855.721600pt;}
.y3e{bottom:862.323867pt;}
.y169{bottom:864.644467pt;}
.y62{bottom:866.316267pt;}
.y18e{bottom:867.603467pt;}
.y8{bottom:868.074200pt;}
.y146{bottom:868.838733pt;}
.y189{bottom:869.835933pt;}
.y13c{bottom:872.029733pt;}
.y88{bottom:872.548267pt;}
.yae{bottom:873.455200pt;}
.yf3{bottom:873.877600pt;}
.yd0{bottom:873.919600pt;}
.y118{bottom:878.391133pt;}
.y168{bottom:884.638800pt;}
.y3d{bottom:884.990533pt;}
.y145{bottom:888.833067pt;}
.y7{bottom:890.743733pt;}
.y13b{bottom:894.696400pt;}
.y87{bottom:895.214933pt;}
.yad{bottom:896.121867pt;}
.ycf{bottom:896.586267pt;}
.y117{bottom:901.060667pt;}
.y61{bottom:902.055267pt;}
.y167{bottom:904.633133pt;}
.y188{bottom:905.421667pt;}
.yf2{bottom:907.654200pt;}
.y3c{bottom:907.657200pt;}
.y144{bottom:908.838333pt;}
.y13a{bottom:917.357333pt;}
.yac{bottom:918.788533pt;}
.yce{bottom:919.252933pt;}
.ya8{bottom:920.641333pt;}
.y116{bottom:923.727333pt;}
.y166{bottom:924.627467pt;}
.y60{bottom:924.724800pt;}
.y187{bottom:925.416000pt;}
.yf1{bottom:930.323733pt;}
.y3b{bottom:930.323867pt;}
.y6{bottom:933.245333pt;}
.y139{bottom:940.026867pt;}
.yab{bottom:941.455200pt;}
.ycd{bottom:941.919600pt;}
.y143{bottom:944.911733pt;}
.y186{bottom:945.410333pt;}
.y115{bottom:946.391133pt;}
.y5f{bottom:947.391467pt;}
.yf0{bottom:952.990400pt;}
.y3a{bottom:952.990533pt;}
.y165{bottom:961.007400pt;}
.y138{bottom:962.696400pt;}
.yaa{bottom:964.121867pt;}
.ycc{bottom:964.586267pt;}
.y142{bottom:964.917000pt;}
.y114{bottom:969.060667pt;}
.y5e{bottom:970.058133pt;}
.y86{bottom:975.651333pt;}
.yef{bottom:975.657067pt;}
.y39{bottom:975.657200pt;}
.y185{bottom:980.996067pt;}
.y164{bottom:981.001733pt;}
.y113{bottom:991.727333pt;}
.y5d{bottom:992.724800pt;}
.y85{bottom:998.320867pt;}
.ya9{bottom:998.323733pt;}
.y38{bottom:998.323867pt;}
.y141{bottom:1000.990400pt;}
.y163{bottom:1000.996067pt;}
.y112{bottom:1019.574667pt;}
.y5c{bottom:1020.572133pt;}
.y84{bottom:1020.990400pt;}
.y37{bottom:1020.990533pt;}
.y21{bottom:1061.613200pt;}
.h13{height:30.333333pt;}
.h8{height:40.289333pt;}
.h12{height:43.333333pt;}
.h9{height:43.941333pt;}
.he{height:44.416667pt;}
.h5{height:44.521354pt;}
.hc{height:44.720000pt;}
.hd{height:44.980000pt;}
.hf{height:45.066667pt;}
.h6{height:45.283333pt;}
.hb{height:45.300400pt;}
.h11{height:46.018099pt;}
.ha{height:47.261867pt;}
.h7{height:49.514667pt;}
.h10{height:58.794667pt;}
.h4{height:65.578667pt;}
.h3{height:83.888000pt;}
.h2{height:131.157333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:30.236267pt;}
.xa{left:33.067200pt;}
.xe{left:41.157867pt;}
.xb{left:45.831867pt;}
.x5{left:48.673867pt;}
.x10{left:60.587600pt;}
.x2{left:62.082533pt;}
.x14{left:68.976400pt;}
.xf{left:76.007867pt;}
.x1{left:79.830533pt;}
.x8{left:81.829867pt;}
.x9{left:92.011533pt;}
.xc{left:94.963533pt;}
.xd{left:104.639533pt;}
.x3{left:122.093200pt;}
.x16{left:144.523067pt;}
.x12{left:151.181067pt;}
.x15{left:176.616400pt;}
.x17{left:186.280267pt;}
.x6{left:194.834533pt;}
.x13{left:228.664333pt;}
.x11{left:514.676000pt;}
.x4{left:530.721867pt;}
}




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