
    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_72156dde56a692feed8024b4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.136230;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_e8f88e4c2f0d09f087ab072b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.049000;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_f81a0f1497ec2b9a0640284b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_ec975071da8e7f0015e6db68.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_dca8b3f1e8e202f6c03c4b1d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.110000;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_a1449e3b4b94afd8992e9d8a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.110000;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_f588f4de240368a978f90754.woff')format("woff");}.ff7{font-family:ff7;line-height:1.112000;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_47516f5355ce7cfbe734b4a8.woff')format("woff");}.ff8{font-family:ff8;line-height:1.061000;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_4b265240fec3e1e9ed9a4260.woff')format("woff");}.ff9{font-family:ff9;line-height:1.061000;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_cb7fdb7f099c7009342223f0.woff')format("woff");}.ffa{font-family:ffa;line-height:1.021000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_025f901c4b9f19ea2fb624cf.woff')format("woff");}.ffb{font-family:ffb;line-height:1.021000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ec96efaf0e2088b08e5455a7.woff')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_1e50f5e3d56f9258f0f15658.woff')format("woff");}.ffd{font-family:ffd;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_8979446f4f0b2ae0659ff21d.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a88bbe05889b2101b40ff16a.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_b61ce13e8aed9e9ecd9cd1ae.woff')format("woff");}.ff10{font-family:ff10;line-height:0.855469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_73eb1cdbd5e92c2df5ee16c1.woff')format("woff");}.ff11{font-family:ff11;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_460868c58709ec689ce434bf.woff')format("woff");}.ff12{font-family:ff12;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m24{transform:matrix(0.167126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167126,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.167895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167895,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.191484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191484,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.223065,0.000000,-0.074347,0.238689,0,0);-ms-transform:matrix(0.223065,0.000000,-0.074347,0.238689,0,0);-webkit-transform:matrix(0.223065,0.000000,-0.074347,0.238689,0,0);}
.m1b{transform:matrix(0.232619,0.000000,-0.077532,0.237674,0,0);-ms-transform:matrix(0.232619,0.000000,-0.077532,0.237674,0,0);-webkit-transform:matrix(0.232619,0.000000,-0.077532,0.237674,0,0);}
.mb{transform:matrix(0.233446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233446,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.236234,0.000000,-0.078736,0.237277,0,0);-ms-transform:matrix(0.236234,0.000000,-0.078736,0.237277,0,0);-webkit-transform:matrix(0.236234,0.000000,-0.078736,0.237277,0,0);}
.m15{transform:matrix(0.236402,0.000000,-0.078793,0.237259,0,0);-ms-transform:matrix(0.236402,0.000000,-0.078793,0.237259,0,0);-webkit-transform:matrix(0.236402,0.000000,-0.078793,0.237259,0,0);}
.mc{transform:matrix(0.236862,0.000000,-0.078946,0.237208,0,0);-ms-transform:matrix(0.236862,0.000000,-0.078946,0.237208,0,0);-webkit-transform:matrix(0.236862,0.000000,-0.078946,0.237208,0,0);}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m19{transform:matrix(0.237949,0.000000,-0.079308,0.237087,0,0);-ms-transform:matrix(0.237949,0.000000,-0.079308,0.237087,0,0);-webkit-transform:matrix(0.237949,0.000000,-0.079308,0.237087,0,0);}
.m11{transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.240879,0.000000,-0.080285,0.236758,0,0);-ms-transform:matrix(0.240879,0.000000,-0.080285,0.236758,0,0);-webkit-transform:matrix(0.240879,0.000000,-0.080285,0.236758,0,0);}
.m1d{transform:matrix(0.241328,0.000000,-0.080435,0.236707,0,0);-ms-transform:matrix(0.241328,0.000000,-0.080435,0.236707,0,0);-webkit-transform:matrix(0.241328,0.000000,-0.080435,0.236707,0,0);}
.me{transform:matrix(0.242912,0.000000,-0.080962,0.236527,0,0);-ms-transform:matrix(0.242912,0.000000,-0.080962,0.236527,0,0);-webkit-transform:matrix(0.242912,0.000000,-0.080962,0.236527,0,0);}
.m28{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.244683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244683,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m14{transform:matrix(0.248238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248238,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248319,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249631,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);}
.m18{transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251101,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252212,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.252665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252665,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.253042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253042,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.253394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253394,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253719,0.000000,-0.084565,0.235263,0,0);-ms-transform:matrix(0.253719,0.000000,-0.084565,0.235263,0,0);-webkit-transform:matrix(0.253719,0.000000,-0.084565,0.235263,0,0);}
.m9{transform:matrix(0.253720,0.000000,-0.084564,0.235264,0,0);-ms-transform:matrix(0.253720,0.000000,-0.084564,0.235264,0,0);-webkit-transform:matrix(0.253720,0.000000,-0.084564,0.235264,0,0);}
.m1e{transform:matrix(0.254351,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254351,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254351,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254748,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.254880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254880,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.256211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256211,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.256749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256749,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.257437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257437,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.258239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258239,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.v7{vertical-align:-69.816843px;}
.va{vertical-align:-47.049347px;}
.v6{vertical-align:-45.923657px;}
.vf{vertical-align:-25.708328px;}
.v2{vertical-align:-23.760000px;}
.vd{vertical-align:-21.543887px;}
.v4{vertical-align:-18.796782px;}
.v5{vertical-align:-16.594581px;}
.v9{vertical-align:-10.279636px;}
.ve{vertical-align:-4.164442px;}
.v8{vertical-align:-2.569909px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.796782px;}
.v1{vertical-align:23.760000px;}
.vb{vertical-align:26.640000px;}
.v10{vertical-align:37.714578px;}
.vc{vertical-align:46.962361px;}
.ls3d{letter-spacing:-0.664953px;}
.ls35{letter-spacing:-0.504000px;}
.ls44{letter-spacing:-0.392400px;}
.ls41{letter-spacing:-0.385800px;}
.lsa{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.265200px;}
.ls10{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.144000px;}
.ls3f{letter-spacing:-0.136800px;}
.ls45{letter-spacing:-0.103200px;}
.lsd{letter-spacing:-0.072000px;}
.ls40{letter-spacing:-0.067200px;}
.ls43{letter-spacing:-0.060600px;}
.lsb{letter-spacing:-0.028800px;}
.ls17{letter-spacing:-0.013680px;}
.ls7{letter-spacing:0.000000px;}
.ls46{letter-spacing:0.040320px;}
.ls3{letter-spacing:0.067680px;}
.ls1{letter-spacing:0.072000px;}
.ls21{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.206640px;}
.ls2{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.262200px;}
.ls18{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.378720px;}
.ls42{letter-spacing:0.406800px;}
.ls11{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.720000px;}
.ls12{letter-spacing:1.224000px;}
.ls13{letter-spacing:2.160000px;}
.ls6{letter-spacing:2.858285px;}
.ls26{letter-spacing:3.701520px;}
.ls25{letter-spacing:3.816000px;}
.ls33{letter-spacing:13.200000px;}
.ls15{letter-spacing:14.319681px;}
.ls2a{letter-spacing:18.205874px;}
.ls3e{letter-spacing:18.242061px;}
.ls28{letter-spacing:18.785583px;}
.ls39{letter-spacing:28.038996px;}
.ls23{letter-spacing:31.176000px;}
.ls38{letter-spacing:40.934568px;}
.ls37{letter-spacing:41.526108px;}
.ls2c{letter-spacing:42.427165px;}
.ls34{letter-spacing:45.404745px;}
.ls2f{letter-spacing:50.194086px;}
.ls3c{letter-spacing:51.666224px;}
.ls19{letter-spacing:63.250551px;}
.ls24{letter-spacing:70.530990px;}
.ls16{letter-spacing:73.228024px;}
.ls3a{letter-spacing:75.066426px;}
.ls1e{letter-spacing:76.979656px;}
.ls1b{letter-spacing:80.249514px;}
.ls32{letter-spacing:86.317631px;}
.ls22{letter-spacing:92.604945px;}
.ls27{letter-spacing:120.654923px;}
.lsf{letter-spacing:123.415534px;}
.ls29{letter-spacing:126.982626px;}
.ls2d{letter-spacing:127.374581px;}
.ls30{letter-spacing:127.664436px;}
.ls36{letter-spacing:135.906634px;}
.ls3b{letter-spacing:174.778854px;}
.ls1f{letter-spacing:179.540786px;}
.ls1a{letter-spacing:194.682906px;}
.ls14{letter-spacing:199.728000px;}
.ls2b{letter-spacing:227.374655px;}
.ls2e{letter-spacing:235.431429px;}
.ls20{letter-spacing:239.018256px;}
.ls31{letter-spacing:304.183423px;}
.ls1c{letter-spacing:360.551772px;}
.ls1d{letter-spacing:365.432835px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(145,25,56),0 0.015em rgb(145,25,56),0.015em 0 rgb(145,25,56),0 -0.015em  rgb(145,25,56);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(145,25,56);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws21{word-spacing:-174.850057px;}
.ws18{word-spacing:-122.508788px;}
.ws3{word-spacing:-59.532240px;}
.ws1{word-spacing:-37.096560px;}
.ws2{word-spacing:-22.628160px;}
.ws5{word-spacing:-19.944000px;}
.ws4{word-spacing:-19.872000px;}
.wsf{word-spacing:-19.051200px;}
.ws12{word-spacing:-18.864000px;}
.ws9{word-spacing:-18.576000px;}
.wsa{word-spacing:-18.504000px;}
.wsb{word-spacing:-18.360000px;}
.wse{word-spacing:-18.288000px;}
.ws24{word-spacing:-18.216000px;}
.ws1e{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.285880px;}
.ws6{word-spacing:-17.023680px;}
.ws7{word-spacing:-16.994880px;}
.ws25{word-spacing:-10.671720px;}
.ws0{word-spacing:-0.156240px;}
.ws11{word-spacing:-0.142560px;}
.ws10{word-spacing:0.000000px;}
.ws17{word-spacing:31.347927px;}
.ws1b{word-spacing:31.969438px;}
.ws20{word-spacing:34.133146px;}
.wsd{word-spacing:39.530420px;}
.ws22{word-spacing:51.978471px;}
.ws23{word-spacing:53.432844px;}
.ws1d{word-spacing:74.513628px;}
.ws1c{word-spacing:90.321235px;}
.ws15{word-spacing:105.985849px;}
.ws13{word-spacing:114.385874px;}
.ws16{word-spacing:115.688779px;}
.ws14{word-spacing:124.109631px;}
.ws1a{word-spacing:197.314015px;}
.ws19{word-spacing:229.213341px;}
.wsc{word-spacing:241.758668px;}
.ws1f{word-spacing:513.467022px;}
._2d{margin-left:-598.064595px;}
._31{margin-left:-420.051946px;}
._1c{margin-left:-126.000000px;}
._7{margin-left:-4.731840px;}
._6{margin-left:-3.260160px;}
._1d{margin-left:-2.178240px;}
._1{margin-left:-1.157760px;}
._2{width:1.169280px;}
._3{width:2.569920px;}
._10{width:3.954240px;}
._f{width:5.264640px;}
._11{width:6.335520px;}
._13{width:7.464480px;}
._8{width:8.611200px;}
._9{width:10.567200px;}
._12{width:11.592000px;}
._18{width:12.679680px;}
._4{width:13.942080px;}
._5{width:15.364320px;}
._19{width:16.433760px;}
._38{width:19.560000px;}
._17{width:20.755200px;}
._a{width:22.481280px;}
._3a{width:23.670720px;}
._c{width:24.871680px;}
._b{width:25.997760px;}
._36{width:27.552480px;}
._35{width:28.656000px;}
._28{width:31.032000px;}
._29{width:37.657680px;}
._14{width:38.662320px;}
._e{width:39.895440px;}
._d{width:41.135040px;}
._15{width:43.560000px;}
._39{width:47.448000px;}
._33{width:50.304000px;}
._34{width:51.456000px;}
._2a{width:59.616000px;}
._1a{width:61.704000px;}
._1b{width:62.916000px;}
._2c{width:64.242239px;}
._2b{width:67.609095px;}
._30{width:69.209690px;}
._2f{width:73.054673px;}
._23{width:85.170162px;}
._25{width:86.858763px;}
._2e{width:106.947485px;}
._16{width:108.480000px;}
._26{width:111.385580px;}
._27{width:144.087126px;}
._21{width:190.409632px;}
._22{width:193.561011px;}
._1e{width:198.786171px;}
._20{width:201.899689px;}
._1f{width:206.785518px;}
._24{width:224.991869px;}
._32{width:295.935751px;}
._37{width:1305.948000px;}
._0{width:1481.489760px;}
.fc5{color:rgb(21,27,28);}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(145,25,56);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:18.000000px;}
.fs9{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs37{font-size:41.074784px;}
.fs28{font-size:41.167750px;}
.fs26{font-size:41.216829px;}
.fs34{font-size:41.422589px;}
.fs4{font-size:41.760000px;}
.fs38{font-size:41.778439px;}
.fs16{font-size:41.967783px;}
.fs1a{font-size:42.199078px;}
.fsd{font-size:42.250322px;}
.fsa{font-size:42.475309px;}
.fs2b{font-size:42.554136px;}
.fsf{font-size:42.607607px;}
.fs2e{font-size:43.130959px;}
.fs22{font-size:47.900282px;}
.fs2{font-size:48.240000px;}
.fs20{font-size:48.305627px;}
.fs1e{font-size:48.888959px;}
.fs33{font-size:51.120000px;}
.fs0{font-size:66.240000px;}
.fs27{font-size:71.203385px;}
.fs29{font-size:71.364542px;}
.fs35{font-size:71.623663px;}
.fs7{font-size:72.000000px;}
.fs39{font-size:72.109101px;}
.fs17{font-size:72.668628px;}
.fs1b{font-size:72.864094px;}
.fse{font-size:73.068648px;}
.fs14{font-size:73.206287px;}
.fsb{font-size:73.377133px;}
.fs10{font-size:73.605681px;}
.fs2d{font-size:73.674858px;}
.fs2f{font-size:74.732149px;}
.fs12{font-size:74.964940px;}
.fs11{font-size:74.965030px;}
.fs32{font-size:75.185782px;}
.fs2a{font-size:75.251445px;}
.fs8{font-size:75.893905px;}
.fs1c{font-size:76.770992px;}
.fs18{font-size:76.807916px;}
.fs13{font-size:77.000866px;}
.fs15{font-size:77.154167px;}
.fs2c{font-size:77.495728px;}
.fs6{font-size:77.760000px;}
.fs30{font-size:78.928875px;}
.fs23{font-size:82.931024px;}
.fs21{font-size:83.512661px;}
.fs3b{font-size:84.240000px;}
.fs1f{font-size:84.575232px;}
.fs24{font-size:88.172794px;}
.fsc{font-size:95.652774px;}
.fs25{font-size:105.597993px;}
.fs36{font-size:107.445154px;}
.fs3a{font-size:108.310765px;}
.fs19{font-size:109.002941px;}
.fs1d{font-size:109.365203px;}
.fs31{font-size:112.025043px;}
.fs1{font-size:156.240000px;}
.yd{bottom:-5.940000px;}
.y0{bottom:0.000000px;}
.y75{bottom:3.656166px;}
.y3d{bottom:4.078175px;}
.y57{bottom:4.090933px;}
.yb9{bottom:4.228587px;}
.y8{bottom:4.320000px;}
.y7a{bottom:4.337585px;}
.yb3{bottom:4.624979px;}
.y89{bottom:4.675788px;}
.ydc{bottom:4.811163px;}
.ye5{bottom:4.847106px;}
.ycd{bottom:4.847109px;}
.y86{bottom:4.850047px;}
.ya5{bottom:4.967541px;}
.y7f{bottom:5.067341px;}
.y9c{bottom:5.148618px;}
.yc{bottom:5.400000px;}
.yfd{bottom:5.464696px;}
.yf8{bottom:5.464698px;}
.yfb{bottom:5.464700px;}
.y41{bottom:5.604182px;}
.ybf{bottom:6.102565px;}
.y48{bottom:6.660000px;}
.y66{bottom:6.998565px;}
.y68{bottom:7.102688px;}
.yb8{bottom:7.142332px;}
.yd9{bottom:7.324481px;}
.ye2{bottom:7.360274px;}
.y10a{bottom:7.592515px;}
.yab{bottom:7.592552px;}
.yf1{bottom:7.628043px;}
.yaf{bottom:7.645346px;}
.ybc{bottom:7.675419px;}
.y99{bottom:7.971112px;}
.y8e{bottom:8.149586px;}
.yfa{bottom:8.464787px;}
.y40{bottom:8.980622px;}
.yd8{bottom:9.011832px;}
.ye1{bottom:9.047766px;}
.yca{bottom:9.047775px;}
.yb5{bottom:9.358380px;}
.yb4{bottom:9.358412px;}
.yf0{bottom:10.076121px;}
.y6e{bottom:10.303362px;}
.y6b{bottom:10.303376px;}
.y42{bottom:10.303379px;}
.yaa{bottom:10.324600px;}
.ya7{bottom:10.461614px;}
.y81{bottom:10.535661px;}
.y9f{bottom:10.616924px;}
.yc1{bottom:10.679228px;}
.yc2{bottom:10.679246px;}
.yc0{bottom:10.679268px;}
.y85{bottom:11.187521px;}
.ya4{bottom:11.268768px;}
.ybb{bottom:11.939455px;}
.yba{bottom:11.939486px;}
.y10b{bottom:12.169359px;}
.yac{bottom:12.169405px;}
.yf2{bottom:12.204878px;}
.yb1{bottom:12.232496px;}
.yb2{bottom:12.232508px;}
.yb0{bottom:12.232551px;}
.y3c{bottom:12.302366px;}
.y56{bottom:12.340709px;}
.y90{bottom:13.503616px;}
.y88{bottom:14.027328px;}
.y98{bottom:14.146097px;}
.y74{bottom:16.171753px;}
.yb{bottom:16.740000px;}
.y79{bottom:16.876809px;}
.y7c{bottom:17.387272px;}
.yd5{bottom:18.095278px;}
.yc8{bottom:18.130767px;}
.yde{bottom:18.130772px;}
.y6{bottom:19.650000px;}
.y109{bottom:20.152188px;}
.y76{bottom:20.847486px;}
.ybe{bottom:21.394344px;}
.y7b{bottom:21.579074px;}
.yfe{bottom:22.537806px;}
.yfc{bottom:22.537811px;}
.yda{bottom:22.691550px;}
.ycf{bottom:22.727013px;}
.ycc{bottom:22.727014px;}
.ycb{bottom:22.727040px;}
.ye3{bottom:22.727043px;}
.y8d{bottom:22.783930px;}
.yb7{bottom:23.701803px;}
.ydb{bottom:23.732653px;}
.ye4{bottom:23.768148px;}
.ya{bottom:24.156000px;}
.y7{bottom:26.820000px;}
.y47{bottom:30.450000px;}
.y84{bottom:31.540021px;}
.ya3{bottom:31.620821px;}
.y78{bottom:33.059988px;}
.yf9{bottom:33.894955px;}
.yd7{bottom:33.964785px;}
.ye0{bottom:34.000282px;}
.y97{bottom:34.135373px;}
.yd6{bottom:35.832551px;}
.ydf{bottom:35.868046px;}
.yc9{bottom:35.868050px;}
.y96{bottom:36.668504px;}
.y49{bottom:39.450000px;}
.yf7{bottom:40.859297px;}
.ya2{bottom:42.268038px;}
.y9e{bottom:42.268056px;}
.y95{bottom:44.557602px;}
.y9{bottom:47.520000px;}
.y83{bottom:51.891775px;}
.ya1{bottom:51.936776px;}
.y94{bottom:54.087453px;}
.y46{bottom:54.210000px;}
.y4{bottom:58.320000px;}
.y7e{bottom:68.369739px;}
.y9b{bottom:68.450568px;}
.y8c{bottom:70.291987px;}
.y82{bottom:72.245021px;}
.ya0{bottom:72.290022px;}
.y80{bottom:73.838057px;}
.y9d{bottom:73.883075px;}
.y93{bottom:74.076288px;}
.y92{bottom:75.646401px;}
.y8f{bottom:75.646457px;}
.y91{bottom:76.610889px;}
.y3{bottom:78.156000px;}
.y8b{bottom:84.926330px;}
.y2{bottom:98.676000px;}
.y126{bottom:126.396000px;}
.y5{bottom:131.220000px;}
.y125{bottom:148.356000px;}
.y73{bottom:164.415000px;}
.y10f{bottom:164.910000px;}
.y44{bottom:169.050000px;}
.y124{bottom:170.310000px;}
.y77{bottom:185.430000px;}
.y10e{bottom:186.870000px;}
.y43{bottom:191.010000px;}
.y123{bottom:192.090000px;}
.y10d{bottom:208.830000px;}
.y3e{bottom:212.970000px;}
.y3f{bottom:213.014980px;}
.y72{bottom:213.150000px;}
.y122{bottom:214.050000px;}
.y10c{bottom:230.790000px;}
.y71{bottom:235.110000px;}
.y121{bottom:239.250000px;}
.y3a{bottom:247.530000px;}
.y3b{bottom:247.589980px;}
.y107{bottom:252.750000px;}
.y108{bottom:252.839980px;}
.y70{bottom:257.070000px;}
.y120{bottom:261.210000px;}
.y39{bottom:275.970000px;}
.y11f{bottom:278.670000px;}
.y6f{bottom:279.030000px;}
.y106{bottom:290.190000px;}
.y38{bottom:297.930000px;}
.y6c{bottom:300.810000px;}
.y6d{bottom:300.840000px;}
.y105{bottom:312.150000px;}
.y37{bottom:319.890000px;}
.y104{bottom:334.110000px;}
.y69{bottom:335.370000px;}
.y6a{bottom:335.414980px;}
.y36{bottom:341.715000px;}
.y103{bottom:356.115000px;}
.y35{bottom:363.675000px;}
.y67{bottom:369.975000px;}
.y65{bottom:369.990000px;}
.y102{bottom:378.075000px;}
.y34{bottom:385.635000px;}
.y64{bottom:398.415000px;}
.y101{bottom:400.035000px;}
.y33{bottom:407.595000px;}
.y100{bottom:421.815000px;}
.y63{bottom:423.795000px;}
.ya6{bottom:424.005000px;}
.y32{bottom:429.555000px;}
.yf6{bottom:442.514959px;}
.y11e{bottom:444.135000px;}
.y31{bottom:451.515000px;}
.y62{bottom:459.795000px;}
.yff{bottom:465.015000px;}
.y11d{bottom:469.335000px;}
.y30{bottom:473.475000px;}
.y61{bottom:481.755000px;}
.y11c{bottom:491.295000px;}
.y2f{bottom:495.435000px;}
.yf5{bottom:499.575000px;}
.y13a{bottom:500.655000px;}
.y60{bottom:503.715000px;}
.y11b{bottom:508.755000px;}
.y2e{bottom:517.395000px;}
.yf4{bottom:521.535000px;}
.y139{bottom:522.615000px;}
.y5f{bottom:525.495000px;}
.y2d{bottom:539.355000px;}
.yef{bottom:542.264959px;}
.y5e{bottom:547.455000px;}
.yf3{bottom:554.295000px;}
.y2c{bottom:561.135000px;}
.y5d{bottom:569.415000px;}
.yee{bottom:579.855000px;}
.y2b{bottom:583.095000px;}
.y5c{bottom:591.375000px;}
.yed{bottom:601.815000px;}
.y2a{bottom:605.085000px;}
.y5b{bottom:613.365000px;}
.y138{bottom:616.245000px;}
.yec{bottom:623.805000px;}
.y29{bottom:626.685000px;}
.y5a{bottom:635.325000px;}
.y137{bottom:638.205000px;}
.yeb{bottom:645.585000px;}
.y28{bottom:648.285000px;}
.y59{bottom:652.785000px;}
.y9a{bottom:652.860000px;}
.y27{bottom:659.805000px;}
.y136{bottom:663.045000px;}
.yea{bottom:667.545000px;}
.y26{bottom:676.905000px;}
.y135{bottom:685.005000px;}
.y25{bottom:685.365000px;}
.ye9{bottom:689.505000px;}
.y11a{bottom:697.785000px;}
.y24{bottom:705.525000px;}
.y134{bottom:706.965000px;}
.ye8{bottom:711.465000px;}
.y119{bottom:722.985000px;}
.y23{bottom:725.505000px;}
.y133{bottom:731.805000px;}
.ye7{bottom:733.425000px;}
.y118{bottom:744.945000px;}
.y22{bottom:745.665000px;}
.y58{bottom:752.325000px;}
.y132{bottom:753.765000px;}
.ye6{bottom:755.385000px;}
.y117{bottom:762.405000px;}
.y21{bottom:765.825000px;}
.y55{bottom:774.239919px;}
.y54{bottom:774.285000px;}
.y131{bottom:775.725000px;}
.yd4{bottom:776.039919px;}
.y20{bottom:785.805000px;}
.ydd{bottom:798.585000px;}
.y130{bottom:800.565000px;}
.y53{bottom:802.725000px;}
.y1f{bottom:805.965000px;}
.y12f{bottom:822.525000px;}
.y52{bottom:824.685000px;}
.y1e{bottom:826.125000px;}
.yd3{bottom:834.585000px;}
.y12e{bottom:844.485000px;}
.y1d{bottom:846.285000px;}
.y51{bottom:846.645000px;}
.yd2{bottom:856.545000px;}
.y1c{bottom:866.265000px;}
.y50{bottom:868.605000px;}
.y12d{bottom:869.325000px;}
.yd1{bottom:878.550000px;}
.y4f{bottom:886.110000px;}
.y8a{bottom:886.140000px;}
.y1b{bottom:886.470000px;}
.y12c{bottom:891.330000px;}
.yd0{bottom:900.510000px;}
.y1a{bottom:903.570000px;}
.y19{bottom:912.390000px;}
.y12b{bottom:916.170000px;}
.yc7{bottom:921.164919px;}
.y18{bottom:931.650000px;}
.y12a{bottom:938.130000px;}
.yce{bottom:943.710000px;}
.y17{bottom:944.610000px;}
.y16{bottom:956.490000px;}
.y129{bottom:962.970000px;}
.y14{bottom:978.450000px;}
.yc6{bottom:979.710000px;}
.y15{bottom:984.390000px;}
.y128{bottom:984.750000px;}
.y4e{bottom:989.970000px;}
.y13{bottom:1000.410000px;}
.yc5{bottom:1001.670000px;}
.y127{bottom:1006.710000px;}
.y87{bottom:1011.915000px;}
.y4d{bottom:1011.930000px;}
.yc4{bottom:1023.630000px;}
.y116{bottom:1028.670000px;}
.y4c{bottom:1043.430000px;}
.y12{bottom:1043.610000px;}
.yc3{bottom:1045.590000px;}
.y115{bottom:1050.630000px;}
.y4b{bottom:1065.390000px;}
.y11{bottom:1067.370000px;}
.yb6{bottom:1067.489919px;}
.ybd{bottom:1067.550000px;}
.y114{bottom:1072.590000px;}
.y4a{bottom:1082.850000px;}
.y7d{bottom:1082.880000px;}
.y113{bottom:1094.550000px;}
.yae{bottom:1107.239919px;}
.yad{bottom:1107.330000px;}
.y45{bottom:1114.710000px;}
.y112{bottom:1116.510000px;}
.y10{bottom:1121.910000px;}
.y111{bottom:1138.500000px;}
.yf{bottom:1142.100000px;}
.ya9{bottom:1144.889919px;}
.ya8{bottom:1144.980000px;}
.y110{bottom:1160.460000px;}
.ye{bottom:1162.260000px;}
.y1{bottom:1193.220000px;}
.ha{height:15.336000px;}
.h12{height:16.398000px;}
.h6{height:17.280000px;}
.h24{height:18.749365px;}
.h27{height:23.925257px;}
.h17{height:23.925277px;}
.h20{height:23.999858px;}
.h15{height:26.097120px;}
.h3c{height:27.000000px;}
.h11{height:27.548640px;}
.h50{height:27.750191px;}
.h2a{height:30.073934px;}
.h1a{height:30.073954px;}
.hc{height:30.672000px;}
.h45{height:31.349404px;}
.h6f{height:32.924498px;}
.h63{height:32.924519px;}
.h47{height:32.924559px;}
.h4b{height:32.999079px;}
.h54{height:35.249770px;}
.hb{height:35.579520px;}
.h8{height:35.676000px;}
.h6d{height:38.698095px;}
.h7{height:39.315600px;}
.h65{height:40.312654px;}
.h4c{height:40.383794px;}
.h49{height:40.431938px;}
.h5a{height:40.452063px;}
.h2c{height:40.500336px;}
.h5f{height:40.654005px;}
.h6b{height:40.982853px;}
.h68{height:41.003253px;}
.h2d{height:41.168592px;}
.h33{height:41.395482px;}
.h32{height:41.416087px;}
.h18{height:41.666453px;}
.h51{height:41.743779px;}
.h21{height:41.796232px;}
.h10{height:41.832000px;}
.h56{height:42.309617px;}
.h55{height:42.330677px;}
.h31{height:44.323205px;}
.h9{height:45.393840px;}
.h41{height:46.988119px;}
.h40{height:47.011507px;}
.h3d{height:47.385745px;}
.h39{height:47.957968px;}
.h38{height:47.981839px;}
.h67{height:52.575425px;}
.h5e{height:53.998810px;}
.h3{height:56.436480px;}
.h13{height:57.165120px;}
.h3e{height:57.985841px;}
.h14{height:60.344640px;}
.h16{height:62.136000px;}
.h1f{height:63.374400px;}
.hf{height:65.496440px;}
.he{height:65.592000px;}
.h2{height:65.884219px;}
.h5c{height:65.953526px;}
.h4f{height:66.102801px;}
.h62{height:66.342817px;}
.h35{height:67.491790px;}
.h53{height:68.242777px;}
.h58{height:69.222113px;}
.h26{height:69.437740px;}
.h25{height:69.437824px;}
.h5b{height:69.642300px;}
.h4e{height:69.703120px;}
.h5d{height:69.722578px;}
.h4a{height:69.847461px;}
.h66{height:69.882229px;}
.h4d{height:70.005549px;}
.h60{height:70.294709px;}
.h6c{height:70.735930px;}
.h69{height:70.771139px;}
.h34{height:71.110631px;}
.h2f{height:71.144832px;}
.h2e{height:71.284801px;}
.h28{height:71.323556px;}
.h2b{height:71.465554px;}
.h23{height:71.613281px;}
.h1d{height:71.677204px;}
.h52{height:71.781932px;}
.h29{height:71.847967px;}
.h19{height:71.979814px;}
.h22{height:72.204010px;}
.h70{height:72.699120px;}
.h57{height:73.109412px;}
.h1e{height:73.116000px;}
.hd{height:73.172160px;}
.h43{height:76.816481px;}
.h3b{height:78.339460px;}
.h6a{height:78.697431px;}
.h42{height:81.351771px;}
.h46{height:81.671773px;}
.h3a{height:82.964668px;}
.h6e{height:83.895338px;}
.h30{height:84.371522px;}
.h71{height:86.585445px;}
.h1b{height:88.600250px;}
.h1c{height:90.509665px;}
.h37{height:94.950000px;}
.h44{height:94.995568px;}
.h48{height:97.812204px;}
.h3f{height:99.312267px;}
.h64{height:99.523173px;}
.h36{height:101.301656px;}
.h59{height:103.765384px;}
.h61{height:113.305178px;}
.h5{height:121.070742px;}
.h4{height:210.420000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:14.249926px;}
.wa{width:18.000690px;}
.wb{width:18.000762px;}
.wd{width:18.749844px;}
.w12{width:26.999758px;}
.w9{width:26.999778px;}
.w6{width:26.999798px;}
.we{width:30.074547px;}
.w20{width:32.175123px;}
.w15{width:32.399340px;}
.w11{width:41.025000px;}
.w3{width:43.380000px;}
.w18{width:50.998863px;}
.w16{width:58.501355px;}
.w1a{width:68.251449px;}
.w1b{width:72.001472px;}
.w7{width:72.748476px;}
.w1c{width:72.748497px;}
.w10{width:80.247540px;}
.w19{width:84.753090px;}
.w17{width:86.923842px;}
.w1d{width:95.921912px;}
.wf{width:111.078530px;}
.w14{width:119.847511px;}
.w1e{width:143.326591px;}
.w1f{width:148.500679px;}
.w13{width:193.347327px;}
.w4{width:317.415000px;}
.w8{width:438.195000px;}
.w5{width:797.400000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:2.144630px;}
.x2a{left:4.490372px;}
.x3{left:5.910000px;}
.x54{left:6.964554px;}
.x48{left:9.149858px;}
.x15{left:10.372384px;}
.x3b{left:12.647204px;}
.x3a{left:13.859938px;}
.x5d{left:15.060134px;}
.x11{left:16.136543px;}
.x18{left:17.640000px;}
.x39{left:20.859185px;}
.x4e{left:23.146768px;}
.x45{left:24.268324px;}
.x35{left:25.948994px;}
.x19{left:28.080000px;}
.x30{left:30.337551px;}
.x59{left:31.863540px;}
.x41{left:33.599101px;}
.x34{left:38.232908px;}
.x67{left:41.257399px;}
.x3f{left:43.164962px;}
.x55{left:44.822276px;}
.x33{left:46.883049px;}
.x2e{left:52.140437px;}
.x58{left:53.247608px;}
.x4a{left:54.363416px;}
.x42{left:55.962491px;}
.x36{left:58.150534px;}
.x3e{left:59.373208px;}
.x4f{left:62.803057px;}
.x66{left:64.860094px;}
.x49{left:67.372883px;}
.x68{left:69.573505px;}
.x6{left:70.740000px;}
.x5e{left:72.013481px;}
.x62{left:74.124737px;}
.x2d{left:76.691518px;}
.x5c{left:77.720228px;}
.x3d{left:78.803200px;}
.x1{left:80.999987px;}
.x60{left:85.767485px;}
.x2f{left:88.407154px;}
.x61{left:91.661017px;}
.x5{left:105.165000px;}
.x73{left:118.655987px;}
.xe{left:127.475987px;}
.x74{left:129.815987px;}
.xf{left:134.135987px;}
.x75{left:136.115987px;}
.x72{left:140.795987px;}
.x22{left:145.475987px;}
.x1a{left:146.880000px;}
.xa{left:153.569987px;}
.x50{left:165.809987px;}
.x3c{left:183.330000px;}
.x6f{left:203.789987px;}
.x47{left:222.239980px;}
.x9{left:227.595000px;}
.x6a{left:231.239980px;}
.x6d{left:240.869987px;}
.x6b{left:263.369987px;}
.x17{left:285.735000px;}
.x1e{left:295.289980px;}
.x14{left:298.139980px;}
.x4b{left:309.134987px;}
.x1f{left:322.274987px;}
.x4c{left:343.139959px;}
.x16{left:370.874987px;}
.x5b{left:373.964959px;}
.xb{left:378.254987px;}
.x2c{left:381.689959px;}
.x4d{left:394.094987px;}
.x51{left:397.514959px;}
.x53{left:405.089959px;}
.x65{left:407.414959px;}
.x64{left:410.115000px;}
.x40{left:418.380000px;}
.x38{left:457.800000px;}
.x6c{left:461.414987px;}
.x44{left:463.064959px;}
.x52{left:465.734987px;}
.x5f{left:469.904987px;}
.x43{left:471.075000px;}
.x56{left:477.104987px;}
.x1c{left:478.364987px;}
.x70{left:481.784987px;}
.x57{left:485.714959px;}
.x31{left:492.764987px;}
.x1b{left:498.884987px;}
.x32{left:501.389959px;}
.x21{left:503.564987px;}
.x46{left:521.564987px;}
.xc{left:527.684987px;}
.xd{left:532.364987px;}
.x29{left:536.864959px;}
.x20{left:538.304987px;}
.x4{left:554.145000px;}
.x69{left:555.944987px;}
.x5a{left:558.464987px;}
.x2b{left:566.924987px;}
.x1d{left:575.204987px;}
.x37{left:581.684987px;}
.x63{left:589.604987px;}
.x27{left:627.914959px;}
.x10{left:632.639959px;}
.x28{left:646.664987px;}
.x13{left:659.669987px;}
.x23{left:718.139919px;}
.x7{left:721.770000px;}
.x24{left:736.169987px;}
.x71{left:755.069987px;}
.x25{left:770.114919px;}
.x26{left:784.409987px;}
.x8{left:786.600000px;}
.x6e{left:793.409987px;}
.x2{left:829.260000px;}
@media print{
.v7{vertical-align:-62.059416pt;}
.va{vertical-align:-41.821642pt;}
.v6{vertical-align:-40.821028pt;}
.vf{vertical-align:-22.851847pt;}
.v2{vertical-align:-21.120000pt;}
.vd{vertical-align:-19.150122pt;}
.v4{vertical-align:-16.708251pt;}
.v5{vertical-align:-14.750739pt;}
.v9{vertical-align:-9.137454pt;}
.ve{vertical-align:-3.701726pt;}
.v8{vertical-align:-2.284364pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.708251pt;}
.v1{vertical-align:21.120000pt;}
.vb{vertical-align:23.680000pt;}
.v10{vertical-align:33.524069pt;}
.vc{vertical-align:41.744321pt;}
.ls3d{letter-spacing:-0.591069pt;}
.ls35{letter-spacing:-0.448000pt;}
.ls44{letter-spacing:-0.348800pt;}
.ls41{letter-spacing:-0.342933pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.235733pt;}
.ls10{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.128000pt;}
.ls3f{letter-spacing:-0.121600pt;}
.ls45{letter-spacing:-0.091733pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls40{letter-spacing:-0.059733pt;}
.ls43{letter-spacing:-0.053867pt;}
.lsb{letter-spacing:-0.025600pt;}
.ls17{letter-spacing:-0.012160pt;}
.ls7{letter-spacing:0.000000pt;}
.ls46{letter-spacing:0.035840pt;}
.ls3{letter-spacing:0.060160pt;}
.ls1{letter-spacing:0.064000pt;}
.ls21{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.183680pt;}
.ls2{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.233067pt;}
.ls18{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.336640pt;}
.ls42{letter-spacing:0.361600pt;}
.ls11{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls12{letter-spacing:1.088000pt;}
.ls13{letter-spacing:1.920000pt;}
.ls6{letter-spacing:2.540698pt;}
.ls26{letter-spacing:3.290240pt;}
.ls25{letter-spacing:3.392000pt;}
.ls33{letter-spacing:11.733333pt;}
.ls15{letter-spacing:12.728606pt;}
.ls2a{letter-spacing:16.182999pt;}
.ls3e{letter-spacing:16.215165pt;}
.ls28{letter-spacing:16.698296pt;}
.ls39{letter-spacing:24.923552pt;}
.ls23{letter-spacing:27.712000pt;}
.ls38{letter-spacing:36.386283pt;}
.ls37{letter-spacing:36.912096pt;}
.ls2c{letter-spacing:37.713036pt;}
.ls34{letter-spacing:40.359774pt;}
.ls2f{letter-spacing:44.616965pt;}
.ls3c{letter-spacing:45.925532pt;}
.ls19{letter-spacing:56.222712pt;}
.ls24{letter-spacing:62.694214pt;}
.ls16{letter-spacing:65.091577pt;}
.ls3a{letter-spacing:66.725712pt;}
.ls1e{letter-spacing:68.426361pt;}
.ls1b{letter-spacing:71.332902pt;}
.ls32{letter-spacing:76.726783pt;}
.ls22{letter-spacing:82.315506pt;}
.ls27{letter-spacing:107.248821pt;}
.lsf{letter-spacing:109.702697pt;}
.ls29{letter-spacing:112.873446pt;}
.ls2d{letter-spacing:113.221850pt;}
.ls30{letter-spacing:113.479498pt;}
.ls36{letter-spacing:120.805897pt;}
.ls3b{letter-spacing:155.358981pt;}
.ls1f{letter-spacing:159.591810pt;}
.ls1a{letter-spacing:173.051472pt;}
.ls14{letter-spacing:177.536000pt;}
.ls2b{letter-spacing:202.110804pt;}
.ls2e{letter-spacing:209.272382pt;}
.ls20{letter-spacing:212.460672pt;}
.ls31{letter-spacing:270.385264pt;}
.ls1c{letter-spacing:320.490464pt;}
.ls1d{letter-spacing:324.829187pt;}
.ws21{word-spacing:-155.422273pt;}
.ws18{word-spacing:-108.896701pt;}
.ws3{word-spacing:-52.917547pt;}
.ws1{word-spacing:-32.974720pt;}
.ws2{word-spacing:-20.113920pt;}
.ws5{word-spacing:-17.728000pt;}
.ws4{word-spacing:-17.664000pt;}
.wsf{word-spacing:-16.934400pt;}
.ws12{word-spacing:-16.768000pt;}
.ws9{word-spacing:-16.512000pt;}
.wsa{word-spacing:-16.448000pt;}
.wsb{word-spacing:-16.320000pt;}
.wse{word-spacing:-16.256000pt;}
.ws24{word-spacing:-16.192000pt;}
.ws1e{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.365227pt;}
.ws6{word-spacing:-15.132160pt;}
.ws7{word-spacing:-15.106560pt;}
.ws25{word-spacing:-9.485973pt;}
.ws0{word-spacing:-0.138880pt;}
.ws11{word-spacing:-0.126720pt;}
.ws10{word-spacing:0.000000pt;}
.ws17{word-spacing:27.864824pt;}
.ws1b{word-spacing:28.417278pt;}
.ws20{word-spacing:30.340574pt;}
.wsd{word-spacing:35.138151pt;}
.ws22{word-spacing:46.203085pt;}
.ws23{word-spacing:47.495861pt;}
.ws1d{word-spacing:66.234336pt;}
.ws1c{word-spacing:80.285543pt;}
.ws15{word-spacing:94.209644pt;}
.ws13{word-spacing:101.676332pt;}
.ws16{word-spacing:102.834470pt;}
.ws14{word-spacing:110.319672pt;}
.ws1a{word-spacing:175.390236pt;}
.ws19{word-spacing:203.745192pt;}
.wsc{word-spacing:214.896594pt;}
.ws1f{word-spacing:456.415131pt;}
._2d{margin-left:-531.612973pt;}
._31{margin-left:-373.379508pt;}
._1c{margin-left:-112.000000pt;}
._7{margin-left:-4.206080pt;}
._6{margin-left:-2.897920pt;}
._1d{margin-left:-1.936213pt;}
._1{margin-left:-1.029120pt;}
._2{width:1.039360pt;}
._3{width:2.284373pt;}
._10{width:3.514880pt;}
._f{width:4.679680pt;}
._11{width:5.631573pt;}
._13{width:6.635093pt;}
._8{width:7.654400pt;}
._9{width:9.393067pt;}
._12{width:10.304000pt;}
._18{width:11.270827pt;}
._4{width:12.392960pt;}
._5{width:13.657173pt;}
._19{width:14.607787pt;}
._38{width:17.386667pt;}
._17{width:18.449067pt;}
._a{width:19.983360pt;}
._3a{width:21.040640pt;}
._c{width:22.108160pt;}
._b{width:23.109120pt;}
._36{width:24.491093pt;}
._35{width:25.472000pt;}
._28{width:27.584000pt;}
._29{width:33.473493pt;}
._14{width:34.366507pt;}
._e{width:35.462613pt;}
._d{width:36.564480pt;}
._15{width:38.720000pt;}
._39{width:42.176000pt;}
._33{width:44.714667pt;}
._34{width:45.738667pt;}
._2a{width:52.992000pt;}
._1a{width:54.848000pt;}
._1b{width:55.925333pt;}
._2c{width:57.104212pt;}
._2b{width:60.096973pt;}
._30{width:61.519725pt;}
._2f{width:64.937487pt;}
._23{width:75.706811pt;}
._25{width:77.207789pt;}
._2e{width:95.064431pt;}
._16{width:96.426667pt;}
._26{width:99.009404pt;}
._27{width:128.077445pt;}
._21{width:169.253006pt;}
._22{width:172.054232pt;}
._1e{width:176.698819pt;}
._20{width:179.466390pt;}
._1f{width:183.809349pt;}
._24{width:199.992772pt;}
._32{width:263.054001pt;}
._37{width:1160.842667pt;}
._0{width:1316.879787pt;}
.fs3{font-size:16.000000pt;}
.fs9{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs37{font-size:36.510919pt;}
.fs28{font-size:36.593556pt;}
.fs26{font-size:36.637181pt;}
.fs34{font-size:36.820079pt;}
.fs4{font-size:37.120000pt;}
.fs38{font-size:37.136390pt;}
.fs16{font-size:37.304696pt;}
.fs1a{font-size:37.510292pt;}
.fsd{font-size:37.555841pt;}
.fsa{font-size:37.755830pt;}
.fs2b{font-size:37.825899pt;}
.fsf{font-size:37.873429pt;}
.fs2e{font-size:38.338630pt;}
.fs22{font-size:42.578029pt;}
.fs2{font-size:42.880000pt;}
.fs20{font-size:42.938335pt;}
.fs1e{font-size:43.456852pt;}
.fs33{font-size:45.440000pt;}
.fs0{font-size:58.880000pt;}
.fs27{font-size:63.291898pt;}
.fs29{font-size:63.435149pt;}
.fs35{font-size:63.665478pt;}
.fs7{font-size:64.000000pt;}
.fs39{font-size:64.096979pt;}
.fs17{font-size:64.594336pt;}
.fs1b{font-size:64.768083pt;}
.fse{font-size:64.949910pt;}
.fs14{font-size:65.072255pt;}
.fsb{font-size:65.224118pt;}
.fs10{font-size:65.427272pt;}
.fs2d{font-size:65.488763pt;}
.fs2f{font-size:66.428577pt;}
.fs12{font-size:66.635502pt;}
.fs11{font-size:66.635583pt;}
.fs32{font-size:66.831807pt;}
.fs2a{font-size:66.890173pt;}
.fs8{font-size:67.461249pt;}
.fs1c{font-size:68.240882pt;}
.fs18{font-size:68.273703pt;}
.fs13{font-size:68.445214pt;}
.fs15{font-size:68.581482pt;}
.fs2c{font-size:68.885092pt;}
.fs6{font-size:69.120000pt;}
.fs30{font-size:70.159000pt;}
.fs23{font-size:73.716466pt;}
.fs21{font-size:74.233476pt;}
.fs3b{font-size:74.880000pt;}
.fs1f{font-size:75.177984pt;}
.fs24{font-size:78.375817pt;}
.fsc{font-size:85.024688pt;}
.fs25{font-size:93.864883pt;}
.fs36{font-size:95.506804pt;}
.fs3a{font-size:96.276236pt;}
.fs19{font-size:96.891503pt;}
.fs1d{font-size:97.213514pt;}
.fs31{font-size:99.577816pt;}
.fs1{font-size:138.880000pt;}
.yd{bottom:-5.280000pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:3.249925pt;}
.y3d{bottom:3.625044pt;}
.y57{bottom:3.636385pt;}
.yb9{bottom:3.758744pt;}
.y8{bottom:3.840000pt;}
.y7a{bottom:3.855631pt;}
.yb3{bottom:4.111092pt;}
.y89{bottom:4.156256pt;}
.ydc{bottom:4.276589pt;}
.ye5{bottom:4.308539pt;}
.ycd{bottom:4.308542pt;}
.y86{bottom:4.311153pt;}
.ya5{bottom:4.415592pt;}
.y7f{bottom:4.504303pt;}
.y9c{bottom:4.576549pt;}
.yc{bottom:4.800000pt;}
.yfd{bottom:4.857507pt;}
.yf8{bottom:4.857510pt;}
.yfb{bottom:4.857511pt;}
.y41{bottom:4.981495pt;}
.ybf{bottom:5.424502pt;}
.y48{bottom:5.920000pt;}
.y66{bottom:6.220947pt;}
.y68{bottom:6.313501pt;}
.yb8{bottom:6.348740pt;}
.yd9{bottom:6.510650pt;}
.ye2{bottom:6.542466pt;}
.y10a{bottom:6.748902pt;}
.yab{bottom:6.748935pt;}
.yf1{bottom:6.780483pt;}
.yaf{bottom:6.795863pt;}
.ybc{bottom:6.822595pt;}
.y99{bottom:7.085433pt;}
.y8e{bottom:7.244076pt;}
.yfa{bottom:7.524255pt;}
.y40{bottom:7.982775pt;}
.yd8{bottom:8.010517pt;}
.ye1{bottom:8.042459pt;}
.yca{bottom:8.042466pt;}
.yb5{bottom:8.318560pt;}
.yb4{bottom:8.318588pt;}
.yf0{bottom:8.956552pt;}
.y6e{bottom:9.158544pt;}
.y6b{bottom:9.158556pt;}
.y42{bottom:9.158559pt;}
.yaa{bottom:9.177422pt;}
.ya7{bottom:9.299212pt;}
.y81{bottom:9.365032pt;}
.y9f{bottom:9.437266pt;}
.yc1{bottom:9.492647pt;}
.yc2{bottom:9.492663pt;}
.yc0{bottom:9.492683pt;}
.y85{bottom:9.944463pt;}
.ya4{bottom:10.016683pt;}
.ybb{bottom:10.612849pt;}
.yba{bottom:10.612877pt;}
.y10b{bottom:10.817208pt;}
.yac{bottom:10.817249pt;}
.yf2{bottom:10.848781pt;}
.yb1{bottom:10.873330pt;}
.yb2{bottom:10.873341pt;}
.yb0{bottom:10.873378pt;}
.y3c{bottom:10.935437pt;}
.y56{bottom:10.969519pt;}
.y90{bottom:12.003214pt;}
.y88{bottom:12.468736pt;}
.y98{bottom:12.574309pt;}
.y74{bottom:14.374891pt;}
.yb{bottom:14.880000pt;}
.y79{bottom:15.001608pt;}
.y7c{bottom:15.455353pt;}
.yd5{bottom:16.084692pt;}
.yc8{bottom:16.116237pt;}
.yde{bottom:16.116241pt;}
.y6{bottom:17.466667pt;}
.y109{bottom:17.913056pt;}
.y76{bottom:18.531099pt;}
.ybe{bottom:19.017195pt;}
.y7b{bottom:19.181399pt;}
.yfe{bottom:20.033605pt;}
.yfc{bottom:20.033609pt;}
.yda{bottom:20.170267pt;}
.ycf{bottom:20.201789pt;}
.ycc{bottom:20.201790pt;}
.ycb{bottom:20.201814pt;}
.ye3{bottom:20.201816pt;}
.y8d{bottom:20.252382pt;}
.yb7{bottom:21.068269pt;}
.ydb{bottom:21.095692pt;}
.ye4{bottom:21.127242pt;}
.ya{bottom:21.472000pt;}
.y7{bottom:23.840000pt;}
.y47{bottom:27.066667pt;}
.y84{bottom:28.035574pt;}
.ya3{bottom:28.107396pt;}
.y78{bottom:29.386656pt;}
.yf9{bottom:30.128849pt;}
.yd7{bottom:30.190920pt;}
.ye0{bottom:30.222473pt;}
.y97{bottom:30.342554pt;}
.yd6{bottom:31.851156pt;}
.ydf{bottom:31.882708pt;}
.yc9{bottom:31.882711pt;}
.y96{bottom:32.594226pt;}
.y49{bottom:35.066667pt;}
.yf7{bottom:36.319375pt;}
.ya2{bottom:37.571589pt;}
.y9e{bottom:37.571605pt;}
.y95{bottom:39.606757pt;}
.y9{bottom:42.240000pt;}
.y83{bottom:46.126022pt;}
.ya1{bottom:46.166023pt;}
.y94{bottom:48.077736pt;}
.y46{bottom:48.186667pt;}
.y4{bottom:51.840000pt;}
.y7e{bottom:60.773102pt;}
.y9b{bottom:60.844950pt;}
.y8c{bottom:62.481766pt;}
.y82{bottom:64.217796pt;}
.ya0{bottom:64.257797pt;}
.y80{bottom:65.633828pt;}
.y9d{bottom:65.673845pt;}
.y93{bottom:65.845590pt;}
.y92{bottom:67.241245pt;}
.y8f{bottom:67.241295pt;}
.y91{bottom:68.098568pt;}
.y3{bottom:69.472000pt;}
.y8b{bottom:75.490071pt;}
.y2{bottom:87.712000pt;}
.y126{bottom:112.352000pt;}
.y5{bottom:116.640000pt;}
.y125{bottom:131.872000pt;}
.y73{bottom:146.146667pt;}
.y10f{bottom:146.586667pt;}
.y44{bottom:150.266667pt;}
.y124{bottom:151.386667pt;}
.y77{bottom:164.826667pt;}
.y10e{bottom:166.106667pt;}
.y43{bottom:169.786667pt;}
.y123{bottom:170.746667pt;}
.y10d{bottom:185.626667pt;}
.y3e{bottom:189.306667pt;}
.y3f{bottom:189.346649pt;}
.y72{bottom:189.466667pt;}
.y122{bottom:190.266667pt;}
.y10c{bottom:205.146667pt;}
.y71{bottom:208.986667pt;}
.y121{bottom:212.666667pt;}
.y3a{bottom:220.026667pt;}
.y3b{bottom:220.079982pt;}
.y107{bottom:224.666667pt;}
.y108{bottom:224.746649pt;}
.y70{bottom:228.506667pt;}
.y120{bottom:232.186667pt;}
.y39{bottom:245.306667pt;}
.y11f{bottom:247.706667pt;}
.y6f{bottom:248.026667pt;}
.y106{bottom:257.946667pt;}
.y38{bottom:264.826667pt;}
.y6c{bottom:267.386667pt;}
.y6d{bottom:267.413333pt;}
.y105{bottom:277.466667pt;}
.y37{bottom:284.346667pt;}
.y104{bottom:296.986667pt;}
.y69{bottom:298.106667pt;}
.y6a{bottom:298.146649pt;}
.y36{bottom:303.746667pt;}
.y103{bottom:316.546667pt;}
.y35{bottom:323.266667pt;}
.y67{bottom:328.866667pt;}
.y65{bottom:328.880000pt;}
.y102{bottom:336.066667pt;}
.y34{bottom:342.786667pt;}
.y64{bottom:354.146667pt;}
.y101{bottom:355.586667pt;}
.y33{bottom:362.306667pt;}
.y100{bottom:374.946667pt;}
.y63{bottom:376.706667pt;}
.ya6{bottom:376.893333pt;}
.y32{bottom:381.826667pt;}
.yf6{bottom:393.346630pt;}
.y11e{bottom:394.786667pt;}
.y31{bottom:401.346667pt;}
.y62{bottom:408.706667pt;}
.yff{bottom:413.346667pt;}
.y11d{bottom:417.186667pt;}
.y30{bottom:420.866667pt;}
.y61{bottom:428.226667pt;}
.y11c{bottom:436.706667pt;}
.y2f{bottom:440.386667pt;}
.yf5{bottom:444.066667pt;}
.y13a{bottom:445.026667pt;}
.y60{bottom:447.746667pt;}
.y11b{bottom:452.226667pt;}
.y2e{bottom:459.906667pt;}
.yf4{bottom:463.586667pt;}
.y139{bottom:464.546667pt;}
.y5f{bottom:467.106667pt;}
.y2d{bottom:479.426667pt;}
.yef{bottom:482.013297pt;}
.y5e{bottom:486.626667pt;}
.yf3{bottom:492.706667pt;}
.y2c{bottom:498.786667pt;}
.y5d{bottom:506.146667pt;}
.yee{bottom:515.426667pt;}
.y2b{bottom:518.306667pt;}
.y5c{bottom:525.666667pt;}
.yed{bottom:534.946667pt;}
.y2a{bottom:537.853333pt;}
.y5b{bottom:545.213333pt;}
.y138{bottom:547.773333pt;}
.yec{bottom:554.493333pt;}
.y29{bottom:557.053333pt;}
.y5a{bottom:564.733333pt;}
.y137{bottom:567.293333pt;}
.yeb{bottom:573.853333pt;}
.y28{bottom:576.253333pt;}
.y59{bottom:580.253333pt;}
.y9a{bottom:580.320000pt;}
.y27{bottom:586.493333pt;}
.y136{bottom:589.373333pt;}
.yea{bottom:593.373333pt;}
.y26{bottom:601.693333pt;}
.y135{bottom:608.893333pt;}
.y25{bottom:609.213333pt;}
.ye9{bottom:612.893333pt;}
.y11a{bottom:620.253333pt;}
.y24{bottom:627.133333pt;}
.y134{bottom:628.413333pt;}
.ye8{bottom:632.413333pt;}
.y119{bottom:642.653333pt;}
.y23{bottom:644.893333pt;}
.y133{bottom:650.493333pt;}
.ye7{bottom:651.933333pt;}
.y118{bottom:662.173333pt;}
.y22{bottom:662.813333pt;}
.y58{bottom:668.733333pt;}
.y132{bottom:670.013333pt;}
.ye6{bottom:671.453333pt;}
.y117{bottom:677.693333pt;}
.y21{bottom:680.733333pt;}
.y55{bottom:688.213261pt;}
.y54{bottom:688.253333pt;}
.y131{bottom:689.533333pt;}
.yd4{bottom:689.813261pt;}
.y20{bottom:698.493333pt;}
.ydd{bottom:709.853333pt;}
.y130{bottom:711.613333pt;}
.y53{bottom:713.533333pt;}
.y1f{bottom:716.413333pt;}
.y12f{bottom:731.133333pt;}
.y52{bottom:733.053333pt;}
.y1e{bottom:734.333333pt;}
.yd3{bottom:741.853333pt;}
.y12e{bottom:750.653333pt;}
.y1d{bottom:752.253333pt;}
.y51{bottom:752.573333pt;}
.yd2{bottom:761.373333pt;}
.y1c{bottom:770.013333pt;}
.y50{bottom:772.093333pt;}
.y12d{bottom:772.733333pt;}
.yd1{bottom:780.933333pt;}
.y4f{bottom:787.653333pt;}
.y8a{bottom:787.680000pt;}
.y1b{bottom:787.973333pt;}
.y12c{bottom:792.293333pt;}
.yd0{bottom:800.453333pt;}
.y1a{bottom:803.173333pt;}
.y19{bottom:811.013333pt;}
.y12b{bottom:814.373333pt;}
.yc7{bottom:818.813261pt;}
.y18{bottom:828.133333pt;}
.y12a{bottom:833.893333pt;}
.yce{bottom:838.853333pt;}
.y17{bottom:839.653333pt;}
.y16{bottom:850.213333pt;}
.y129{bottom:855.973333pt;}
.y14{bottom:869.733333pt;}
.yc6{bottom:870.853333pt;}
.y15{bottom:875.013333pt;}
.y128{bottom:875.333333pt;}
.y4e{bottom:879.973333pt;}
.y13{bottom:889.253333pt;}
.yc5{bottom:890.373333pt;}
.y127{bottom:894.853333pt;}
.y87{bottom:899.480000pt;}
.y4d{bottom:899.493333pt;}
.yc4{bottom:909.893333pt;}
.y116{bottom:914.373333pt;}
.y4c{bottom:927.493333pt;}
.y12{bottom:927.653333pt;}
.yc3{bottom:929.413333pt;}
.y115{bottom:933.893333pt;}
.y4b{bottom:947.013333pt;}
.y11{bottom:948.773333pt;}
.yb6{bottom:948.879928pt;}
.ybd{bottom:948.933333pt;}
.y114{bottom:953.413333pt;}
.y4a{bottom:962.533333pt;}
.y7d{bottom:962.560000pt;}
.y113{bottom:972.933333pt;}
.yae{bottom:984.213261pt;}
.yad{bottom:984.293333pt;}
.y45{bottom:990.853333pt;}
.y112{bottom:992.453333pt;}
.y10{bottom:997.253333pt;}
.y111{bottom:1012.000000pt;}
.yf{bottom:1015.200000pt;}
.ya9{bottom:1017.679928pt;}
.ya8{bottom:1017.760000pt;}
.y110{bottom:1031.520000pt;}
.ye{bottom:1033.120000pt;}
.y1{bottom:1060.640000pt;}
.ha{height:13.632000pt;}
.h12{height:14.576000pt;}
.h6{height:15.360000pt;}
.h24{height:16.666102pt;}
.h27{height:21.266895pt;}
.h17{height:21.266913pt;}
.h20{height:21.333207pt;}
.h15{height:23.197440pt;}
.h3c{height:24.000000pt;}
.h11{height:24.487680pt;}
.h50{height:24.666836pt;}
.h2a{height:26.732386pt;}
.h1a{height:26.732404pt;}
.hc{height:27.264000pt;}
.h45{height:27.866137pt;}
.h6f{height:29.266221pt;}
.h63{height:29.266239pt;}
.h47{height:29.266275pt;}
.h4b{height:29.332514pt;}
.h54{height:31.333129pt;}
.hb{height:31.626240pt;}
.h8{height:31.712000pt;}
.h6d{height:34.398306pt;}
.h7{height:34.947200pt;}
.h65{height:35.833471pt;}
.h4c{height:35.896706pt;}
.h49{height:35.939500pt;}
.h5a{height:35.957390pt;}
.h2c{height:36.000298pt;}
.h5f{height:36.136894pt;}
.h6b{height:36.429203pt;}
.h68{height:36.447336pt;}
.h2d{height:36.594304pt;}
.h33{height:36.795984pt;}
.h32{height:36.814300pt;}
.h18{height:37.036847pt;}
.h51{height:37.105582pt;}
.h21{height:37.152206pt;}
.h10{height:37.184000pt;}
.h56{height:37.608549pt;}
.h55{height:37.627269pt;}
.h31{height:39.398404pt;}
.h9{height:40.350080pt;}
.h41{height:41.767216pt;}
.h40{height:41.788007pt;}
.h3d{height:42.120662pt;}
.h39{height:42.629305pt;}
.h38{height:42.650524pt;}
.h67{height:46.733712pt;}
.h5e{height:47.998943pt;}
.h3{height:50.165760pt;}
.h13{height:50.813440pt;}
.h3e{height:51.542970pt;}
.h14{height:53.639680pt;}
.h16{height:55.232000pt;}
.h1f{height:56.332800pt;}
.hf{height:58.219058pt;}
.he{height:58.304000pt;}
.h2{height:58.563750pt;}
.h5c{height:58.625357pt;}
.h4f{height:58.758045pt;}
.h62{height:58.971393pt;}
.h35{height:59.992702pt;}
.h53{height:60.660246pt;}
.h58{height:61.530767pt;}
.h26{height:61.722435pt;}
.h25{height:61.722510pt;}
.h5b{height:61.904266pt;}
.h4e{height:61.958329pt;}
.h5d{height:61.975625pt;}
.h4a{height:62.086632pt;}
.h66{height:62.117537pt;}
.h4d{height:62.227155pt;}
.h60{height:62.484185pt;}
.h6c{height:62.876382pt;}
.h69{height:62.907679pt;}
.h34{height:63.209450pt;}
.h2f{height:63.239851pt;}
.h2e{height:63.364268pt;}
.h28{height:63.398716pt;}
.h2b{height:63.524937pt;}
.h23{height:63.656250pt;}
.h1d{height:63.713071pt;}
.h52{height:63.806162pt;}
.h29{height:63.864859pt;}
.h19{height:63.982057pt;}
.h22{height:64.181342pt;}
.h70{height:64.621440pt;}
.h57{height:64.986144pt;}
.h1e{height:64.992000pt;}
.hd{height:65.041920pt;}
.h43{height:68.281316pt;}
.h3b{height:69.635076pt;}
.h6a{height:69.953272pt;}
.h42{height:72.312686pt;}
.h46{height:72.597131pt;}
.h3a{height:73.746372pt;}
.h6e{height:74.573634pt;}
.h30{height:74.996908pt;}
.h71{height:76.964840pt;}
.h1b{height:78.755777pt;}
.h1c{height:80.453035pt;}
.h37{height:84.400000pt;}
.h44{height:84.440505pt;}
.h48{height:86.944181pt;}
.h3f{height:88.277571pt;}
.h64{height:88.465042pt;}
.h36{height:90.045916pt;}
.h59{height:92.235897pt;}
.h61{height:100.715713pt;}
.h5{height:107.618438pt;}
.h4{height:187.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:12.666601pt;}
.wa{width:16.000614pt;}
.wb{width:16.000677pt;}
.wd{width:16.666528pt;}
.w12{width:23.999784pt;}
.w9{width:23.999803pt;}
.w6{width:23.999821pt;}
.we{width:26.732930pt;}
.w20{width:28.600110pt;}
.w15{width:28.799413pt;}
.w11{width:36.466667pt;}
.w3{width:38.560000pt;}
.w18{width:45.332323pt;}
.w16{width:52.001204pt;}
.w1a{width:60.667955pt;}
.w1b{width:64.001308pt;}
.w7{width:64.665312pt;}
.w1c{width:64.665330pt;}
.w10{width:71.331147pt;}
.w19{width:75.336080pt;}
.w17{width:77.265637pt;}
.w1d{width:85.263922pt;}
.wf{width:98.736471pt;}
.w14{width:106.531121pt;}
.w1e{width:127.401414pt;}
.w1f{width:132.000603pt;}
.w13{width:171.864291pt;}
.w4{width:282.146667pt;}
.w8{width:389.506667pt;}
.w5{width:708.800000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:1.906338pt;}
.x2a{left:3.991442pt;}
.x3{left:5.253333pt;}
.x54{left:6.190715pt;}
.x48{left:8.133207pt;}
.x15{left:9.219897pt;}
.x3b{left:11.241959pt;}
.x3a{left:12.319945pt;}
.x5d{left:13.386786pt;}
.x11{left:14.343594pt;}
.x18{left:15.680000pt;}
.x39{left:18.541498pt;}
.x4e{left:20.574905pt;}
.x45{left:21.571844pt;}
.x35{left:23.065773pt;}
.x19{left:24.960000pt;}
.x30{left:26.966712pt;}
.x59{left:28.323147pt;}
.x41{left:29.865867pt;}
.x34{left:33.984807pt;}
.x67{left:36.673243pt;}
.x3f{left:38.368855pt;}
.x55{left:39.842023pt;}
.x33{left:41.673821pt;}
.x2e{left:46.347055pt;}
.x58{left:47.331207pt;}
.x4a{left:48.323037pt;}
.x42{left:49.744437pt;}
.x36{left:51.689364pt;}
.x3e{left:52.776185pt;}
.x4f{left:55.824939pt;}
.x66{left:57.653417pt;}
.x49{left:59.887007pt;}
.x68{left:61.843115pt;}
.x6{left:62.880000pt;}
.x5e{left:64.011983pt;}
.x62{left:65.888655pt;}
.x2d{left:68.170238pt;}
.x5c{left:69.084647pt;}
.x3d{left:70.047289pt;}
.x1{left:71.999988pt;}
.x60{left:76.237764pt;}
.x2f{left:78.584137pt;}
.x61{left:81.476459pt;}
.x5{left:93.480000pt;}
.x73{left:105.471988pt;}
.xe{left:113.311988pt;}
.x74{left:115.391988pt;}
.xf{left:119.231988pt;}
.x75{left:120.991988pt;}
.x72{left:125.151988pt;}
.x22{left:129.311988pt;}
.x1a{left:130.560000pt;}
.xa{left:136.506655pt;}
.x50{left:147.386655pt;}
.x3c{left:162.960000pt;}
.x6f{left:181.146655pt;}
.x47{left:197.546649pt;}
.x9{left:202.306667pt;}
.x6a{left:205.546649pt;}
.x6d{left:214.106655pt;}
.x6b{left:234.106655pt;}
.x17{left:253.986667pt;}
.x1e{left:262.479982pt;}
.x14{left:265.013315pt;}
.x4b{left:274.786655pt;}
.x1f{left:286.466655pt;}
.x4c{left:305.013297pt;}
.x16{left:329.666655pt;}
.x5b{left:332.413297pt;}
.xb{left:336.226655pt;}
.x2c{left:339.279964pt;}
.x4d{left:350.306655pt;}
.x51{left:353.346630pt;}
.x53{left:360.079964pt;}
.x65{left:362.146630pt;}
.x64{left:364.546667pt;}
.x40{left:371.893333pt;}
.x38{left:406.933333pt;}
.x6c{left:410.146655pt;}
.x44{left:411.613297pt;}
.x52{left:413.986655pt;}
.x5f{left:417.693322pt;}
.x43{left:418.733333pt;}
.x56{left:424.093322pt;}
.x1c{left:425.213322pt;}
.x70{left:428.253322pt;}
.x57{left:431.746630pt;}
.x31{left:438.013322pt;}
.x1b{left:443.453322pt;}
.x32{left:445.679964pt;}
.x21{left:447.613322pt;}
.x46{left:463.613322pt;}
.xc{left:469.053322pt;}
.xd{left:473.213322pt;}
.x29{left:477.213297pt;}
.x20{left:478.493322pt;}
.x4{left:492.573333pt;}
.x69{left:494.173322pt;}
.x5a{left:496.413322pt;}
.x2b{left:503.933322pt;}
.x1d{left:511.293322pt;}
.x37{left:517.053322pt;}
.x63{left:524.093322pt;}
.x27{left:558.146630pt;}
.x10{left:562.346630pt;}
.x28{left:574.813322pt;}
.x13{left:586.373322pt;}
.x23{left:638.346594pt;}
.x7{left:641.573333pt;}
.x24{left:654.373322pt;}
.x71{left:671.173322pt;}
.x25{left:684.546594pt;}
.x26{left:697.253322pt;}
.x8{left:699.200000pt;}
.x6e{left:705.253322pt;}
.x2{left:737.120000pt;}
}




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