
    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_9e34d0953ada52b53429da90.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.074036;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_993103a6f8be7cbf7c9d89a7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;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_7d6bc4631840841b6338cae3.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_233b679eb2af102ee5e4bdc4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a7d1d5a721fa4db5b233646a.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_0af2e978eeb6c340be08e257.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.964844;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_e7fb7444bf3c8f383d04febe.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.909000;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_fa46dbc4049e27007eb1bc23.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1256e2c9229c6ab84e742f7d.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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_145a891093c4f93cae515a05.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.977539;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;}
.m60{transform:matrix(0.245110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245110,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.245177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245177,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.245220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245220,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.245397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245397,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.245507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245507,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.245510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245510,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.245952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245952,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.246069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246069,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.246242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246242,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.246366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246366,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246567,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246586,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.247129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247129,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.247172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247172,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.247277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247277,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247294,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247423,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.247426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247426,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.247569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247569,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.247608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247608,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247718,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.247792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247792,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.247801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247801,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.247809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247809,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.248084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248084,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248208,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.248335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248335,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248361,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.248443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248443,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248524,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248543,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.248557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248557,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248577,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.248667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248667,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248732,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248952,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248969,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249749,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249868,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);}
.m45{transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250194,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250321,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250321,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250321,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250416,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.250474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250474,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.250541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250541,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.250579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250579,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250734,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250763,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.251002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251002,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.251065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251065,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251103,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251239,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251254,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.251263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251263,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251333,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251340,0.000000,0.000000,0.250000,0,0);}
.m5b{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);}
.m12{transform:matrix(0.251567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251567,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.251627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251627,0.000000,0.000000,0.250000,0,0);}
.m37{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);}
.m63{transform:matrix(0.251935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251935,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251988,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252407,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.252490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252490,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.252653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252653,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.252691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252691,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.252751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252751,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252892,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.252964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252964,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.253129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253129,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.253254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253254,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253266,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253278,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.253483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253483,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.253644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253644,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.253964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253964,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.253967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253967,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.253974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253974,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253990,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.254596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254596,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.254605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254605,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.254940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254940,0.000000,0.000000,0.250000,0,0);}
.me{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;}
.ls1{letter-spacing:0.033600px;}
.ls3{letter-spacing:0.062700px;}
.ls5{letter-spacing:0.125400px;}
.ls2{letter-spacing:0.188100px;}
.ls6{letter-spacing:0.250800px;}
.ls4{letter-spacing:0.313500px;}
.ls7{letter-spacing:0.815100px;}
.ls9{letter-spacing:1.003200px;}
.ls8{letter-spacing:1.191300px;}
.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;}
}
.ws38{word-spacing:-23.925000px;}
.ws3{word-spacing:-17.242500px;}
.ws3e{word-spacing:-16.803600px;}
.ws4e{word-spacing:-16.615500px;}
.ws1{word-spacing:-15.990000px;}
.ws4d{word-spacing:-15.863100px;}
.ws4f{word-spacing:-15.800400px;}
.ws3d{word-spacing:-15.612300px;}
.ws33{word-spacing:-14.734500px;}
.ws3f{word-spacing:-4.890600px;}
.ws12{word-spacing:-4.702500px;}
.ws14{word-spacing:-4.639800px;}
.ws2e{word-spacing:-4.590000px;}
.ws16{word-spacing:-4.451700px;}
.ws30{word-spacing:-4.389000px;}
.ws24{word-spacing:-4.263600px;}
.ws25{word-spacing:-4.200900px;}
.ws22{word-spacing:-4.075500px;}
.ws35{word-spacing:-4.012800px;}
.ws2f{word-spacing:-3.762000px;}
.ws2c{word-spacing:-3.733200px;}
.ws31{word-spacing:-3.699300px;}
.ws37{word-spacing:-3.636600px;}
.ws1d{word-spacing:-3.573900px;}
.ws23{word-spacing:-3.511200px;}
.ws11{word-spacing:-3.323100px;}
.ws17{word-spacing:-3.135000px;}
.ws1f{word-spacing:-3.072300px;}
.ws2d{word-spacing:-3.009600px;}
.ws20{word-spacing:-2.884200px;}
.ws3c{word-spacing:-2.821500px;}
.ws7{word-spacing:-2.758800px;}
.ws43{word-spacing:-2.696100px;}
.ws39{word-spacing:-2.633400px;}
.ws2a{word-spacing:-2.570700px;}
.ws4c{word-spacing:-2.445300px;}
.ws3b{word-spacing:-2.382600px;}
.ws13{word-spacing:-2.319900px;}
.ws2b{word-spacing:-2.264400px;}
.ws26{word-spacing:-2.194500px;}
.ws28{word-spacing:-2.069100px;}
.ws54{word-spacing:-2.006400px;}
.ws18{word-spacing:-1.943700px;}
.ws1a{word-spacing:-1.881000px;}
.ws5d{word-spacing:-1.860000px;}
.ws36{word-spacing:-1.755600px;}
.ws29{word-spacing:-1.692900px;}
.wsb{word-spacing:-1.504800px;}
.ws15{word-spacing:-1.442100px;}
.ws1b{word-spacing:-1.379400px;}
.ws5{word-spacing:-1.316700px;}
.ws3a{word-spacing:-1.191300px;}
.ws52{word-spacing:-1.128600px;}
.ws19{word-spacing:-0.940500px;}
.ws8{word-spacing:-0.877800px;}
.ws1e{word-spacing:-0.752400px;}
.ws34{word-spacing:-0.689700px;}
.ws27{word-spacing:-0.564300px;}
.ws4{word-spacing:-0.313500px;}
.ws21{word-spacing:-0.188100px;}
.ws1c{word-spacing:-0.125400px;}
.ws2{word-spacing:-0.066000px;}
.ws10{word-spacing:-0.062700px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:0.250800px;}
.wsf{word-spacing:0.627000px;}
.ws4b{word-spacing:0.815100px;}
.ws49{word-spacing:1.316700px;}
.ws51{word-spacing:1.442100px;}
.ws6{word-spacing:1.504800px;}
.ws5a{word-spacing:1.740000px;}
.ws5e{word-spacing:1.860000px;}
.ws5f{word-spacing:1.932000px;}
.ws45{word-spacing:2.194500px;}
.ws55{word-spacing:3.009600px;}
.ws44{word-spacing:3.636600px;}
.ws32{word-spacing:3.887400px;}
.ws4a{word-spacing:4.263600px;}
.ws5c{word-spacing:4.380000px;}
.ws53{word-spacing:5.768400px;}
.ws59{word-spacing:6.144600px;}
.wsc{word-spacing:6.458100px;}
.ws46{word-spacing:6.646200px;}
.ws58{word-spacing:7.085100px;}
.wsd{word-spacing:7.147800px;}
.ws5b{word-spacing:7.320000px;}
.ws9{word-spacing:8.151000px;}
.ws42{word-spacing:8.213700px;}
.ws48{word-spacing:8.715300px;}
.ws47{word-spacing:9.154200px;}
.wsa{word-spacing:9.342300px;}
.ws56{word-spacing:10.345500px;}
.ws40{word-spacing:14.483700px;}
.ws57{word-spacing:19.311600px;}
.ws41{word-spacing:21.255300px;}
.ws50{word-spacing:78.751200px;}
._2{margin-left:-7.200000px;}
._4{margin-left:-6.060600px;}
._8{margin-left:-5.016000px;}
._1{margin-left:-3.600000px;}
._0{margin-left:-1.800000px;}
._3{width:1.800000px;}
._9{width:2.821500px;}
._f{width:4.263600px;}
._5{width:5.548950px;}
._7{width:7.396800px;}
._11{width:9.154200px;}
._15{width:10.320420px;}
._16{width:11.411400px;}
._e{width:13.060410px;}
._14{width:16.614990px;}
._d{width:20.941800px;}
._10{width:22.296120px;}
._13{width:35.030490px;}
._17{width:54.611700px;}
._12{width:475.794000px;}
._18{width:496.056000px;}
._b{width:504.702000px;}
._a{width:506.880000px;}
._c{width:508.134000px;}
._6{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);}
.fs8{font-size:42.000000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:61.200000px;}
.fs5{font-size:61.500000px;}
.fs3{font-size:62.700000px;}
.fs4{font-size:66.000000px;}
.fs2{font-size:87.000000px;}
.fs1{font-size:126.000000px;}
.fs0{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:47.561400px;}
.y9e{bottom:48.961050px;}
.y1b{bottom:49.061400px;}
.ye5{bottom:49.389150px;}
.y14d{bottom:50.472900px;}
.y15b{bottom:91.891350px;}
.y15a{bottom:104.491350px;}
.y159{bottom:117.091350px;}
.y54{bottom:126.624150px;}
.yc1{bottom:128.502150px;}
.y7a{bottom:129.996150px;}
.y9d{bottom:131.044125px;}
.y148{bottom:131.897700px;}
.y158{bottom:142.291350px;}
.ye4{bottom:145.368150px;}
.y53{bottom:152.124150px;}
.yc0{bottom:154.002150px;}
.y147{bottom:154.397700px;}
.y157{bottom:154.891350px;}
.y79{bottom:155.496150px;}
.y9c{bottom:156.542250px;}
.y30{bottom:157.781550px;}
.y123{bottom:166.327950px;}
.ye3{bottom:170.868150px;}
.y146{bottom:176.897700px;}
.ybf{bottom:179.502150px;}
.y78{bottom:180.996150px;}
.y9b{bottom:182.047350px;}
.y2f{bottom:183.275250px;}
.y122{bottom:188.821575px;}
.y52{bottom:191.162400px;}
.ye2{bottom:196.368300px;}
.y145{bottom:199.418925px;}
.ybe{bottom:205.002150px;}
.y77{bottom:206.496150px;}
.y9a{bottom:207.547350px;}
.y2e{bottom:208.778475px;}
.y51{bottom:216.662400px;}
.y121{bottom:228.542025px;}
.y76{bottom:231.996150px;}
.y13c{bottom:232.577700px;}
.y2d{bottom:234.281700px;}
.ye1{bottom:234.818550px;}
.y50{bottom:242.162400px;}
.ybd{bottom:243.769275px;}
.y99{bottom:245.504850px;}
.y120{bottom:251.035650px;}
.y13b{bottom:255.071325px;}
.y75{bottom:257.496150px;}
.y2c{bottom:259.781700px;}
.ye0{bottom:260.321775px;}
.y4f{bottom:267.662400px;}
.ybc{bottom:269.272500px;}
.y98{bottom:271.004850px;}
.y11f{bottom:273.529650px;}
.ydf{bottom:285.825000px;}
.y13a{bottom:293.177250px;}
.ybb{bottom:294.772500px;}
.y97{bottom:296.504850px;}
.y74{bottom:296.998200px;}
.y2b{bottom:300.456000px;}
.y4e{bottom:308.336700px;}
.yde{bottom:311.325000px;}
.y11e{bottom:313.250100px;}
.y139{bottom:315.683625px;}
.yba{bottom:320.272500px;}
.y96{bottom:322.004850px;}
.y73{bottom:322.498200px;}
.y2a{bottom:325.956000px;}
.y4d{bottom:333.836700px;}
.y11d{bottom:335.766825px;}
.ydd{bottom:336.825000px;}
.y138{bottom:338.177250px;}
.yb9{bottom:345.772500px;}
.y95{bottom:347.504850px;}
.y72{bottom:347.988525px;}
.y29{bottom:351.456000px;}
.y11c{bottom:358.260450px;}
.y4c{bottom:359.336700px;}
.y137{bottom:360.683625px;}
.ydc{bottom:362.329950px;}
.yb8{bottom:371.272500px;}
.y94{bottom:373.004850px;}
.y71{bottom:373.491750px;}
.y28{bottom:376.956000px;}
.yff{bottom:379.838400px;}
.y136{bottom:383.177250px;}
.y4b{bottom:384.836700px;}
.y5{bottom:386.164650px;}
.y22{bottom:397.884300px;}
.y11b{bottom:398.184675px;}
.y93{bottom:398.504850px;}
.y70{bottom:398.994975px;}
.ydb{bottom:402.269850px;}
.y27{bottom:402.456000px;}
.yfe{bottom:405.338400px;}
.y135{bottom:405.719100px;}
.yb7{bottom:409.702050px;}
.y4a{bottom:410.344125px;}
.y11a{bottom:420.678300px;}
.y92{bottom:424.004850px;}
.y6f{bottom:424.498200px;}
.yda{bottom:427.769850px;}
.yfd{bottom:430.838400px;}
.y26{bottom:433.784100px;}
.yb6{bottom:435.198825px;}
.y21{bottom:435.383925px;}
.y144{bottom:439.481550px;}
.y119{bottom:443.171925px;}
.y49{bottom:448.011150px;}
.y91{bottom:449.504250px;}
.y6e{bottom:449.998200px;}
.yd9{bottom:453.266625px;}
.y20{bottom:454.879425px;}
.yb5{bottom:460.702050px;}
.y143{bottom:461.975175px;}
.y4{bottom:464.941950px;}
.y118{bottom:465.665550px;}
.yfc{bottom:470.797350px;}
.y48{bottom:473.511150px;}
.y6d{bottom:475.498200px;}
.yd8{bottom:478.769850px;}
.yb4{bottom:486.202050px;}
.y1a{bottom:487.563375px;}
.y90{bottom:488.676075px;}
.y1f{bottom:492.379050px;}
.yfb{bottom:496.297350px;}
.y47{bottom:499.011150px;}
.y13f{bottom:499.297350px;}
.yd7{bottom:504.269850px;}
.y117{bottom:505.386000px;}
.y6c{bottom:511.633125px;}
.y19{bottom:513.066600px;}
.y8f{bottom:514.179300px;}
.yb3{bottom:516.038400px;}
.y3{bottom:517.456950px;}
.yfa{bottom:521.797350px;}
.y13e{bottom:521.812800px;}
.y46{bottom:524.511150px;}
.y116{bottom:527.899650px;}
.y1e{bottom:529.878675px;}
.y6b{bottom:537.136350px;}
.y18{bottom:538.569825px;}
.y8e{bottom:539.679300px;}
.yb2{bottom:543.030150px;}
.y13d{bottom:544.306425px;}
.yd6{bottom:545.218650px;}
.yf9{bottom:547.297350px;}
.y115{bottom:550.393275px;}
.y45{bottom:555.839250px;}
.y6a{bottom:562.636350px;}
.y17{bottom:564.073050px;}
.y8d{bottom:565.179300px;}
.y1d{bottom:567.378300px;}
.y2{bottom:569.971950px;}
.yd5{bottom:570.718650px;}
.yf8{bottom:572.799000px;}
.y142{bottom:581.653800px;}
.y69{bottom:588.136350px;}
.y16{bottom:589.576275px;}
.y114{bottom:590.113725px;}
.y8c{bottom:590.678925px;}
.yd4{bottom:596.218650px;}
.y1c{bottom:601.877400px;}
.y141{bottom:604.147425px;}
.yf7{bottom:611.516250px;}
.yb1{bottom:612.527700px;}
.y113{bottom:612.607350px;}
.y68{bottom:613.636350px;}
.yd3{bottom:621.718650px;}
.y1{bottom:622.486950px;}
.y44{bottom:624.765900px;}
.y140{bottom:626.641050px;}
.y8b{bottom:628.471350px;}
.y23{bottom:630.811650px;}
.y112{bottom:635.100975px;}
.y15{bottom:635.927250px;}
.yf6{bottom:637.016250px;}
.yb0{bottom:638.027700px;}
.y67{bottom:639.136350px;}
.yd2{bottom:647.218650px;}
.y43{bottom:650.265900px;}
.y8a{bottom:653.971350px;}
.y14{bottom:661.430475px;}
.yf5{bottom:662.513025px;}
.y134{bottom:663.102600px;}
.yaf{bottom:663.527700px;}
.y66{bottom:664.643775px;}
.yd1{bottom:672.718650px;}
.y111{bottom:674.821425px;}
.y42{bottom:675.765900px;}
.y89{bottom:679.471350px;}
.y133{bottom:685.596225px;}
.y13{bottom:686.933700px;}
.yf4{bottom:688.016250px;}
.yae{bottom:689.027700px;}
.y110{bottom:697.315050px;}
.y41{bottom:701.265900px;}
.y65{bottom:702.310800px;}
.y88{bottom:704.964900px;}
.y132{bottom:708.089850px;}
.y12{bottom:712.436925px;}
.yd0{bottom:713.206800px;}
.yf3{bottom:713.512200px;}
.yad{bottom:714.524475px;}
.y10f{bottom:719.809200px;}
.y40{bottom:726.765900px;}
.y64{bottom:727.810800px;}
.y87{bottom:730.468125px;}
.y131{bottom:730.583475px;}
.y6{bottom:732.318150px;}
.y11{bottom:737.940150px;}
.ycf{bottom:738.706800px;}
.yf2{bottom:739.015425px;}
.yac{bottom:740.027700px;}
.y3f{bottom:752.265900px;}
.y63{bottom:753.310800px;}
.y86{bottom:755.971350px;}
.y10e{bottom:759.529650px;}
.yce{bottom:764.206800px;}
.yab{bottom:765.527700px;}
.y130{bottom:767.921325px;}
.y156{bottom:770.073900px;}
.y3e{bottom:777.767325px;}
.y62{bottom:778.810800px;}
.yf1{bottom:779.065050px;}
.y85{bottom:781.471350px;}
.y10d{bottom:782.052675px;}
.y10{bottom:787.285050px;}
.y155{bottom:788.073900px;}
.ycd{bottom:789.706800px;}
.y12f{bottom:790.414950px;}
.yaa{bottom:791.027700px;}
.y61{bottom:804.310800px;}
.y10c{bottom:804.546300px;}
.yf0{bottom:804.565050px;}
.y154{bottom:806.073900px;}
.y84{bottom:806.971350px;}
.yf{bottom:812.788275px;}
.y12e{bottom:812.908575px;}
.ycc{bottom:815.206800px;}
.y3d{bottom:816.092700px;}
.ya9{bottom:816.522600px;}
.y153{bottom:824.073900px;}
.yef{bottom:830.065050px;}
.ye{bottom:838.291500px;}
.ycb{bottom:840.706800px;}
.y3c{bottom:841.592700px;}
.y60{bottom:841.985100px;}
.ya8{bottom:842.027700px;}
.y10b{bottom:845.113200px;}
.y83{bottom:846.145800px;}
.y12d{bottom:849.102150px;}
.yee{bottom:855.565050px;}
.yd{bottom:863.782875px;}
.yca{bottom:866.206800px;}
.y3b{bottom:867.092700px;}
.y5f{bottom:867.485100px;}
.y10a{bottom:867.606825px;}
.y12c{bottom:871.633725px;}
.y82{bottom:871.645800px;}
.yed{bottom:881.065050px;}
.ya7{bottom:881.159550px;}
.y109{bottom:890.100450px;}
.yc9{bottom:891.706800px;}
.y3a{bottom:892.592700px;}
.y5e{bottom:892.985100px;}
.y12b{bottom:894.127350px;}
.y81{bottom:897.142575px;}
.y152{bottom:904.053900px;}
.ya6{bottom:906.659550px;}
.yc{bottom:911.199750px;}
.y108{bottom:912.630000px;}
.y12a{bottom:916.620975px;}
.yc8{bottom:917.206800px;}
.y39{bottom:918.085650px;}
.y5d{bottom:918.485100px;}
.yec{bottom:921.024150px;}
.y151{bottom:922.053900px;}
.y80{bottom:922.645800px;}
.ya5{bottom:932.156325px;}
.y107{bottom:935.123625px;}
.yb{bottom:936.702975px;}
.y129{bottom:939.114600px;}
.y150{bottom:940.053900px;}
.y38{bottom:943.588875px;}
.y5c{bottom:943.985100px;}
.yeb{bottom:946.524150px;}
.y7f{bottom:948.145800px;}
.y106{bottom:957.617250px;}
.ya4{bottom:957.659550px;}
.y14f{bottom:958.053900px;}
.yc7{bottom:958.155600px;}
.y128{bottom:961.608225px;}
.ya{bottom:962.206200px;}
.yea{bottom:972.024150px;}
.y14e{bottom:976.053900px;}
.y7e{bottom:979.474050px;}
.y37{bottom:982.509900px;}
.ya3{bottom:983.159550px;}
.yc6{bottom:983.655600px;}
.y5b{bottom:984.659550px;}
.y9{bottom:987.709425px;}
.ye9{bottom:997.524150px;}
.y105{bottom:997.541475px;}
.y127{bottom:998.773650px;}
.y36{bottom:1008.009900px;}
.ya2{bottom:1008.653100px;}
.yc5{bottom:1009.155600px;}
.y5a{bottom:1010.159550px;}
.y8{bottom:1013.212650px;}
.y104{bottom:1020.035100px;}
.y126{bottom:1021.280025px;}
.ye8{bottom:1023.024150px;}
.y35{bottom:1033.503600px;}
.ya1{bottom:1034.156325px;}
.yc4{bottom:1034.655600px;}
.y59{bottom:1035.656325px;}
.y14c{bottom:1036.146075px;}
.y103{bottom:1042.528725px;}
.y125{bottom:1043.773650px;}
.y7d{bottom:1046.607750px;}
.ye7{bottom:1054.352250px;}
.y14b{bottom:1058.639700px;}
.ya0{bottom:1059.659550px;}
.yc3{bottom:1060.155600px;}
.y7{bottom:1061.026800px;}
.y58{bottom:1061.159550px;}
.y102{bottom:1065.022350px;}
.y124{bottom:1066.276350px;}
.y7c{bottom:1072.110975px;}
.y34{bottom:1072.111125px;}
.y14a{bottom:1081.133325px;}
.y9f{bottom:1085.159550px;}
.yc2{bottom:1085.655600px;}
.y57{bottom:1086.659550px;}
.y7b{bottom:1097.614200px;}
.y33{bottom:1097.614350px;}
.y101{bottom:1103.614200px;}
.y149{bottom:1103.626950px;}
.ye6{bottom:1123.110975px;}
.y56{bottom:1123.114200px;}
.y32{bottom:1123.114350px;}
.y100{bottom:1126.120575px;}
.y55{bottom:1148.614200px;}
.y31{bottom:1148.614350px;}
.y24{bottom:1196.440800px;}
.h18{height:33.550781px;}
.h9{height:45.325500px;}
.h17{height:47.929688px;}
.h10{height:48.888281px;}
.ha{height:49.434000px;}
.h12{height:49.725000px;}
.h5{height:50.086523px;}
.hf{height:50.088023px;}
.h13{height:50.099423px;}
.h14{height:50.102723px;}
.h11{height:50.106923px;}
.hc{height:50.111723px;}
.hd{height:50.114723px;}
.h6{height:50.121023px;}
.he{height:50.943750px;}
.h15{height:51.770361px;}
.h16{height:52.535742px;}
.hb{height:52.921080px;}
.h8{height:53.625000px;}
.h7{height:55.704000px;}
.h4{height:73.431164px;}
.h3{height:94.374000px;}
.h2{height:151.926545px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:32.893650px;}
.x8{left:34.015800px;}
.x6{left:54.756450px;}
.x3{left:66.193200px;}
.xf{left:68.161050px;}
.xc{left:69.472200px;}
.xd{left:78.481950px;}
.xe{left:80.972700px;}
.x2{left:88.738200px;}
.xa{left:96.070950px;}
.x9{left:99.735300px;}
.x1{left:102.463200px;}
.xb{left:124.653075px;}
.x16{left:162.588450px;}
.x11{left:170.078700px;}
.x15{left:198.693450px;}
.x17{left:209.565300px;}
.x4{left:218.113200px;}
.x7{left:219.188850px;}
.x10{left:575.358450px;}
.x5{left:704.412450px;}
.x14{left:796.952250px;}
.x13{left:808.796100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.029867pt;}
.ls3{letter-spacing:0.055733pt;}
.ls5{letter-spacing:0.111467pt;}
.ls2{letter-spacing:0.167200pt;}
.ls6{letter-spacing:0.222933pt;}
.ls4{letter-spacing:0.278667pt;}
.ls7{letter-spacing:0.724533pt;}
.ls9{letter-spacing:0.891733pt;}
.ls8{letter-spacing:1.058933pt;}
.ws38{word-spacing:-21.266667pt;}
.ws3{word-spacing:-15.326667pt;}
.ws3e{word-spacing:-14.936533pt;}
.ws4e{word-spacing:-14.769333pt;}
.ws1{word-spacing:-14.213333pt;}
.ws4d{word-spacing:-14.100533pt;}
.ws4f{word-spacing:-14.044800pt;}
.ws3d{word-spacing:-13.877600pt;}
.ws33{word-spacing:-13.097333pt;}
.ws3f{word-spacing:-4.347200pt;}
.ws12{word-spacing:-4.180000pt;}
.ws14{word-spacing:-4.124267pt;}
.ws2e{word-spacing:-4.080000pt;}
.ws16{word-spacing:-3.957067pt;}
.ws30{word-spacing:-3.901333pt;}
.ws24{word-spacing:-3.789867pt;}
.ws25{word-spacing:-3.734133pt;}
.ws22{word-spacing:-3.622667pt;}
.ws35{word-spacing:-3.566933pt;}
.ws2f{word-spacing:-3.344000pt;}
.ws2c{word-spacing:-3.318400pt;}
.ws31{word-spacing:-3.288267pt;}
.ws37{word-spacing:-3.232533pt;}
.ws1d{word-spacing:-3.176800pt;}
.ws23{word-spacing:-3.121067pt;}
.ws11{word-spacing:-2.953867pt;}
.ws17{word-spacing:-2.786667pt;}
.ws1f{word-spacing:-2.730933pt;}
.ws2d{word-spacing:-2.675200pt;}
.ws20{word-spacing:-2.563733pt;}
.ws3c{word-spacing:-2.508000pt;}
.ws7{word-spacing:-2.452267pt;}
.ws43{word-spacing:-2.396533pt;}
.ws39{word-spacing:-2.340800pt;}
.ws2a{word-spacing:-2.285067pt;}
.ws4c{word-spacing:-2.173600pt;}
.ws3b{word-spacing:-2.117867pt;}
.ws13{word-spacing:-2.062133pt;}
.ws2b{word-spacing:-2.012800pt;}
.ws26{word-spacing:-1.950667pt;}
.ws28{word-spacing:-1.839200pt;}
.ws54{word-spacing:-1.783467pt;}
.ws18{word-spacing:-1.727733pt;}
.ws1a{word-spacing:-1.672000pt;}
.ws5d{word-spacing:-1.653333pt;}
.ws36{word-spacing:-1.560533pt;}
.ws29{word-spacing:-1.504800pt;}
.wsb{word-spacing:-1.337600pt;}
.ws15{word-spacing:-1.281867pt;}
.ws1b{word-spacing:-1.226133pt;}
.ws5{word-spacing:-1.170400pt;}
.ws3a{word-spacing:-1.058933pt;}
.ws52{word-spacing:-1.003200pt;}
.ws19{word-spacing:-0.836000pt;}
.ws8{word-spacing:-0.780267pt;}
.ws1e{word-spacing:-0.668800pt;}
.ws34{word-spacing:-0.613067pt;}
.ws27{word-spacing:-0.501600pt;}
.ws4{word-spacing:-0.278667pt;}
.ws21{word-spacing:-0.167200pt;}
.ws1c{word-spacing:-0.111467pt;}
.ws2{word-spacing:-0.058667pt;}
.ws10{word-spacing:-0.055733pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:0.222933pt;}
.wsf{word-spacing:0.557333pt;}
.ws4b{word-spacing:0.724533pt;}
.ws49{word-spacing:1.170400pt;}
.ws51{word-spacing:1.281867pt;}
.ws6{word-spacing:1.337600pt;}
.ws5a{word-spacing:1.546667pt;}
.ws5e{word-spacing:1.653333pt;}
.ws5f{word-spacing:1.717333pt;}
.ws45{word-spacing:1.950667pt;}
.ws55{word-spacing:2.675200pt;}
.ws44{word-spacing:3.232533pt;}
.ws32{word-spacing:3.455467pt;}
.ws4a{word-spacing:3.789867pt;}
.ws5c{word-spacing:3.893333pt;}
.ws53{word-spacing:5.127467pt;}
.ws59{word-spacing:5.461867pt;}
.wsc{word-spacing:5.740533pt;}
.ws46{word-spacing:5.907733pt;}
.ws58{word-spacing:6.297867pt;}
.wsd{word-spacing:6.353600pt;}
.ws5b{word-spacing:6.506667pt;}
.ws9{word-spacing:7.245333pt;}
.ws42{word-spacing:7.301067pt;}
.ws48{word-spacing:7.746933pt;}
.ws47{word-spacing:8.137067pt;}
.wsa{word-spacing:8.304267pt;}
.ws56{word-spacing:9.196000pt;}
.ws40{word-spacing:12.874400pt;}
.ws57{word-spacing:17.165867pt;}
.ws41{word-spacing:18.893600pt;}
.ws50{word-spacing:70.001067pt;}
._2{margin-left:-6.400000pt;}
._4{margin-left:-5.387200pt;}
._8{margin-left:-4.458667pt;}
._1{margin-left:-3.200000pt;}
._0{margin-left:-1.600000pt;}
._3{width:1.600000pt;}
._9{width:2.508000pt;}
._f{width:3.789867pt;}
._5{width:4.932400pt;}
._7{width:6.574933pt;}
._11{width:8.137067pt;}
._15{width:9.173707pt;}
._16{width:10.143467pt;}
._e{width:11.609253pt;}
._14{width:14.768880pt;}
._d{width:18.614933pt;}
._10{width:19.818773pt;}
._13{width:31.138213pt;}
._17{width:48.543733pt;}
._12{width:422.928000pt;}
._18{width:440.938667pt;}
._b{width:448.624000pt;}
._a{width:450.560000pt;}
._c{width:451.674667pt;}
._6{width:462.352000pt;}
.fs8{font-size:37.333333pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:54.400000pt;}
.fs5{font-size:54.666667pt;}
.fs3{font-size:55.733333pt;}
.fs4{font-size:58.666667pt;}
.fs2{font-size:77.333333pt;}
.fs1{font-size:112.000000pt;}
.fs0{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:42.276800pt;}
.y9e{bottom:43.520933pt;}
.y1b{bottom:43.610133pt;}
.ye5{bottom:43.901467pt;}
.y14d{bottom:44.864800pt;}
.y15b{bottom:81.681200pt;}
.y15a{bottom:92.881200pt;}
.y159{bottom:104.081200pt;}
.y54{bottom:112.554800pt;}
.yc1{bottom:114.224133pt;}
.y7a{bottom:115.552133pt;}
.y9d{bottom:116.483667pt;}
.y148{bottom:117.242400pt;}
.y158{bottom:126.481200pt;}
.ye4{bottom:129.216133pt;}
.y53{bottom:135.221467pt;}
.yc0{bottom:136.890800pt;}
.y147{bottom:137.242400pt;}
.y157{bottom:137.681200pt;}
.y79{bottom:138.218800pt;}
.y9c{bottom:139.148667pt;}
.y30{bottom:140.250267pt;}
.y123{bottom:147.847067pt;}
.ye3{bottom:151.882800pt;}
.y146{bottom:157.242400pt;}
.ybf{bottom:159.557467pt;}
.y78{bottom:160.885467pt;}
.y9b{bottom:161.819867pt;}
.y2f{bottom:162.911333pt;}
.y122{bottom:167.841400pt;}
.y52{bottom:169.922133pt;}
.ye2{bottom:174.549600pt;}
.y145{bottom:177.261267pt;}
.ybe{bottom:182.224133pt;}
.y77{bottom:183.552133pt;}
.y9a{bottom:184.486533pt;}
.y2e{bottom:185.580867pt;}
.y51{bottom:192.588800pt;}
.y121{bottom:203.148467pt;}
.y76{bottom:206.218800pt;}
.y13c{bottom:206.735733pt;}
.y2d{bottom:208.250400pt;}
.ye1{bottom:208.727600pt;}
.y50{bottom:215.255467pt;}
.ybd{bottom:216.683800pt;}
.y99{bottom:218.226533pt;}
.y120{bottom:223.142800pt;}
.y13b{bottom:226.730067pt;}
.y75{bottom:228.885467pt;}
.y2c{bottom:230.917067pt;}
.ye0{bottom:231.397133pt;}
.y4f{bottom:237.922133pt;}
.ybc{bottom:239.353333pt;}
.y98{bottom:240.893200pt;}
.y11f{bottom:243.137467pt;}
.ydf{bottom:254.066667pt;}
.y13a{bottom:260.602000pt;}
.ybb{bottom:262.020000pt;}
.y97{bottom:263.559867pt;}
.y74{bottom:263.998400pt;}
.y2b{bottom:267.072000pt;}
.y4e{bottom:274.077067pt;}
.yde{bottom:276.733333pt;}
.y11e{bottom:278.444533pt;}
.y139{bottom:280.607667pt;}
.yba{bottom:284.686667pt;}
.y96{bottom:286.226533pt;}
.y73{bottom:286.665067pt;}
.y2a{bottom:289.738667pt;}
.y4d{bottom:296.743733pt;}
.y11d{bottom:298.459400pt;}
.ydd{bottom:299.400000pt;}
.y138{bottom:300.602000pt;}
.yb9{bottom:307.353333pt;}
.y95{bottom:308.893200pt;}
.y72{bottom:309.323133pt;}
.y29{bottom:312.405333pt;}
.y11c{bottom:318.453733pt;}
.y4c{bottom:319.410400pt;}
.y137{bottom:320.607667pt;}
.ydc{bottom:322.071067pt;}
.yb8{bottom:330.020000pt;}
.y94{bottom:331.559867pt;}
.y71{bottom:331.992667pt;}
.y28{bottom:335.072000pt;}
.yff{bottom:337.634133pt;}
.y136{bottom:340.602000pt;}
.y4b{bottom:342.077067pt;}
.y5{bottom:343.257467pt;}
.y22{bottom:353.674933pt;}
.y11b{bottom:353.941933pt;}
.y93{bottom:354.226533pt;}
.y70{bottom:354.662200pt;}
.ydb{bottom:357.573200pt;}
.y27{bottom:357.738667pt;}
.yfe{bottom:360.300800pt;}
.y135{bottom:360.639200pt;}
.yb7{bottom:364.179600pt;}
.y4a{bottom:364.750333pt;}
.y11a{bottom:373.936267pt;}
.y92{bottom:376.893200pt;}
.y6f{bottom:377.331733pt;}
.yda{bottom:380.239867pt;}
.yfd{bottom:382.967467pt;}
.y26{bottom:385.585867pt;}
.yb6{bottom:386.843400pt;}
.y21{bottom:387.007933pt;}
.y144{bottom:390.650267pt;}
.y119{bottom:393.930600pt;}
.y49{bottom:398.232133pt;}
.y91{bottom:399.559333pt;}
.y6e{bottom:399.998400pt;}
.yd9{bottom:402.903667pt;}
.y20{bottom:404.337267pt;}
.yb5{bottom:409.512933pt;}
.y143{bottom:410.644600pt;}
.y4{bottom:413.281733pt;}
.y118{bottom:413.924933pt;}
.yfc{bottom:418.486533pt;}
.y48{bottom:420.898800pt;}
.y6d{bottom:422.665067pt;}
.yd8{bottom:425.573200pt;}
.yb4{bottom:432.179600pt;}
.y1a{bottom:433.389667pt;}
.y90{bottom:434.378733pt;}
.y1f{bottom:437.670267pt;}
.yfb{bottom:441.153200pt;}
.y47{bottom:443.565467pt;}
.y13f{bottom:443.819867pt;}
.yd7{bottom:448.239867pt;}
.y117{bottom:449.232000pt;}
.y6c{bottom:454.785000pt;}
.y19{bottom:456.059200pt;}
.y8f{bottom:457.048267pt;}
.yb3{bottom:458.700800pt;}
.y3{bottom:459.961733pt;}
.yfa{bottom:463.819867pt;}
.y13e{bottom:463.833600pt;}
.y46{bottom:466.232133pt;}
.y116{bottom:469.244133pt;}
.y1e{bottom:471.003267pt;}
.y6b{bottom:477.454533pt;}
.y18{bottom:478.728733pt;}
.y8e{bottom:479.714933pt;}
.yb2{bottom:482.693467pt;}
.y13d{bottom:483.827933pt;}
.yd6{bottom:484.638800pt;}
.yf9{bottom:486.486533pt;}
.y115{bottom:489.238467pt;}
.y45{bottom:494.079333pt;}
.y6a{bottom:500.121200pt;}
.y17{bottom:501.398267pt;}
.y8d{bottom:502.381600pt;}
.y1d{bottom:504.336267pt;}
.y2{bottom:506.641733pt;}
.yd5{bottom:507.305467pt;}
.yf8{bottom:509.154667pt;}
.y142{bottom:517.025600pt;}
.y69{bottom:522.787867pt;}
.y16{bottom:524.067800pt;}
.y114{bottom:524.545533pt;}
.y8c{bottom:525.047933pt;}
.yd4{bottom:529.972133pt;}
.y1c{bottom:535.002133pt;}
.y141{bottom:537.019933pt;}
.yf7{bottom:543.570000pt;}
.yb1{bottom:544.469067pt;}
.y113{bottom:544.539867pt;}
.y68{bottom:545.454533pt;}
.yd3{bottom:552.638800pt;}
.y1{bottom:553.321733pt;}
.y44{bottom:555.347467pt;}
.y140{bottom:557.014267pt;}
.y8b{bottom:558.641200pt;}
.y23{bottom:560.721467pt;}
.y112{bottom:564.534200pt;}
.y15{bottom:565.268667pt;}
.yf6{bottom:566.236667pt;}
.yb0{bottom:567.135733pt;}
.y67{bottom:568.121200pt;}
.yd2{bottom:575.305467pt;}
.y43{bottom:578.014133pt;}
.y8a{bottom:581.307867pt;}
.y14{bottom:587.938200pt;}
.yf5{bottom:588.900467pt;}
.y134{bottom:589.424533pt;}
.yaf{bottom:589.802400pt;}
.y66{bottom:590.794467pt;}
.yd1{bottom:597.972133pt;}
.y111{bottom:599.841267pt;}
.y42{bottom:600.680800pt;}
.y89{bottom:603.974533pt;}
.y133{bottom:609.418867pt;}
.y13{bottom:610.607733pt;}
.yf4{bottom:611.570000pt;}
.yae{bottom:612.469067pt;}
.y110{bottom:619.835600pt;}
.y41{bottom:623.347467pt;}
.y65{bottom:624.276267pt;}
.y88{bottom:626.635467pt;}
.y132{bottom:629.413200pt;}
.y12{bottom:633.277267pt;}
.yd0{bottom:633.961600pt;}
.yf3{bottom:634.233067pt;}
.yad{bottom:635.132867pt;}
.y10f{bottom:639.830400pt;}
.y40{bottom:646.014133pt;}
.y64{bottom:646.942933pt;}
.y87{bottom:649.305000pt;}
.y131{bottom:649.407533pt;}
.y6{bottom:650.949467pt;}
.y11{bottom:655.946800pt;}
.ycf{bottom:656.628267pt;}
.yf2{bottom:656.902600pt;}
.yac{bottom:657.802400pt;}
.y3f{bottom:668.680800pt;}
.y63{bottom:669.609600pt;}
.y86{bottom:671.974533pt;}
.y10e{bottom:675.137467pt;}
.yce{bottom:679.294933pt;}
.yab{bottom:680.469067pt;}
.y130{bottom:682.596733pt;}
.y156{bottom:684.510133pt;}
.y3e{bottom:691.348733pt;}
.y62{bottom:692.276267pt;}
.yf1{bottom:692.502267pt;}
.y85{bottom:694.641200pt;}
.y10d{bottom:695.157933pt;}
.y10{bottom:699.808933pt;}
.y155{bottom:700.510133pt;}
.ycd{bottom:701.961600pt;}
.y12f{bottom:702.591067pt;}
.yaa{bottom:703.135733pt;}
.y61{bottom:714.942933pt;}
.y10c{bottom:715.152267pt;}
.yf0{bottom:715.168933pt;}
.y154{bottom:716.510133pt;}
.y84{bottom:717.307867pt;}
.yf{bottom:722.478467pt;}
.y12e{bottom:722.585400pt;}
.ycc{bottom:724.628267pt;}
.y3d{bottom:725.415733pt;}
.ya9{bottom:725.797867pt;}
.y153{bottom:732.510133pt;}
.yef{bottom:737.835600pt;}
.ye{bottom:745.148000pt;}
.ycb{bottom:747.294933pt;}
.y3c{bottom:748.082400pt;}
.y60{bottom:748.431200pt;}
.ya8{bottom:748.469067pt;}
.y10b{bottom:751.211733pt;}
.y83{bottom:752.129600pt;}
.y12d{bottom:754.757467pt;}
.yee{bottom:760.502267pt;}
.yd{bottom:767.807000pt;}
.yca{bottom:769.961600pt;}
.y3b{bottom:770.749067pt;}
.y5f{bottom:771.097867pt;}
.y10a{bottom:771.206067pt;}
.y12c{bottom:774.785533pt;}
.y82{bottom:774.796267pt;}
.yed{bottom:783.168933pt;}
.ya7{bottom:783.252933pt;}
.y109{bottom:791.200400pt;}
.yc9{bottom:792.628267pt;}
.y3a{bottom:793.415733pt;}
.y5e{bottom:793.764533pt;}
.y12b{bottom:794.779867pt;}
.y81{bottom:797.460067pt;}
.y152{bottom:803.603467pt;}
.ya6{bottom:805.919600pt;}
.yc{bottom:809.955333pt;}
.y108{bottom:811.226667pt;}
.y12a{bottom:814.774200pt;}
.yc8{bottom:815.294933pt;}
.y39{bottom:816.076133pt;}
.y5d{bottom:816.431200pt;}
.yec{bottom:818.688133pt;}
.y151{bottom:819.603467pt;}
.y80{bottom:820.129600pt;}
.ya5{bottom:828.583400pt;}
.y107{bottom:831.221000pt;}
.yb{bottom:832.624867pt;}
.y129{bottom:834.768533pt;}
.y150{bottom:835.603467pt;}
.y38{bottom:838.745667pt;}
.y5c{bottom:839.097867pt;}
.yeb{bottom:841.354800pt;}
.y7f{bottom:842.796267pt;}
.y106{bottom:851.215333pt;}
.ya4{bottom:851.252933pt;}
.y14f{bottom:851.603467pt;}
.yc7{bottom:851.693867pt;}
.y128{bottom:854.762867pt;}
.ya{bottom:855.294400pt;}
.yea{bottom:864.021467pt;}
.y14e{bottom:867.603467pt;}
.y7e{bottom:870.643600pt;}
.y37{bottom:873.342133pt;}
.ya3{bottom:873.919600pt;}
.yc6{bottom:874.360533pt;}
.y5b{bottom:875.252933pt;}
.y9{bottom:877.963933pt;}
.ye9{bottom:886.688133pt;}
.y105{bottom:886.703533pt;}
.y127{bottom:887.798800pt;}
.y36{bottom:896.008800pt;}
.ya2{bottom:896.580533pt;}
.yc5{bottom:897.027200pt;}
.y5a{bottom:897.919600pt;}
.y8{bottom:900.633467pt;}
.y104{bottom:906.697867pt;}
.y126{bottom:907.804467pt;}
.ye8{bottom:909.354800pt;}
.y35{bottom:918.669867pt;}
.ya1{bottom:919.250067pt;}
.yc4{bottom:919.693867pt;}
.y59{bottom:920.583400pt;}
.y14c{bottom:921.018733pt;}
.y103{bottom:926.692200pt;}
.y125{bottom:927.798800pt;}
.y7d{bottom:930.318000pt;}
.ye7{bottom:937.202000pt;}
.y14b{bottom:941.013067pt;}
.ya0{bottom:941.919600pt;}
.yc3{bottom:942.360533pt;}
.y7{bottom:943.134933pt;}
.y58{bottom:943.252933pt;}
.y102{bottom:946.686533pt;}
.y124{bottom:947.801200pt;}
.y7c{bottom:952.987533pt;}
.y34{bottom:952.987667pt;}
.y14a{bottom:961.007400pt;}
.y9f{bottom:964.586267pt;}
.yc2{bottom:965.027200pt;}
.y57{bottom:965.919600pt;}
.y7b{bottom:975.657067pt;}
.y33{bottom:975.657200pt;}
.y101{bottom:980.990400pt;}
.y149{bottom:981.001733pt;}
.ye6{bottom:998.320867pt;}
.y56{bottom:998.323733pt;}
.y32{bottom:998.323867pt;}
.y100{bottom:1000.996067pt;}
.y55{bottom:1020.990400pt;}
.y31{bottom:1020.990533pt;}
.y24{bottom:1063.502933pt;}
.h18{height:29.822917pt;}
.h9{height:40.289333pt;}
.h17{height:42.604167pt;}
.h10{height:43.456250pt;}
.ha{height:43.941333pt;}
.h12{height:44.200000pt;}
.h5{height:44.521354pt;}
.hf{height:44.522687pt;}
.h13{height:44.532821pt;}
.h14{height:44.535754pt;}
.h11{height:44.539487pt;}
.hc{height:44.543754pt;}
.hd{height:44.546421pt;}
.h6{height:44.552021pt;}
.he{height:45.283333pt;}
.h15{height:46.018099pt;}
.h16{height:46.698438pt;}
.hb{height:47.040960pt;}
.h8{height:47.666667pt;}
.h7{height:49.514667pt;}
.h4{height:65.272145pt;}
.h3{height:83.888000pt;}
.h2{height:135.045818pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:29.238800pt;}
.x8{left:30.236267pt;}
.x6{left:48.672400pt;}
.x3{left:58.838400pt;}
.xf{left:60.587600pt;}
.xc{left:61.753067pt;}
.xd{left:69.761733pt;}
.xe{left:71.975733pt;}
.x2{left:78.878400pt;}
.xa{left:85.396400pt;}
.x9{left:88.653600pt;}
.x1{left:91.078400pt;}
.xb{left:110.802733pt;}
.x16{left:144.523067pt;}
.x11{left:151.181067pt;}
.x15{left:176.616400pt;}
.x17{left:186.280267pt;}
.x4{left:193.878400pt;}
.x7{left:194.834533pt;}
.x10{left:511.429733pt;}
.x5{left:626.144400pt;}
.x14{left:708.402000pt;}
.x13{left:718.929867pt;}
}




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