
    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_5147b7cf7f1f4bba7694e074.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.019000;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_91987713d832e66b1fa813c1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.944000;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_bdf006e51a23394e43bfbc87.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_96becb015dc6577f64d69bba.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.990000;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_2a0cd691834ffa77848f1d79.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.158000;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_93ae12b25429da7b8e6012ca.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946000;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_c2778178de6847898de202e8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.864000;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_4246376ef574c767f6149f4c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.859000;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_188385aeef7c8f9a2a4f476c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.908000;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_fc37e7c120909c87804514e9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.936000;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_f8db47175371dd82c1012bee.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8906dfc4806f288ed0981480.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938000;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_e4c630f77c8309631413e780.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.732000;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_2b766ac290cfde4de4e8d208.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.927000;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_eac46de59c30a7b369513877.woff2')format("woff");}.fff{font-family:fff;line-height:0.944000;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;}
.m1e{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);}
.m5{transform:matrix(0.161126,0.191151,-0.191151,0.161126,0,0);-ms-transform:matrix(0.161126,0.191151,-0.191151,0.161126,0,0);-webkit-transform:matrix(0.161126,0.191151,-0.191151,0.161126,0,0);}
.m14{transform:matrix(0.161275,-0.191025,0.191025,0.161275,0,0);-ms-transform:matrix(0.161275,-0.191025,0.191025,0.161275,0,0);-webkit-transform:matrix(0.161275,-0.191025,0.191025,0.161275,0,0);}
.m6{transform:matrix(0.168243,0.184917,-0.184917,0.168243,0,0);-ms-transform:matrix(0.168243,0.184917,-0.184917,0.168243,0,0);-webkit-transform:matrix(0.168243,0.184917,-0.184917,0.168243,0,0);}
.m13{transform:matrix(0.184405,-0.168804,0.168804,0.184405,0,0);-ms-transform:matrix(0.184405,-0.168804,0.168804,0.184405,0,0);-webkit-transform:matrix(0.184405,-0.168804,0.168804,0.184405,0,0);}
.m15{transform:matrix(0.191447,0.160773,-0.160773,0.191447,0,0);-ms-transform:matrix(0.191447,0.160773,-0.160773,0.191447,0,0);-webkit-transform:matrix(0.191447,0.160773,-0.160773,0.191447,0,0);}
.m12{transform:matrix(0.193308,-0.158531,0.158531,0.193308,0,0);-ms-transform:matrix(0.193308,-0.158531,0.158531,0.193308,0,0);-webkit-transform:matrix(0.193308,-0.158531,0.158531,0.193308,0,0);}
.m16{transform:matrix(0.198675,0.151750,-0.151750,0.198675,0,0);-ms-transform:matrix(0.198675,0.151750,-0.151750,0.198675,0,0);-webkit-transform:matrix(0.198675,0.151750,-0.151750,0.198675,0,0);}
.me{transform:matrix(0.203516,0.145194,-0.145194,0.203516,0,0);-ms-transform:matrix(0.203516,0.145194,-0.145194,0.203516,0,0);-webkit-transform:matrix(0.203516,0.145194,-0.145194,0.203516,0,0);}
.m17{transform:matrix(0.204833,0.143330,-0.143330,0.204833,0,0);-ms-transform:matrix(0.204833,0.143330,-0.143330,0.204833,0,0);-webkit-transform:matrix(0.204833,0.143330,-0.143330,0.204833,0,0);}
.m11{transform:matrix(0.207395,-0.139597,0.139597,0.207395,0,0);-ms-transform:matrix(0.207395,-0.139597,0.139597,0.207395,0,0);-webkit-transform:matrix(0.207395,-0.139597,0.139597,0.207395,0,0);}
.m18{transform:matrix(0.214719,0.128046,-0.128046,0.214719,0,0);-ms-transform:matrix(0.214719,0.128046,-0.128046,0.214719,0,0);-webkit-transform:matrix(0.214719,0.128046,-0.128046,0.214719,0,0);}
.m10{transform:matrix(0.218861,-0.120831,0.120831,0.218861,0,0);-ms-transform:matrix(0.218861,-0.120831,0.120831,0.218861,0,0);-webkit-transform:matrix(0.218861,-0.120831,0.120831,0.218861,0,0);}
.m19{transform:matrix(0.222174,0.114624,-0.114624,0.222174,0,0);-ms-transform:matrix(0.222174,0.114624,-0.114624,0.222174,0,0);-webkit-transform:matrix(0.222174,0.114624,-0.114624,0.222174,0,0);}
.mc{transform:matrix(0.226346,0.106148,-0.106148,0.226346,0,0);-ms-transform:matrix(0.226346,0.106148,-0.106148,0.226346,0,0);-webkit-transform:matrix(0.226346,0.106148,-0.106148,0.226346,0,0);}
.mf{transform:matrix(0.227306,-0.104078,0.104078,0.227306,0,0);-ms-transform:matrix(0.227306,-0.104078,0.104078,0.227306,0,0);-webkit-transform:matrix(0.227306,-0.104078,0.104078,0.227306,0,0);}
.m4{transform:matrix(0.227515,-0.103620,0.103620,0.227515,0,0);-ms-transform:matrix(0.227515,-0.103620,0.103620,0.227515,0,0);-webkit-transform:matrix(0.227515,-0.103620,0.103620,0.227515,0,0);}
.m1a{transform:matrix(0.232517,0.091847,-0.091847,0.232517,0,0);-ms-transform:matrix(0.232517,0.091847,-0.091847,0.232517,0,0);-webkit-transform:matrix(0.232517,0.091847,-0.091847,0.232517,0,0);}
.md{transform:matrix(0.234429,-0.086851,0.086851,0.234429,0,0);-ms-transform:matrix(0.234429,-0.086851,0.086851,0.234429,0,0);-webkit-transform:matrix(0.234429,-0.086851,0.086851,0.234429,0,0);}
.m20{transform:matrix(0.237766,-0.077247,0.077247,0.237766,0,0);-ms-transform:matrix(0.237766,-0.077247,0.077247,0.237766,0,0);-webkit-transform:matrix(0.237766,-0.077247,0.077247,0.237766,0,0);}
.m7{transform:matrix(0.240247,-0.069149,0.069149,0.240247,0,0);-ms-transform:matrix(0.240247,-0.069149,0.069149,0.240247,0,0);-webkit-transform:matrix(0.240247,-0.069149,0.069149,0.240247,0,0);}
.ma{transform:matrix(0.241496,0.064649,-0.064649,0.241496,0,0);-ms-transform:matrix(0.241496,0.064649,-0.064649,0.241496,0,0);-webkit-transform:matrix(0.241496,0.064649,-0.064649,0.241496,0,0);}
.m1b{transform:matrix(0.241813,0.063453,-0.063453,0.241813,0,0);-ms-transform:matrix(0.241813,0.063453,-0.063453,0.241813,0,0);-webkit-transform:matrix(0.241813,0.063453,-0.063453,0.241813,0,0);}
.mb{transform:matrix(0.245647,-0.046449,0.046449,0.245647,0,0);-ms-transform:matrix(0.245647,-0.046449,0.046449,0.245647,0,0);-webkit-transform:matrix(0.245647,-0.046449,0.046449,0.245647,0,0);}
.m1{transform:matrix(0.246204,-0.043401,0.043401,0.246204,0,0);-ms-transform:matrix(0.246204,-0.043401,0.043401,0.246204,0,0);-webkit-transform:matrix(0.246204,-0.043401,0.043401,0.246204,0,0);}
.m2{transform:matrix(0.246923,0.039100,-0.039100,0.246923,0,0);-ms-transform:matrix(0.246923,0.039100,-0.039100,0.246923,0,0);-webkit-transform:matrix(0.246923,0.039100,-0.039100,0.246923,0,0);}
.m3{transform:matrix(0.247566,0.034799,-0.034799,0.247566,0,0);-ms-transform:matrix(0.247566,0.034799,-0.034799,0.247566,0,0);-webkit-transform:matrix(0.247566,0.034799,-0.034799,0.247566,0,0);}
.m1c{transform:matrix(0.248665,0.025799,-0.025799,0.248665,0,0);-ms-transform:matrix(0.248665,0.025799,-0.025799,0.248665,0,0);-webkit-transform:matrix(0.248665,0.025799,-0.025799,0.248665,0,0);}
.m9{transform:matrix(0.248895,0.023475,-0.023475,0.248895,0,0);-ms-transform:matrix(0.248895,0.023475,-0.023475,0.248895,0,0);-webkit-transform:matrix(0.248895,0.023475,-0.023475,0.248895,0,0);}
.m1f{transform:matrix(0.248982,0.000000,-0.022533,0.248982,0,0);-ms-transform:matrix(0.248982,0.000000,-0.022533,0.248982,0,0);-webkit-transform:matrix(0.248982,0.000000,-0.022533,0.248982,0,0);}
.m8{transform:matrix(0.249620,-0.013775,0.013775,0.249620,0,0);-ms-transform:matrix(0.249620,-0.013775,0.013775,0.249620,0,0);-webkit-transform:matrix(0.249620,-0.013775,0.013775,0.249620,0,0);}
.m1d{transform:matrix(0.249898,-0.007125,0.007125,0.249898,0,0);-ms-transform:matrix(0.249898,-0.007125,0.007125,0.249898,0,0);-webkit-transform:matrix(0.249898,-0.007125,0.007125,0.249898,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);}
.m21{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:-65.245200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.808000px;}
.v4{vertical-align:6.304800px;}
.v3{vertical-align:7.606200px;}
.v2{vertical-align:14.460000px;}
.v5{vertical-align:32.179200px;}
.v8{vertical-align:53.223000px;}
.v6{vertical-align:73.312800px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.009600px;}
.ls2{letter-spacing:0.010800px;}
.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;}
}
.ws1b{word-spacing:-60.630600px;}
.ws24{word-spacing:-60.048000px;}
.ws17{word-spacing:-54.000000px;}
.ws18{word-spacing:-36.000000px;}
.ws6{word-spacing:-33.000000px;}
.wsa{word-spacing:-26.496000px;}
.ws10{word-spacing:-23.352000px;}
.wsb{word-spacing:-20.016000px;}
.ws16{word-spacing:-18.348000px;}
.ws8{word-spacing:-16.680000px;}
.ws1e{word-spacing:-16.560000px;}
.ws19{word-spacing:-15.012000px;}
.wse{word-spacing:-14.934000px;}
.ws2{word-spacing:-10.503361px;}
.ws7{word-spacing:-10.500000px;}
.ws5{word-spacing:-9.529968px;}
.wsc{word-spacing:-8.374084px;}
.ws12{word-spacing:-8.340000px;}
.ws0{word-spacing:0.000000px;}
.ws20{word-spacing:17.228389px;}
.wsd{word-spacing:19.479420px;}
.wsf{word-spacing:21.189600px;}
.ws13{word-spacing:21.204600px;}
.ws23{word-spacing:27.034200px;}
.ws1a{word-spacing:35.259000px;}
.ws15{word-spacing:35.850600px;}
.ws14{word-spacing:35.851200px;}
.ws1c{word-spacing:36.643200px;}
.ws1d{word-spacing:44.518200px;}
.ws9{word-spacing:61.930440px;}
.ws1{word-spacing:111.256340px;}
.ws4{word-spacing:111.309587px;}
.ws3{word-spacing:113.371025px;}
.ws1f{word-spacing:150.505800px;}
.ws21{word-spacing:199.962000px;}
.ws22{word-spacing:268.073400px;}
.ws11{word-spacing:274.245000px;}
._a{margin-left:-300.897000px;}
._10{margin-left:-275.194800px;}
._2{margin-left:-258.239696px;}
._15{margin-left:-221.055600px;}
._c{margin-left:-142.690200px;}
._d{margin-left:-127.783800px;}
._11{margin-left:-120.914400px;}
._13{margin-left:-7.991400px;}
._7{margin-left:-6.656400px;}
._5{margin-left:-4.050000px;}
._0{margin-left:-2.523600px;}
._4{margin-left:-1.185960px;}
._f{width:36.733800px;}
._b{width:40.282200px;}
._3{width:46.626810px;}
._e{width:56.783400px;}
._9{width:95.056344px;}
._14{width:117.321600px;}
._8{width:145.038984px;}
._6{width:393.303000px;}
._1{width:905.455200px;}
._12{width:995.025600px;}
.fc24{color:rgb(214,40,40);}
.fc22{color:rgb(231,156,133);}
.fc21{color:rgb(232,243,250);}
.fc20{color:rgb(247,240,202);}
.fc1f{color:rgb(95,110,26);}
.fc1d{color:rgb(102,102,102);}
.fc9{color:rgb(204,255,204);}
.fc6{color:rgb(201,218,224);}
.fcc{color:rgb(120,194,50);}
.fc5{color:rgb(227,227,250);}
.fc4{color:rgb(105,86,37);}
.fcb{color:rgb(10,112,135);}
.fc3{color:rgb(0,51,51);}
.fc2{color:rgb(44,112,173);}
.fc1{color:rgb(26,26,26);}
.fc16{color:rgb(255,0,0);}
.fc25{color:rgb(250,224,147);}
.fc23{color:rgb(29,103,107);}
.fce{color:rgb(192,176,235);}
.fc14{color:rgb(237,202,197);}
.fc15{color:rgb(222,68,47);}
.fcf{color:rgb(58,134,161);}
.fc10{color:rgb(255,204,204);}
.fc0{color:rgb(255,255,255);}
.fc11{color:rgb(52,43,27);}
.fca{color:rgb(245,222,220);}
.fc13{color:rgb(0,0,0);}
.fc17{color:rgb(153,204,204);}
.fc7{color:rgb(204,204,204);}
.fc18{color:rgb(204,51,255);}
.fc1e{color:rgb(0,0,102);}
.fcd{color:rgb(155,168,173);}
.fc19{color:rgb(153,102,51);}
.fc8{color:rgb(150,102,44);}
.fc12{color:rgb(138,121,98);}
.fc1a{color:rgb(196,35,35);}
.fc1b{color:rgb(51,102,102);}
.fc1c{color:transparent;}
.fs34{font-size:7.428000px;}
.fs3e{font-size:10.020362px;}
.fs3f{font-size:11.370000px;}
.fs32{font-size:12.378000px;}
.fs31{font-size:14.856000px;}
.fs48{font-size:17.406000px;}
.fs33{font-size:19.812000px;}
.fs35{font-size:22.290000px;}
.fsd{font-size:24.072147px;}
.fs44{font-size:24.162872px;}
.fs45{font-size:27.414000px;}
.fsf{font-size:29.424000px;}
.fs10{font-size:29.425041px;}
.fs3c{font-size:29.868000px;}
.fs37{font-size:30.000000px;}
.fs38{font-size:30.122603px;}
.fsc{font-size:32.100000px;}
.fs15{font-size:33.738000px;}
.fs3b{font-size:34.848000px;}
.fs36{font-size:36.000000px;}
.fs12{font-size:37.781876px;}
.fs14{font-size:37.782540px;}
.fs13{font-size:37.783607px;}
.fs11{font-size:37.783743px;}
.fsb{font-size:40.127358px;}
.fs5{font-size:42.000000px;}
.fs16{font-size:42.168000px;}
.fse{font-size:42.798000px;}
.fs30{font-size:48.000000px;}
.fsa{font-size:48.150000px;}
.fs42{font-size:54.000000px;}
.fs3d{font-size:59.736000px;}
.fs39{font-size:59.994000px;}
.fs2e{font-size:60.000000px;}
.fs40{font-size:66.000000px;}
.fs1{font-size:67.200000px;}
.fs4{font-size:72.000000px;}
.fs1f{font-size:75.902358px;}
.fs21{font-size:75.903004px;}
.fs22{font-size:75.904057px;}
.fs1e{font-size:75.904115px;}
.fs1c{font-size:75.904787px;}
.fs23{font-size:75.906107px;}
.fs1a{font-size:75.906926px;}
.fs19{font-size:75.907137px;}
.fs1b{font-size:75.907303px;}
.fs18{font-size:75.907388px;}
.fs17{font-size:75.907452px;}
.fs20{font-size:75.907773px;}
.fs1d{font-size:75.909319px;}
.fs41{font-size:78.000000px;}
.fs3a{font-size:83.994000px;}
.fs2d{font-size:84.000000px;}
.fs2a{font-size:84.049389px;}
.fs26{font-size:84.050864px;}
.fs25{font-size:84.053878px;}
.fs28{font-size:84.054418px;}
.fs2c{font-size:84.054522px;}
.fs24{font-size:84.055145px;}
.fs27{font-size:84.056440px;}
.fs29{font-size:84.056890px;}
.fs2b{font-size:84.057292px;}
.fs8{font-size:96.000000px;}
.fs2{font-size:108.000000px;}
.fs7{font-size:114.000000px;}
.fs3{font-size:117.654000px;}
.fs9{font-size:120.000000px;}
.fs2f{font-size:132.000000px;}
.fs43{font-size:144.000000px;}
.fs6{font-size:148.584000px;}
.fs46{font-size:168.000000px;}
.fs47{font-size:216.000000px;}
.fs0{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.ya9{bottom:8.421900px;}
.ya{bottom:26.394150px;}
.y3b{bottom:28.175700px;}
.ya8{bottom:28.530750px;}
.y6{bottom:32.156850px;}
.y5{bottom:50.924550px;}
.y153{bottom:53.946000px;}
.y9{bottom:54.786600px;}
.y3a{bottom:56.568150px;}
.y43{bottom:59.728200px;}
.y191{bottom:62.793450px;}
.y19e{bottom:65.814450px;}
.y18e{bottom:65.942550px;}
.y4{bottom:69.692250px;}
.y190{bottom:71.172450px;}
.y1a6{bottom:71.349300px;}
.y42{bottom:73.133400px;}
.y19c{bottom:78.294000px;}
.y19d{bottom:79.341750px;}
.y130{bottom:82.297650px;}
.y41{bottom:84.637500px;}
.ycd{bottom:85.235550px;}
.y115{bottom:91.157100px;}
.y19b{bottom:91.999350px;}
.y18f{bottom:92.533950px;}
.ycc{bottom:95.211150px;}
.y4a{bottom:96.661350px;}
.y12f{bottom:101.683650px;}
.ycb{bottom:105.186750px;}
.y137{bottom:107.082900px;}
.y1a5{bottom:110.858550px;}
.y170{bottom:113.886450px;}
.y114{bottom:114.617400px;}
.yca{bottom:115.162350px;}
.y46{bottom:118.202550px;}
.y17a{bottom:118.214100px;}
.y17b{bottom:118.255350px;}
.y12e{bottom:124.190550px;}
.yc9{bottom:125.137950px;}
.y136{bottom:129.589800px;}
.y45{bottom:131.607750px;}
.y197{bottom:131.719200px;}
.y49{bottom:131.811000px;}
.y173{bottom:132.864150px;}
.yc8{bottom:135.113550px;}
.y12d{bottom:142.623300px;}
.y40{bottom:142.737750px;}
.y50{bottom:142.835550px;}
.y113{bottom:143.250450px;}
.y44{bottom:145.013400px;}
.yc7{bottom:145.089150px;}
.y172{bottom:147.309000px;}
.y11a{bottom:147.915300px;}
.y11b{bottom:147.956550px;}
.y135{bottom:148.022550px;}
.y196{bottom:151.828050px;}
.y179{bottom:154.616850px;}
.yc6{bottom:155.371200px;}
.y13a{bottom:155.420400px;}
.y4f{bottom:156.440550px;}
.y12c{bottom:161.055600px;}
.y48{bottom:166.960350px;}
.y134{bottom:167.408550px;}
.y4e{bottom:170.046000px;}
.y195{bottom:171.936900px;}
.y19a{bottom:173.111700px;}
.y199{bottom:173.152950px;}
.y139{bottom:173.853150px;}
.y3e{bottom:176.556600px;}
.y16f{bottom:179.246400px;}
.y12b{bottom:179.488350px;}
.y183{bottom:183.391200px;}
.y4d{bottom:183.651450px;}
.y141{bottom:185.250150px;}
.yc3{bottom:186.902100px;}
.y133{bottom:189.915450px;}
.y3d{bottom:189.962250px;}
.y112{bottom:190.178100px;}
.y174{bottom:191.754000px;}
.y138{bottom:192.285450px;}
.y198{bottom:194.276250px;}
.y3f{bottom:196.664550px;}
.yb8{bottom:199.629450px;}
.y171{bottom:201.585900px;}
.y47{bottom:202.110150px;}
.y4b{bottom:202.399200px;}
.y3c{bottom:203.367900px;}
.y4c{bottom:204.535800px;}
.y186{bottom:206.712450px;}
.y178{bottom:206.906700px;}
.y111{bottom:208.610850px;}
.y140{bottom:208.710000px;}
.y18c{bottom:210.487350px;}
.y18b{bottom:210.528600px;}
.y175{bottom:211.141350px;}
.y176{bottom:211.182450px;}
.y177{bottom:215.285700px;}
.yc2{bottom:217.339800px;}
.y12a{bottom:218.185050px;}
.y128{bottom:219.328500px;}
.y131{bottom:221.537400px;}
.y127{bottom:224.076150px;}
.y110{bottom:227.996850px;}
.yb7{bottom:230.755500px;}
.y182{bottom:230.888700px;}
.y16e{bottom:233.998500px;}
.y129{bottom:239.134050px;}
.y156{bottom:241.043250px;}
.y15{bottom:241.951950px;}
.y132{bottom:242.321850px;}
.y155{bottom:245.020500px;}
.yc1{bottom:247.818750px;}
.y181{bottom:250.997550px;}
.y10f{bottom:251.456700px;}
.y1a4{bottom:251.621250px;}
.y16d{bottom:253.285500px;}
.yb6{bottom:261.881550px;}
.y126{bottom:266.644800px;}
.y185{bottom:271.837350px;}
.y8{bottom:272.419050px;}
.y10e{bottom:274.916550px;}
.y187{bottom:276.795900px;}
.ydf{bottom:278.152200px;}
.yc0{bottom:279.040500px;}
.yef{bottom:283.656000px;}
.ya5{bottom:284.326950px;}
.yee{bottom:285.306300px;}
.yec{bottom:285.807600px;}
.y125{bottom:286.269300px;}
.yde{bottom:287.883750px;}
.ya1{bottom:291.279450px;}
.y92{bottom:291.525900px;}
.yb5{bottom:293.007600px;}
.y14e{bottom:295.275450px;}
.ya0{bottom:295.429350px;}
.y17e{bottom:296.670450px;}
.ya2{bottom:297.286650px;}
.y142{bottom:298.666350px;}
.y98{bottom:300.898650px;}
.y9a{bottom:302.285250px;}
.y91{bottom:304.931100px;}
.y7{bottom:305.008200px;}
.y99{bottom:306.879000px;}
.y10d{bottom:307.376550px;}
.y9b{bottom:308.001150px;}
.ybf{bottom:308.777100px;}
.y180{bottom:309.975300px;}
.y117{bottom:312.762900px;}
.y21{bottom:313.409250px;}
.y9c{bottom:313.695000px;}
.y17d{bottom:316.778850px;}
.y90{bottom:319.607550px;}
.y22{bottom:320.810527px;}
.yb4{bottom:324.133650px;}
.ye0{bottom:325.202850px;}
.y9d{bottom:325.756950px;}
.y17f{bottom:330.084150px;}
.y165{bottom:331.820250px;}
.y9e{bottom:336.339150px;}
.y17c{bottom:336.887250px;}
.yf2{bottom:338.045100px;}
.yed{bottom:338.247900px;}
.y8f{bottom:338.445000px;}
.ybe{bottom:339.256050px;}
.y7a{bottom:339.542100px;}
.y147{bottom:345.657000px;}
.y123{bottom:347.100450px;}
.y9f{bottom:348.626550px;}
.ya4{bottom:349.823550px;}
.y8e{bottom:351.850200px;}
.y79{bottom:352.947750px;}
.y189{bottom:354.072000px;}
.ye7{bottom:354.198300px;}
.ya3{bottom:354.402900px;}
.y169{bottom:354.695850px;}
.y18a{bottom:354.840750px;}
.y154{bottom:355.201350px;}
.y1e{bottom:355.216200px;}
.yb3{bottom:355.259700px;}
.y10c{bottom:357.428550px;}
.y16c{bottom:358.541250px;}
.y184{bottom:358.593150px;}
.y96{bottom:358.983450px;}
.y146{bottom:360.738300px;}
.y30{bottom:361.146450px;}
.y95{bottom:361.698000px;}
.y94{bottom:365.909550px;}
.y78{bottom:366.352950px;}
.y8d{bottom:366.527100px;}
.y122{bottom:366.890850px;}
.y97{bottom:368.158350px;}
.ybd{bottom:369.735000px;}
.y93{bottom:370.121100px;}
.y1d{bottom:371.074350px;}
.y188{bottom:373.017900px;}
.y20{bottom:373.416117px;}
.y2f{bottom:373.671450px;}
.y10b{bottom:375.861300px;}
.y145{bottom:376.772850px;}
.y166{bottom:379.680450px;}
.y77{bottom:379.758150px;}
.y2e{bottom:380.123400px;}
.y68{bottom:381.188550px;}
.y121{bottom:385.323600px;}
.y8c{bottom:385.364100px;}
.yb2{bottom:386.385750px;}
.y2d{bottom:386.386200px;}
.ye4{bottom:388.582350px;}
.y2c{bottom:389.991900px;}
.y18d{bottom:390.016050px;}
.y1a3{bottom:392.383950px;}
.y76{bottom:393.163800px;}
.y67{bottom:394.594200px;}
.y2b{bottom:394.735800px;}
.y10a{bottom:395.247300px;}
.ye3{bottom:396.923400px;}
.y2a{bottom:397.202700px;}
.y1f{bottom:398.639850px;}
.y29{bottom:398.910750px;}
.y28{bottom:399.859800px;}
.y8b{bottom:400.040550px;}
.y27{bottom:400.998450px;}
.yb1{bottom:401.103450px;}
.y168{bottom:402.058950px;}
.y26{bottom:402.706050px;}
.y24{bottom:403.465500px;}
.y120{bottom:403.756350px;}
.y25{bottom:403.844700px;}
.yf8{bottom:404.760300px;}
.ye2{bottom:405.264450px;}
.y75{bottom:406.569450px;}
.y16b{bottom:406.996350px;}
.y66{bottom:407.999400px;}
.yf7{bottom:413.101350px;}
.yb0{bottom:416.067450px;}
.yf9{bottom:417.362550px;}
.y8a{bottom:418.878000px;}
.y74{bottom:419.974650px;}
.y65{bottom:421.404600px;}
.yf6{bottom:421.442400px;}
.ye9{bottom:425.591400px;}
.y164{bottom:426.349950px;}
.y103{bottom:426.431550px;}
.y3{bottom:428.177550px;}
.yf5{bottom:429.783450px;}
.y11f{bottom:430.686150px;}
.yaf{bottom:431.031450px;}
.y118{bottom:431.096400px;}
.y119{bottom:431.137650px;}
.y11c{bottom:431.838900px;}
.y89{bottom:432.283200px;}
.y73{bottom:433.380300px;}
.y14b{bottom:433.868700px;}
.y64{bottom:434.809800px;}
.y124{bottom:435.351000px;}
.yf0{bottom:437.927250px;}
.yf4{bottom:438.124500px;}
.yf1{bottom:440.966100px;}
.ye1{bottom:441.214050px;}
.y163{bottom:446.457900px;}
.yf3{bottom:446.465550px;}
.y72{bottom:446.785950px;}
.y88{bottom:446.960100px;}
.y63{bottom:448.215000px;}
.y14a{bottom:453.977100px;}
.y23{bottom:454.055850px;}
.y71{bottom:460.191150px;}
.y62{bottom:461.620200px;}
.y11e{bottom:465.277650px;}
.y87{bottom:465.797550px;}
.y167{bottom:467.521800px;}
.yfc{bottom:469.160550px;}
.y192{bottom:470.995650px;}
.ybc{bottom:472.191750px;}
.y16a{bottom:472.459200px;}
.y70{bottom:473.596350px;}
.y149{bottom:474.085500px;}
.y61{bottom:475.025400px;}
.y109{bottom:475.701750px;}
.y194{bottom:475.938600px;}
.yfb{bottom:477.502050px;}
.y86{bottom:479.203200px;}
.yae{bottom:484.869600px;}
.yfa{bottom:485.843550px;}
.y1a2{bottom:486.225750px;}
.y6f{bottom:487.002000px;}
.y60{bottom:488.430600px;}
.ye8{bottom:488.970000px;}
.y85{bottom:492.608400px;}
.y193{bottom:493.064250px;}
.y108{bottom:494.134500px;}
.ye6{bottom:494.693550px;}
.y6e{bottom:500.407200px;}
.y5f{bottom:501.835800px;}
.ybb{bottom:502.670700px;}
.yeb{bottom:503.344650px;}
.y148{bottom:505.022100px;}
.y84{bottom:506.013600px;}
.y13d{bottom:509.830950px;}
.y15e{bottom:511.092150px;}
.yea{bottom:511.686150px;}
.y107{bottom:513.520500px;}
.y6d{bottom:513.812400px;}
.y15d{bottom:514.751850px;}
.y2{bottom:515.081400px;}
.y5e{bottom:515.241000px;}
.yad{bottom:515.995350px;}
.y150{bottom:517.708200px;}
.y83{bottom:520.690050px;}
.ye5{bottom:523.867650px;}
.y6c{bottom:527.218050px;}
.y5d{bottom:528.646200px;}
.y1a1{bottom:533.146650px;}
.yba{bottom:533.149650px;}
.y160{bottom:534.334200px;}
.y13f{bottom:535.811250px;}
.y106{bottom:536.026950px;}
.y15f{bottom:538.533900px;}
.y13c{bottom:538.690350px;}
.y6b{bottom:540.623700px;}
.y5c{bottom:542.051400px;}
.yac{bottom:547.121100px;}
.y13e{bottom:547.540800px;}
.y6a{bottom:554.537850px;}
.y105{bottom:555.412500px;}
.y5b{bottom:555.456600px;}
.y82{bottom:561.532350px;}
.yd8{bottom:563.154300px;}
.yb9{bottom:563.628600px;}
.y161{bottom:565.196700px;}
.y13b{bottom:568.384800px;}
.y5a{bottom:568.861800px;}
.y15c{bottom:570.035550px;}
.y69{bottom:570.115800px;}
.y18{bottom:571.022400px;}
.y162{bottom:572.522100px;}
.yd7{bottom:573.878550px;}
.yab{bottom:578.246850px;}
.y81{bottom:578.289000px;}
.y104{bottom:582.478800px;}
.y59{bottom:582.775500px;}
.yd6{bottom:584.602800px;}
.y116{bottom:587.143650px;}
.yaa{bottom:591.002850px;}
.y1c{bottom:594.037050px;}
.y80{bottom:595.045950px;}
.yd5{bottom:595.327050px;}
.y58{bottom:598.353900px;}
.y152{bottom:601.459200px;}
.y1{bottom:601.985250px;}
.y101{bottom:605.575050px;}
.yd4{bottom:606.051300px;}
.y1a{bottom:607.114800px;}
.y158{bottom:607.999200px;}
.y57{bottom:611.759100px;}
.y7f{bottom:611.802900px;}
.yd3{bottom:617.283750px;}
.ydb{bottom:617.692350px;}
.y11d{bottom:618.959550px;}
.y151{bottom:621.567600px;}
.y56{bottom:625.672800px;}
.y16{bottom:626.066250px;}
.y1a0{bottom:626.988000px;}
.y157{bottom:627.426900px;}
.y14f{bottom:627.602400px;}
.y100{bottom:629.034900px;}
.yda{bottom:631.097550px;}
.y14d{bottom:633.932850px;}
.y55{bottom:641.250750px;}
.yd2{bottom:643.611750px;}
.yd9{bottom:644.503200px;}
.y7e{bottom:645.316950px;}
.yc5{bottom:646.063200px;}
.y144{bottom:647.839200px;}
.y1b{bottom:648.543000px;}
.y159{bottom:651.004050px;}
.yff{bottom:652.495200px;}
.y15b{bottom:654.234600px;}
.yd1{bottom:654.335700px;}
.y54{bottom:655.164450px;}
.y31{bottom:660.459600px;}
.yc4{bottom:661.027200px;}
.y7d{bottom:662.073600px;}
.y17{bottom:663.142500px;}
.yd0{bottom:665.059650px;}
.y143{bottom:666.271500px;}
.y1a7{bottom:667.346100px;}
.y32{bottom:667.590450px;}
.y33{bottom:670.299000px;}
.y53{bottom:670.742850px;}
.ya7{bottom:673.887600px;}
.y19f{bottom:673.908450px;}
.y15a{bottom:674.193900px;}
.y34{bottom:674.968500px;}
.ycf{bottom:675.783600px;}
.y7c{bottom:678.830250px;}
.y35{bottom:678.888900px;}
.yfe{bottom:679.425000px;}
.y36{bottom:683.093550px;}
.y102{bottom:684.089400px;}
.y52{bottom:684.148050px;}
.y37{bottom:685.941600px;}
.y39{bottom:686.521500px;}
.y38{bottom:686.838300px;}
.yce{bottom:687.016050px;}
.y7b{bottom:696.222900px;}
.y51{bottom:697.553250px;}
.y19{bottom:697.619250px;}
.y14c{bottom:702.224100px;}
.ya6{bottom:707.556000px;}
.ydd{bottom:708.850050px;}
.yfd{bottom:709.536150px;}
.ydc{bottom:712.535100px;}
.y14{bottom:723.138300px;}
.y10{bottom:773.309700px;}
.y13{bottom:781.936650px;}
.yf{bottom:798.757800px;}
.y12{bottom:821.842200px;}
.ye{bottom:831.810450px;}
.yd{bottom:839.992500px;}
.yc{bottom:851.722350px;}
.y11{bottom:861.747750px;}
.yb{bottom:863.451900px;}
.h3e{height:5.407584px;}
.h4c{height:7.334905px;}
.h4d{height:8.322840px;}
.h3b{height:9.011184px;}
.h3d{height:10.815168px;}
.h39{height:10.993440px;}
.h60{height:12.671568px;}
.h3c{height:14.423136px;}
.h3a{height:15.315984px;}
.h3f{height:16.494600px;}
.h13{height:17.668956px;}
.h57{height:17.687223px;}
.h58{height:20.067048px;}
.h15{height:21.597216px;}
.h16{height:21.597980px;}
.h4a{height:21.743904px;}
.h42{height:21.840000px;}
.h43{height:21.929255px;}
.h5b{height:22.094929px;}
.h45{height:22.650000px;}
.h12{height:23.561400px;}
.h49{height:25.369344px;}
.h41{height:27.180000px;}
.h18{height:27.656333px;}
.h1a{height:27.656819px;}
.h19{height:27.657601px;}
.h17{height:27.657700px;}
.h11{height:29.453481px;}
.h8{height:30.576000px;}
.h9{height:30.744000px;}
.h14{height:31.413732px;}
.h44{height:33.228000px;}
.h37{height:34.944000px;}
.h38{height:35.136000px;}
.h10{height:35.342100px;}
.h5a{height:36.240000px;}
.h55{height:39.312000px;}
.h35{height:43.260000px;}
.h1b{height:43.387248px;}
.h4b{height:43.487808px;}
.h47{height:43.675632px;}
.h32{height:43.680000px;}
.h46{height:43.915608px;}
.h40{height:44.304000px;}
.h50{height:48.048000px;}
.h51{height:48.312000px;}
.h3{height:48.921600px;}
.h4{height:49.190400px;}
.h24{height:52.069018px;}
.h26{height:52.069460px;}
.h27{height:52.070183px;}
.h23{height:52.070223px;}
.h21{height:52.070684px;}
.h28{height:52.071589px;}
.h1f{height:52.072151px;}
.h1e{height:52.072296px;}
.h20{height:52.072410px;}
.h1d{height:52.072468px;}
.h1c{height:52.072512px;}
.h25{height:52.072732px;}
.h22{height:52.073793px;}
.h7{height:52.416000px;}
.h36{height:52.704000px;}
.hc{height:54.360000px;}
.h59{height:55.380000px;}
.h2f{height:57.657881px;}
.h2b{height:57.658893px;}
.h2a{height:57.660960px;}
.h2d{height:57.661331px;}
.h31{height:57.661402px;}
.h29{height:57.661830px;}
.h2c{height:57.662718px;}
.h2e{height:57.663027px;}
.h30{height:57.663302px;}
.h34{height:60.564000px;}
.h54{height:61.152000px;}
.h4f{height:61.488000px;}
.h52{height:71.994000px;}
.h48{height:77.526462px;}
.h4e{height:77.532000px;}
.h5d{height:78.624000px;}
.h6{height:85.652112px;}
.h5{height:88.344000px;}
.hb{height:88.608000px;}
.hd{height:90.600000px;}
.h33{height:90.816000px;}
.h53{height:95.152800px;}
.hf{height:99.684000px;}
.he{height:102.492000px;}
.h56{height:104.832000px;}
.h5c{height:105.639000px;}
.ha{height:112.180920px;}
.h5e{height:123.648000px;}
.h5f{height:158.112000px;}
.h2{height:235.584000px;}
.h0{height:892.913400px;}
.h1{height:893.250000px;}
.w0{width:1148.031450px;}
.w1{width:1148.250000px;}
.x0{left:0.000000px;}
.x7d{left:8.455500px;}
.xd{left:15.217350px;}
.x7e{left:23.539800px;}
.x81{left:28.235250px;}
.x80{left:29.444850px;}
.x7f{left:31.458150px;}
.xc{left:36.153150px;}
.xb{left:41.919300px;}
.xe{left:58.473900px;}
.x6{left:59.546250px;}
.xe0{left:82.200300px;}
.x55{left:85.896150px;}
.x57{left:89.773950px;}
.x5{left:93.045000px;}
.x58{left:94.185750px;}
.x5b{left:96.361950px;}
.x5c{left:99.460350px;}
.x59{left:101.218050px;}
.x4{left:102.270450px;}
.x5d{left:103.273050px;}
.x5a{left:104.316150px;}
.xf{left:114.658050px;}
.x3a{left:116.552850px;}
.x78{left:118.026600px;}
.xdb{left:120.625800px;}
.x60{left:122.728800px;}
.x5f{left:124.378500px;}
.x5e{left:126.444150px;}
.x38{left:128.205000px;}
.x63{left:130.489500px;}
.x62{left:132.448350px;}
.x61{left:134.514450px;}
.xbb{left:135.783600px;}
.x66{left:138.250200px;}
.x65{left:139.899900px;}
.xa0{left:140.912400px;}
.x64{left:141.965550px;}
.x56{left:142.973250px;}
.xd9{left:144.334350px;}
.x69{left:148.782300px;}
.x68{left:150.741150px;}
.x67{left:152.807250px;}
.x7b{left:158.643000px;}
.x6b{left:164.963550px;}
.x6a{left:166.203450px;}
.x36{left:167.388900px;}
.x6e{left:179.799600px;}
.x6d{left:181.348950px;}
.x6c{left:183.415050px;}
.x77{left:187.319550px;}
.x76{left:188.559450px;}
.x75{left:190.625550px;}
.x71{left:194.840100px;}
.x70{left:196.389450px;}
.x6f{left:198.455100px;}
.x74{left:202.359750px;}
.x73{left:203.909100px;}
.x72{left:205.975200px;}
.x7c{left:215.156400px;}
.x79{left:222.434400px;}
.x2a{left:233.897850px;}
.x7{left:238.751850px;}
.x3{left:242.405100px;}
.x29{left:244.790550px;}
.x28{left:251.691900px;}
.x27{left:259.421550px;}
.x26{left:264.630600px;}
.xdc{left:270.663750px;}
.x25{left:272.857350px;}
.x9b{left:280.105200px;}
.x23{left:282.282600px;}
.x21{left:286.564800px;}
.x9a{left:290.972400px;}
.x1d{left:299.023050px;}
.x1e{left:301.812750px;}
.x1f{left:306.474600px;}
.x35{left:309.116400px;}
.xda{left:312.822900px;}
.x20{left:315.840000px;}
.x8{left:316.983450px;}
.x39{left:318.278550px;}
.x37{left:319.978500px;}
.x9d{left:321.991350px;}
.x22{left:325.467300px;}
.x24{left:331.290000px;}
.x9c{left:342.121950px;}
.x43{left:358.599450px;}
.x41{left:361.953450px;}
.x42{left:363.586200px;}
.x9e{left:365.548500px;}
.x9f{left:383.590950px;}
.x44{left:385.288200px;}
.xd3{left:392.847900px;}
.xd2{left:397.392750px;}
.x45{left:403.620150px;}
.x7a{left:409.642950px;}
.x47{left:412.781850px;}
.xd8{left:415.627800px;}
.x46{left:421.958850px;}
.xbc{left:423.019050px;}
.x48{left:434.453250px;}
.xde{left:436.473900px;}
.x49{left:438.658500px;}
.x10{left:445.433550px;}
.xab{left:453.357900px;}
.x4b{left:456.982800px;}
.x33{left:458.446800px;}
.x32{left:464.034750px;}
.x4a{left:470.341650px;}
.x8f{left:471.477450px;}
.x4c{left:473.643750px;}
.x31{left:475.333500px;}
.xa7{left:479.967300px;}
.x83{left:483.333600px;}
.x30{left:486.279300px;}
.xdd{left:492.741000px;}
.x2f{left:496.844250px;}
.x2e{left:504.595950px;}
.xb9{left:507.697500px;}
.x4e{left:511.173000px;}
.x2d{left:512.235000px;}
.x2c{left:516.465300px;}
.x4d{left:517.844700px;}
.x90{left:519.319650px;}
.x1{left:522.496350px;}
.x94{left:524.084850px;}
.x2b{left:525.251250px;}
.xb8{left:535.220850px;}
.xdf{left:546.973200px;}
.x8d{left:560.526750px;}
.x82{left:564.149100px;}
.x92{left:566.401350px;}
.xc3{left:571.505850px;}
.xc4{left:573.429450px;}
.x8a{left:575.498850px;}
.x8b{left:577.777050px;}
.xaa{left:582.707400px;}
.x89{left:586.914900px;}
.xa8{left:588.251400px;}
.xd4{left:594.238050px;}
.x91{left:595.843650px;}
.xb7{left:600.446400px;}
.x3b{left:602.737800px;}
.x88{left:608.080350px;}
.x8e{left:609.520500px;}
.xd6{left:613.790400px;}
.xd7{left:615.375000px;}
.x34{left:617.568600px;}
.x16{left:620.283600px;}
.x15{left:621.670950px;}
.x14{left:623.480100px;}
.xa9{left:631.354950px;}
.xbe{left:633.342150px;}
.xd5{left:634.938000px;}
.x8c{left:653.212950px;}
.x11{left:659.447100px;}
.x2{left:670.023900px;}
.x84{left:674.539050px;}
.x54{left:678.046950px;}
.x86{left:684.245400px;}
.x93{left:685.279500px;}
.x85{left:693.688650px;}
.x13{left:696.799800px;}
.x87{left:706.336950px;}
.xba{left:709.236000px;}
.xac{left:716.101200px;}
.xcb{left:717.543150px;}
.x12{left:718.807500px;}
.xc9{left:720.215850px;}
.xbf{left:721.875900px;}
.xca{left:723.502650px;}
.x95{left:725.435100px;}
.x3c{left:734.481150px;}
.xad{left:737.046450px;}
.xb4{left:747.058050px;}
.xc1{left:757.755150px;}
.x4f{left:762.389400px;}
.x50{left:768.614400px;}
.xb5{left:779.711100px;}
.xb6{left:781.961700px;}
.x53{left:786.948150px;}
.x97{left:806.364600px;}
.xa5{left:808.006200px;}
.x98{left:810.533250px;}
.xa1{left:811.828800px;}
.xa3{left:821.510100px;}
.x51{left:826.153800px;}
.xa4{left:828.831150px;}
.x96{left:837.624150px;}
.xcc{left:838.762050px;}
.xae{left:841.356600px;}
.xcf{left:847.828950px;}
.xc2{left:854.508450px;}
.xcd{left:856.770450px;}
.xb3{left:860.053800px;}
.xbd{left:870.914100px;}
.xce{left:873.119250px;}
.x52{left:880.412700px;}
.xc0{left:888.911850px;}
.x9{left:923.711250px;}
.xd0{left:930.183600px;}
.xaf{left:945.844800px;}
.xc6{left:950.492700px;}
.xb1{left:954.302400px;}
.xc5{left:961.042650px;}
.xd1{left:964.623300px;}
.xa{left:975.793200px;}
.xb0{left:977.065350px;}
.x19{left:993.117000px;}
.xa2{left:996.901650px;}
.x1b{left:1001.666400px;}
.xb2{left:1007.555850px;}
.x1a{left:1016.066266px;}
.x40{left:1020.060300px;}
.x3d{left:1022.696250px;}
.x3f{left:1024.092450px;}
.x1c{left:1027.380886px;}
.x3e{left:1032.365550px;}
.x17{left:1040.455350px;}
.x99{left:1052.923950px;}
.xa6{left:1063.873200px;}
.x18{left:1067.714400px;}
.xc7{left:1074.102150px;}
.xc8{left:1097.321700px;}
@media print{
.v7{vertical-align:-57.995733pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.496000pt;}
.v4{vertical-align:5.604267pt;}
.v3{vertical-align:6.761067pt;}
.v2{vertical-align:12.853333pt;}
.v5{vertical-align:28.603733pt;}
.v8{vertical-align:47.309333pt;}
.v6{vertical-align:65.166933pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.008533pt;}
.ls2{letter-spacing:0.009600pt;}
.ws1b{word-spacing:-53.893867pt;}
.ws24{word-spacing:-53.376000pt;}
.ws17{word-spacing:-48.000000pt;}
.ws18{word-spacing:-32.000000pt;}
.ws6{word-spacing:-29.333333pt;}
.wsa{word-spacing:-23.552000pt;}
.ws10{word-spacing:-20.757333pt;}
.wsb{word-spacing:-17.792000pt;}
.ws16{word-spacing:-16.309333pt;}
.ws8{word-spacing:-14.826667pt;}
.ws1e{word-spacing:-14.720000pt;}
.ws19{word-spacing:-13.344000pt;}
.wse{word-spacing:-13.274667pt;}
.ws2{word-spacing:-9.336321pt;}
.ws7{word-spacing:-9.333333pt;}
.ws5{word-spacing:-8.471083pt;}
.wsc{word-spacing:-7.443630pt;}
.ws12{word-spacing:-7.413333pt;}
.ws0{word-spacing:0.000000pt;}
.ws20{word-spacing:15.314124pt;}
.wsd{word-spacing:17.315040pt;}
.wsf{word-spacing:18.835200pt;}
.ws13{word-spacing:18.848533pt;}
.ws23{word-spacing:24.030400pt;}
.ws1a{word-spacing:31.341333pt;}
.ws15{word-spacing:31.867200pt;}
.ws14{word-spacing:31.867733pt;}
.ws1c{word-spacing:32.571733pt;}
.ws1d{word-spacing:39.571733pt;}
.ws9{word-spacing:55.049280pt;}
.ws1{word-spacing:98.894524pt;}
.ws4{word-spacing:98.941856pt;}
.ws3{word-spacing:100.774244pt;}
.ws1f{word-spacing:133.782933pt;}
.ws21{word-spacing:177.744000pt;}
.ws22{word-spacing:238.287467pt;}
.ws11{word-spacing:243.773333pt;}
._a{margin-left:-267.464000pt;}
._10{margin-left:-244.617600pt;}
._2{margin-left:-229.546396pt;}
._15{margin-left:-196.493867pt;}
._c{margin-left:-126.835733pt;}
._d{margin-left:-113.585600pt;}
._11{margin-left:-107.479467pt;}
._13{margin-left:-7.103467pt;}
._7{margin-left:-5.916800pt;}
._5{margin-left:-3.600000pt;}
._0{margin-left:-2.243200pt;}
._4{margin-left:-1.054187pt;}
._f{width:32.652267pt;}
._b{width:35.806400pt;}
._3{width:41.446053pt;}
._e{width:50.474133pt;}
._9{width:84.494528pt;}
._14{width:104.285867pt;}
._8{width:128.923541pt;}
._6{width:349.602667pt;}
._1{width:804.849067pt;}
._12{width:884.467200pt;}
.fs34{font-size:6.602667pt;}
.fs3e{font-size:8.906988pt;}
.fs3f{font-size:10.106667pt;}
.fs32{font-size:11.002667pt;}
.fs31{font-size:13.205333pt;}
.fs48{font-size:15.472000pt;}
.fs33{font-size:17.610667pt;}
.fs35{font-size:19.813333pt;}
.fsd{font-size:21.397464pt;}
.fs44{font-size:21.478109pt;}
.fs45{font-size:24.368000pt;}
.fsf{font-size:26.154667pt;}
.fs10{font-size:26.155592pt;}
.fs3c{font-size:26.549333pt;}
.fs37{font-size:26.666667pt;}
.fs38{font-size:26.775647pt;}
.fsc{font-size:28.533333pt;}
.fs15{font-size:29.989333pt;}
.fs3b{font-size:30.976000pt;}
.fs36{font-size:32.000000pt;}
.fs12{font-size:33.583889pt;}
.fs14{font-size:33.584480pt;}
.fs13{font-size:33.585429pt;}
.fs11{font-size:33.585549pt;}
.fsb{font-size:35.668763pt;}
.fs5{font-size:37.333333pt;}
.fs16{font-size:37.482667pt;}
.fse{font-size:38.042667pt;}
.fs30{font-size:42.666667pt;}
.fsa{font-size:42.800000pt;}
.fs42{font-size:48.000000pt;}
.fs3d{font-size:53.098667pt;}
.fs39{font-size:53.328000pt;}
.fs2e{font-size:53.333333pt;}
.fs40{font-size:58.666667pt;}
.fs1{font-size:59.733333pt;}
.fs4{font-size:64.000000pt;}
.fs1f{font-size:67.468763pt;}
.fs21{font-size:67.469336pt;}
.fs22{font-size:67.470273pt;}
.fs1e{font-size:67.470324pt;}
.fs1c{font-size:67.470922pt;}
.fs23{font-size:67.472095pt;}
.fs1a{font-size:67.472823pt;}
.fs19{font-size:67.473011pt;}
.fs1b{font-size:67.473158pt;}
.fs18{font-size:67.473234pt;}
.fs17{font-size:67.473291pt;}
.fs20{font-size:67.473576pt;}
.fs1d{font-size:67.474950pt;}
.fs41{font-size:69.333333pt;}
.fs3a{font-size:74.661333pt;}
.fs2d{font-size:74.666667pt;}
.fs2a{font-size:74.710568pt;}
.fs26{font-size:74.711879pt;}
.fs25{font-size:74.714558pt;}
.fs28{font-size:74.715038pt;}
.fs2c{font-size:74.715130pt;}
.fs24{font-size:74.715685pt;}
.fs27{font-size:74.716835pt;}
.fs29{font-size:74.717236pt;}
.fs2b{font-size:74.717593pt;}
.fs8{font-size:85.333333pt;}
.fs2{font-size:96.000000pt;}
.fs7{font-size:101.333333pt;}
.fs3{font-size:104.581333pt;}
.fs9{font-size:106.666667pt;}
.fs2f{font-size:117.333333pt;}
.fs43{font-size:128.000000pt;}
.fs6{font-size:132.074667pt;}
.fs46{font-size:149.333333pt;}
.fs47{font-size:192.000000pt;}
.fs0{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.ya9{bottom:7.486133pt;}
.ya{bottom:23.461467pt;}
.y3b{bottom:25.045067pt;}
.ya8{bottom:25.360667pt;}
.y6{bottom:28.583867pt;}
.y5{bottom:45.266267pt;}
.y153{bottom:47.952000pt;}
.y9{bottom:48.699200pt;}
.y3a{bottom:50.282800pt;}
.y43{bottom:53.091733pt;}
.y191{bottom:55.816400pt;}
.y19e{bottom:58.501733pt;}
.y18e{bottom:58.615600pt;}
.y4{bottom:61.948667pt;}
.y190{bottom:63.264400pt;}
.y1a6{bottom:63.421600pt;}
.y42{bottom:65.007467pt;}
.y19c{bottom:69.594667pt;}
.y19d{bottom:70.526000pt;}
.y130{bottom:73.153467pt;}
.y41{bottom:75.233333pt;}
.ycd{bottom:75.764933pt;}
.y115{bottom:81.028533pt;}
.y19b{bottom:81.777200pt;}
.y18f{bottom:82.252400pt;}
.ycc{bottom:84.632133pt;}
.y4a{bottom:85.921200pt;}
.y12f{bottom:90.385467pt;}
.ycb{bottom:93.499333pt;}
.y137{bottom:95.184800pt;}
.y1a5{bottom:98.540933pt;}
.y170{bottom:101.232400pt;}
.y114{bottom:101.882133pt;}
.yca{bottom:102.366533pt;}
.y46{bottom:105.068933pt;}
.y17a{bottom:105.079200pt;}
.y17b{bottom:105.115867pt;}
.y12e{bottom:110.391600pt;}
.yc9{bottom:111.233733pt;}
.y136{bottom:115.190933pt;}
.y45{bottom:116.984667pt;}
.y197{bottom:117.083733pt;}
.y49{bottom:117.165333pt;}
.y173{bottom:118.101467pt;}
.yc8{bottom:120.100933pt;}
.y12d{bottom:126.776267pt;}
.y40{bottom:126.878000pt;}
.y50{bottom:126.964933pt;}
.y113{bottom:127.333733pt;}
.y44{bottom:128.900800pt;}
.yc7{bottom:128.968133pt;}
.y172{bottom:130.941333pt;}
.y11a{bottom:131.480267pt;}
.y11b{bottom:131.516933pt;}
.y135{bottom:131.575600pt;}
.y196{bottom:134.958267pt;}
.y179{bottom:137.437200pt;}
.yc6{bottom:138.107733pt;}
.y13a{bottom:138.151467pt;}
.y4f{bottom:139.058267pt;}
.y12c{bottom:143.160533pt;}
.y48{bottom:148.409200pt;}
.y134{bottom:148.807600pt;}
.y4e{bottom:151.152000pt;}
.y195{bottom:152.832800pt;}
.y19a{bottom:153.877067pt;}
.y199{bottom:153.913733pt;}
.y139{bottom:154.536133pt;}
.y3e{bottom:156.939200pt;}
.y16f{bottom:159.330133pt;}
.y12b{bottom:159.545200pt;}
.y183{bottom:163.014400pt;}
.y4d{bottom:163.245733pt;}
.y141{bottom:164.666800pt;}
.yc3{bottom:166.135200pt;}
.y133{bottom:168.813733pt;}
.y3d{bottom:168.855333pt;}
.y112{bottom:169.047200pt;}
.y174{bottom:170.448000pt;}
.y138{bottom:170.920400pt;}
.y198{bottom:172.690000pt;}
.y3f{bottom:174.812933pt;}
.yb8{bottom:177.448400pt;}
.y171{bottom:179.187467pt;}
.y47{bottom:179.653467pt;}
.y4b{bottom:179.910400pt;}
.y3c{bottom:180.771467pt;}
.y4c{bottom:181.809600pt;}
.y186{bottom:183.744400pt;}
.y178{bottom:183.917067pt;}
.y111{bottom:185.431867pt;}
.y140{bottom:185.520000pt;}
.y18c{bottom:187.099867pt;}
.y18b{bottom:187.136533pt;}
.y175{bottom:187.681200pt;}
.y176{bottom:187.717733pt;}
.y177{bottom:191.365067pt;}
.yc2{bottom:193.190933pt;}
.y12a{bottom:193.942267pt;}
.y128{bottom:194.958667pt;}
.y131{bottom:196.922133pt;}
.y127{bottom:199.178800pt;}
.y110{bottom:202.663867pt;}
.yb7{bottom:205.116000pt;}
.y182{bottom:205.234400pt;}
.y16e{bottom:207.998667pt;}
.y129{bottom:212.563600pt;}
.y156{bottom:214.260667pt;}
.y15{bottom:215.068400pt;}
.y132{bottom:215.397200pt;}
.y155{bottom:217.796000pt;}
.yc1{bottom:220.283333pt;}
.y181{bottom:223.108933pt;}
.y10f{bottom:223.517067pt;}
.y1a4{bottom:223.663333pt;}
.y16d{bottom:225.142667pt;}
.yb6{bottom:232.783600pt;}
.y126{bottom:237.017600pt;}
.y185{bottom:241.633200pt;}
.y8{bottom:242.150267pt;}
.y10e{bottom:244.370267pt;}
.y187{bottom:246.040800pt;}
.ydf{bottom:247.246400pt;}
.yc0{bottom:248.036000pt;}
.yef{bottom:252.138667pt;}
.ya5{bottom:252.735067pt;}
.yee{bottom:253.605600pt;}
.yec{bottom:254.051200pt;}
.y125{bottom:254.461600pt;}
.yde{bottom:255.896667pt;}
.ya1{bottom:258.915067pt;}
.y92{bottom:259.134133pt;}
.yb5{bottom:260.451200pt;}
.y14e{bottom:262.467067pt;}
.ya0{bottom:262.603867pt;}
.y17e{bottom:263.707067pt;}
.ya2{bottom:264.254800pt;}
.y142{bottom:265.481200pt;}
.y98{bottom:267.465467pt;}
.y9a{bottom:268.698000pt;}
.y91{bottom:271.049867pt;}
.y7{bottom:271.118400pt;}
.y99{bottom:272.781333pt;}
.y10d{bottom:273.223600pt;}
.y9b{bottom:273.778800pt;}
.ybf{bottom:274.468533pt;}
.y180{bottom:275.533600pt;}
.y117{bottom:278.011467pt;}
.y21{bottom:278.586000pt;}
.y9c{bottom:278.840000pt;}
.y17d{bottom:281.581200pt;}
.y90{bottom:284.095600pt;}
.y22{bottom:285.164913pt;}
.yb4{bottom:288.118800pt;}
.ye0{bottom:289.069200pt;}
.y9d{bottom:289.561733pt;}
.y17f{bottom:293.408133pt;}
.y165{bottom:294.951333pt;}
.y9e{bottom:298.968133pt;}
.y17c{bottom:299.455333pt;}
.yf2{bottom:300.484533pt;}
.yed{bottom:300.664800pt;}
.y8f{bottom:300.840000pt;}
.ybe{bottom:301.560933pt;}
.y7a{bottom:301.815200pt;}
.y147{bottom:307.250667pt;}
.y123{bottom:308.533733pt;}
.y9f{bottom:309.890267pt;}
.ya4{bottom:310.954267pt;}
.y8e{bottom:312.755733pt;}
.y79{bottom:313.731333pt;}
.y189{bottom:314.730667pt;}
.ye7{bottom:314.842933pt;}
.ya3{bottom:315.024800pt;}
.y169{bottom:315.285200pt;}
.y18a{bottom:315.414000pt;}
.y154{bottom:315.734533pt;}
.y1e{bottom:315.747733pt;}
.yb3{bottom:315.786400pt;}
.y10c{bottom:317.714267pt;}
.y16c{bottom:318.703333pt;}
.y184{bottom:318.749467pt;}
.y96{bottom:319.096400pt;}
.y146{bottom:320.656267pt;}
.y30{bottom:321.019067pt;}
.y95{bottom:321.509333pt;}
.y94{bottom:325.252933pt;}
.y78{bottom:325.647067pt;}
.y8d{bottom:325.801867pt;}
.y122{bottom:326.125200pt;}
.y97{bottom:327.251867pt;}
.ybd{bottom:328.653333pt;}
.y93{bottom:328.996533pt;}
.y1d{bottom:329.843867pt;}
.y188{bottom:331.571467pt;}
.y20{bottom:331.925437pt;}
.y2f{bottom:332.152400pt;}
.y10b{bottom:334.098933pt;}
.y145{bottom:334.909200pt;}
.y166{bottom:337.493733pt;}
.y77{bottom:337.562800pt;}
.y2e{bottom:337.887467pt;}
.y68{bottom:338.834267pt;}
.y121{bottom:342.509867pt;}
.y8c{bottom:342.545867pt;}
.yb2{bottom:343.454000pt;}
.y2d{bottom:343.454400pt;}
.ye4{bottom:345.406533pt;}
.y2c{bottom:346.659467pt;}
.y18d{bottom:346.680933pt;}
.y1a3{bottom:348.785733pt;}
.y76{bottom:349.478933pt;}
.y67{bottom:350.750400pt;}
.y2b{bottom:350.876267pt;}
.y10a{bottom:351.330933pt;}
.ye3{bottom:352.820800pt;}
.y2a{bottom:353.069067pt;}
.y1f{bottom:354.346533pt;}
.y29{bottom:354.587333pt;}
.y28{bottom:355.430933pt;}
.y8b{bottom:355.591600pt;}
.y27{bottom:356.443067pt;}
.yb1{bottom:356.536400pt;}
.y168{bottom:357.385733pt;}
.y26{bottom:357.960933pt;}
.y24{bottom:358.636000pt;}
.y120{bottom:358.894533pt;}
.y25{bottom:358.973067pt;}
.yf8{bottom:359.786933pt;}
.ye2{bottom:360.235067pt;}
.y75{bottom:361.395067pt;}
.y16b{bottom:361.774533pt;}
.y66{bottom:362.666133pt;}
.yf7{bottom:367.201200pt;}
.yb0{bottom:369.837733pt;}
.yf9{bottom:370.988933pt;}
.y8a{bottom:372.336000pt;}
.y74{bottom:373.310800pt;}
.y65{bottom:374.581867pt;}
.yf6{bottom:374.615467pt;}
.ye9{bottom:378.303467pt;}
.y164{bottom:378.977733pt;}
.y103{bottom:379.050267pt;}
.y3{bottom:380.602267pt;}
.yf5{bottom:382.029733pt;}
.y11f{bottom:382.832133pt;}
.yaf{bottom:383.139067pt;}
.y118{bottom:383.196800pt;}
.y119{bottom:383.233467pt;}
.y11c{bottom:383.856800pt;}
.y89{bottom:384.251733pt;}
.y73{bottom:385.226933pt;}
.y14b{bottom:385.661067pt;}
.y64{bottom:386.497600pt;}
.y124{bottom:386.978667pt;}
.yf0{bottom:389.268667pt;}
.yf4{bottom:389.444000pt;}
.yf1{bottom:391.969867pt;}
.ye1{bottom:392.190267pt;}
.y163{bottom:396.851467pt;}
.yf3{bottom:396.858267pt;}
.y72{bottom:397.143067pt;}
.y88{bottom:397.297867pt;}
.y63{bottom:398.413333pt;}
.y14a{bottom:403.535200pt;}
.y23{bottom:403.605200pt;}
.y71{bottom:409.058800pt;}
.y62{bottom:410.329067pt;}
.y11e{bottom:413.580133pt;}
.y87{bottom:414.042267pt;}
.y167{bottom:415.574933pt;}
.yfc{bottom:417.031600pt;}
.y192{bottom:418.662800pt;}
.ybc{bottom:419.726000pt;}
.y16a{bottom:419.963733pt;}
.y70{bottom:420.974533pt;}
.y149{bottom:421.409333pt;}
.y61{bottom:422.244800pt;}
.y109{bottom:422.846000pt;}
.y194{bottom:423.056533pt;}
.yfb{bottom:424.446267pt;}
.y86{bottom:425.958400pt;}
.yae{bottom:430.995200pt;}
.yfa{bottom:431.860933pt;}
.y1a2{bottom:432.200667pt;}
.y6f{bottom:432.890667pt;}
.y60{bottom:434.160533pt;}
.ye8{bottom:434.640000pt;}
.y85{bottom:437.874133pt;}
.y193{bottom:438.279333pt;}
.y108{bottom:439.230667pt;}
.ye6{bottom:439.727600pt;}
.y6e{bottom:444.806400pt;}
.y5f{bottom:446.076267pt;}
.ybb{bottom:446.818400pt;}
.yeb{bottom:447.417467pt;}
.y148{bottom:448.908533pt;}
.y84{bottom:449.789867pt;}
.y13d{bottom:453.183067pt;}
.y15e{bottom:454.304133pt;}
.yea{bottom:454.832133pt;}
.y107{bottom:456.462667pt;}
.y6d{bottom:456.722133pt;}
.y15d{bottom:457.557200pt;}
.y2{bottom:457.850133pt;}
.y5e{bottom:457.992000pt;}
.yad{bottom:458.662533pt;}
.y150{bottom:460.185067pt;}
.y83{bottom:462.835600pt;}
.ye5{bottom:465.660133pt;}
.y6c{bottom:468.638267pt;}
.y5d{bottom:469.907733pt;}
.y1a1{bottom:473.908133pt;}
.yba{bottom:473.910800pt;}
.y160{bottom:474.963733pt;}
.y13f{bottom:476.276667pt;}
.y106{bottom:476.468400pt;}
.y15f{bottom:478.696800pt;}
.y13c{bottom:478.835867pt;}
.y6b{bottom:480.554400pt;}
.y5c{bottom:481.823467pt;}
.yac{bottom:486.329867pt;}
.y13e{bottom:486.702933pt;}
.y6a{bottom:492.922533pt;}
.y105{bottom:493.700000pt;}
.y5b{bottom:493.739200pt;}
.y82{bottom:499.139867pt;}
.yd8{bottom:500.581600pt;}
.yb9{bottom:501.003200pt;}
.y161{bottom:502.397067pt;}
.y13b{bottom:505.230933pt;}
.y5a{bottom:505.654933pt;}
.y15c{bottom:506.698267pt;}
.y69{bottom:506.769600pt;}
.y18{bottom:507.575467pt;}
.y162{bottom:508.908533pt;}
.yd7{bottom:510.114267pt;}
.yab{bottom:513.997200pt;}
.y81{bottom:514.034667pt;}
.y104{bottom:517.758933pt;}
.y59{bottom:518.022667pt;}
.yd6{bottom:519.646933pt;}
.y116{bottom:521.905467pt;}
.yaa{bottom:525.335867pt;}
.y1c{bottom:528.032933pt;}
.y80{bottom:528.929733pt;}
.yd5{bottom:529.179600pt;}
.y58{bottom:531.870133pt;}
.y152{bottom:534.630400pt;}
.y1{bottom:535.098000pt;}
.y101{bottom:538.288933pt;}
.yd4{bottom:538.712267pt;}
.y1a{bottom:539.657600pt;}
.y158{bottom:540.443733pt;}
.y57{bottom:543.785867pt;}
.y7f{bottom:543.824800pt;}
.yd3{bottom:548.696667pt;}
.ydb{bottom:549.059867pt;}
.y11d{bottom:550.186267pt;}
.y151{bottom:552.504533pt;}
.y56{bottom:556.153600pt;}
.y16{bottom:556.503333pt;}
.y1a0{bottom:557.322667pt;}
.y157{bottom:557.712800pt;}
.y14f{bottom:557.868800pt;}
.y100{bottom:559.142133pt;}
.yda{bottom:560.975600pt;}
.y14d{bottom:563.495867pt;}
.y55{bottom:570.000667pt;}
.yd2{bottom:572.099333pt;}
.yd9{bottom:572.891733pt;}
.y7e{bottom:573.615067pt;}
.yc5{bottom:574.278400pt;}
.y144{bottom:575.857067pt;}
.y1b{bottom:576.482667pt;}
.y159{bottom:578.670267pt;}
.yff{bottom:579.995733pt;}
.y15b{bottom:581.541867pt;}
.yd1{bottom:581.631733pt;}
.y54{bottom:582.368400pt;}
.y31{bottom:587.075200pt;}
.yc4{bottom:587.579733pt;}
.y7d{bottom:588.509867pt;}
.y17{bottom:589.460000pt;}
.yd0{bottom:591.164133pt;}
.y143{bottom:592.241333pt;}
.y1a7{bottom:593.196533pt;}
.y32{bottom:593.413733pt;}
.y33{bottom:595.821333pt;}
.y53{bottom:596.215867pt;}
.ya7{bottom:599.011200pt;}
.y19f{bottom:599.029733pt;}
.y15a{bottom:599.283467pt;}
.y34{bottom:599.972000pt;}
.ycf{bottom:600.696533pt;}
.y7c{bottom:603.404667pt;}
.y35{bottom:603.456800pt;}
.yfe{bottom:603.933333pt;}
.y36{bottom:607.194267pt;}
.y102{bottom:608.079467pt;}
.y52{bottom:608.131600pt;}
.y37{bottom:609.725867pt;}
.y39{bottom:610.241333pt;}
.y38{bottom:610.522933pt;}
.yce{bottom:610.680933pt;}
.y7b{bottom:618.864800pt;}
.y51{bottom:620.047333pt;}
.y19{bottom:620.106000pt;}
.y14c{bottom:624.199200pt;}
.ya6{bottom:628.938667pt;}
.ydd{bottom:630.088933pt;}
.yfd{bottom:630.698800pt;}
.ydc{bottom:633.364533pt;}
.y14{bottom:642.789600pt;}
.y10{bottom:687.386400pt;}
.y13{bottom:695.054800pt;}
.yf{bottom:710.006933pt;}
.y12{bottom:730.526400pt;}
.ye{bottom:739.387067pt;}
.yd{bottom:746.660000pt;}
.yc{bottom:757.086533pt;}
.y11{bottom:765.998000pt;}
.yb{bottom:767.512800pt;}
.h3e{height:4.806741pt;}
.h4c{height:6.519915pt;}
.h4d{height:7.398080pt;}
.h3b{height:8.009941pt;}
.h3d{height:9.613483pt;}
.h39{height:9.771947pt;}
.h60{height:11.263616pt;}
.h3c{height:12.820565pt;}
.h3a{height:13.614208pt;}
.h3f{height:14.661867pt;}
.h13{height:15.705739pt;}
.h57{height:15.721976pt;}
.h58{height:17.837376pt;}
.h15{height:19.197525pt;}
.h16{height:19.198204pt;}
.h4a{height:19.327915pt;}
.h42{height:19.413333pt;}
.h43{height:19.492671pt;}
.h5b{height:19.639937pt;}
.h45{height:20.133333pt;}
.h12{height:20.943467pt;}
.h49{height:22.550528pt;}
.h41{height:24.160000pt;}
.h18{height:24.583407pt;}
.h1a{height:24.583839pt;}
.h19{height:24.584534pt;}
.h17{height:24.584622pt;}
.h11{height:26.180872pt;}
.h8{height:27.178667pt;}
.h9{height:27.328000pt;}
.h14{height:27.923317pt;}
.h44{height:29.536000pt;}
.h37{height:31.061333pt;}
.h38{height:31.232000pt;}
.h10{height:31.415200pt;}
.h5a{height:32.213333pt;}
.h55{height:34.944000pt;}
.h35{height:38.453333pt;}
.h1b{height:38.566443pt;}
.h4b{height:38.655829pt;}
.h47{height:38.822784pt;}
.h32{height:38.826667pt;}
.h46{height:39.036096pt;}
.h40{height:39.381333pt;}
.h50{height:42.709333pt;}
.h51{height:42.944000pt;}
.h3{height:43.485867pt;}
.h4{height:43.724800pt;}
.h24{height:46.283571pt;}
.h26{height:46.283965pt;}
.h27{height:46.284607pt;}
.h23{height:46.284642pt;}
.h21{height:46.285053pt;}
.h28{height:46.285857pt;}
.h1f{height:46.286357pt;}
.h1e{height:46.286485pt;}
.h20{height:46.286586pt;}
.h1d{height:46.286638pt;}
.h1c{height:46.286677pt;}
.h25{height:46.286873pt;}
.h22{height:46.287816pt;}
.h7{height:46.592000pt;}
.h36{height:46.848000pt;}
.hc{height:48.320000pt;}
.h59{height:49.226667pt;}
.h2f{height:51.251449pt;}
.h2b{height:51.252349pt;}
.h2a{height:51.254187pt;}
.h2d{height:51.254516pt;}
.h31{height:51.254579pt;}
.h29{height:51.254960pt;}
.h2c{height:51.255749pt;}
.h2e{height:51.256024pt;}
.h30{height:51.256269pt;}
.h34{height:53.834667pt;}
.h54{height:54.357333pt;}
.h4f{height:54.656000pt;}
.h52{height:63.994667pt;}
.h48{height:68.912411pt;}
.h4e{height:68.917333pt;}
.h5d{height:69.888000pt;}
.h6{height:76.135211pt;}
.h5{height:78.528000pt;}
.hb{height:78.762667pt;}
.hd{height:80.533333pt;}
.h33{height:80.725333pt;}
.h53{height:84.580267pt;}
.hf{height:88.608000pt;}
.he{height:91.104000pt;}
.h56{height:93.184000pt;}
.h5c{height:93.901333pt;}
.ha{height:99.716373pt;}
.h5e{height:109.909333pt;}
.h5f{height:140.544000pt;}
.h2{height:209.408000pt;}
.h0{height:793.700800pt;}
.h1{height:794.000000pt;}
.w0{width:1020.472400pt;}
.w1{width:1020.666667pt;}
.x0{left:0.000000pt;}
.x7d{left:7.516000pt;}
.xd{left:13.526533pt;}
.x7e{left:20.924267pt;}
.x81{left:25.098000pt;}
.x80{left:26.173200pt;}
.x7f{left:27.962800pt;}
.xc{left:32.136133pt;}
.xb{left:37.261600pt;}
.xe{left:51.976800pt;}
.x6{left:52.930000pt;}
.xe0{left:73.066933pt;}
.x55{left:76.352133pt;}
.x57{left:79.799067pt;}
.x5{left:82.706667pt;}
.x58{left:83.720667pt;}
.x5b{left:85.655067pt;}
.x5c{left:88.409200pt;}
.x59{left:89.971600pt;}
.x4{left:90.907067pt;}
.x5d{left:91.798267pt;}
.x5a{left:92.725467pt;}
.xf{left:101.918267pt;}
.x3a{left:103.602533pt;}
.x78{left:104.912533pt;}
.xdb{left:107.222933pt;}
.x60{left:109.092267pt;}
.x5f{left:110.558667pt;}
.x5e{left:112.394800pt;}
.x38{left:113.960000pt;}
.x63{left:115.990667pt;}
.x62{left:117.731867pt;}
.x61{left:119.568400pt;}
.xbb{left:120.696533pt;}
.x66{left:122.889067pt;}
.x65{left:124.355467pt;}
.xa0{left:125.255467pt;}
.x64{left:126.191600pt;}
.x56{left:127.087333pt;}
.xd9{left:128.297200pt;}
.x69{left:132.250933pt;}
.x68{left:133.992133pt;}
.x67{left:135.828667pt;}
.x7b{left:141.016000pt;}
.x6b{left:146.634267pt;}
.x6a{left:147.736400pt;}
.x36{left:148.790133pt;}
.x6e{left:159.821867pt;}
.x6d{left:161.199067pt;}
.x6c{left:163.035600pt;}
.x77{left:166.506267pt;}
.x76{left:167.608400pt;}
.x75{left:169.444933pt;}
.x71{left:173.191200pt;}
.x70{left:174.568400pt;}
.x6f{left:176.404533pt;}
.x74{left:179.875333pt;}
.x73{left:181.252533pt;}
.x72{left:183.089067pt;}
.x7c{left:191.250133pt;}
.x79{left:197.719467pt;}
.x2a{left:207.909200pt;}
.x7{left:212.223867pt;}
.x3{left:215.471200pt;}
.x29{left:217.591600pt;}
.x28{left:223.726133pt;}
.x27{left:230.596933pt;}
.x26{left:235.227200pt;}
.xdc{left:240.590000pt;}
.x25{left:242.539867pt;}
.x9b{left:248.982400pt;}
.x23{left:250.917867pt;}
.x21{left:254.724267pt;}
.x9a{left:258.642133pt;}
.x1d{left:265.798267pt;}
.x1e{left:268.278000pt;}
.x1f{left:272.421867pt;}
.x35{left:274.770133pt;}
.xda{left:278.064800pt;}
.x20{left:280.746667pt;}
.x8{left:281.763067pt;}
.x39{left:282.914267pt;}
.x37{left:284.425333pt;}
.x9d{left:286.214533pt;}
.x22{left:289.304267pt;}
.x24{left:294.480000pt;}
.x9c{left:304.108400pt;}
.x43{left:318.755067pt;}
.x41{left:321.736400pt;}
.x42{left:323.187733pt;}
.x9e{left:324.932000pt;}
.x9f{left:340.969733pt;}
.x44{left:342.478400pt;}
.xd3{left:349.198133pt;}
.xd2{left:353.238000pt;}
.x45{left:358.773467pt;}
.x7a{left:364.127067pt;}
.x47{left:366.917200pt;}
.xd8{left:369.446933pt;}
.x46{left:375.074533pt;}
.xbc{left:376.016933pt;}
.x48{left:386.180667pt;}
.xde{left:387.976800pt;}
.x49{left:389.918667pt;}
.x10{left:395.940933pt;}
.xab{left:402.984800pt;}
.x4b{left:406.206933pt;}
.x33{left:407.508267pt;}
.x32{left:412.475333pt;}
.x4a{left:418.081467pt;}
.x8f{left:419.091067pt;}
.x4c{left:421.016667pt;}
.x31{left:422.518667pt;}
.xa7{left:426.637600pt;}
.x83{left:429.629867pt;}
.x30{left:432.248267pt;}
.xdd{left:437.992000pt;}
.x2f{left:441.639333pt;}
.x2e{left:448.529733pt;}
.xb9{left:451.286667pt;}
.x4e{left:454.376000pt;}
.x2d{left:455.320000pt;}
.x2c{left:459.080267pt;}
.x4d{left:460.306400pt;}
.x90{left:461.617467pt;}
.x1{left:464.441200pt;}
.x94{left:465.853200pt;}
.x2b{left:466.890000pt;}
.xb8{left:475.751867pt;}
.xdf{left:486.198400pt;}
.x8d{left:498.246000pt;}
.x82{left:501.465867pt;}
.x92{left:503.467867pt;}
.xc3{left:508.005200pt;}
.xc4{left:509.715067pt;}
.x8a{left:511.554533pt;}
.x8b{left:513.579600pt;}
.xaa{left:517.962133pt;}
.x89{left:521.702133pt;}
.xa8{left:522.890133pt;}
.xd4{left:528.211600pt;}
.x91{left:529.638800pt;}
.xb7{left:533.730133pt;}
.x3b{left:535.766933pt;}
.x88{left:540.515867pt;}
.x8e{left:541.796000pt;}
.xd6{left:545.591467pt;}
.xd7{left:547.000000pt;}
.x34{left:548.949867pt;}
.x16{left:551.363200pt;}
.x15{left:552.596400pt;}
.x14{left:554.204533pt;}
.xa9{left:561.204400pt;}
.xbe{left:562.970800pt;}
.xd5{left:564.389333pt;}
.x8c{left:580.633733pt;}
.x11{left:586.175200pt;}
.x2{left:595.576800pt;}
.x84{left:599.590267pt;}
.x54{left:602.708400pt;}
.x86{left:608.218133pt;}
.x93{left:609.137333pt;}
.x85{left:616.612133pt;}
.x13{left:619.377600pt;}
.x87{left:627.855067pt;}
.xba{left:630.432000pt;}
.xac{left:636.534400pt;}
.xcb{left:637.816133pt;}
.x12{left:638.940000pt;}
.xc9{left:640.191867pt;}
.xbf{left:641.667467pt;}
.xca{left:643.113467pt;}
.x95{left:644.831200pt;}
.x3c{left:652.872133pt;}
.xad{left:655.152400pt;}
.xb4{left:664.051600pt;}
.xc1{left:673.560133pt;}
.x4f{left:677.679467pt;}
.x50{left:683.212800pt;}
.xb5{left:693.076533pt;}
.xb6{left:695.077067pt;}
.x53{left:699.509467pt;}
.x97{left:716.768533pt;}
.xa5{left:718.227733pt;}
.x98{left:720.474000pt;}
.xa1{left:721.625600pt;}
.xa3{left:730.231200pt;}
.x51{left:734.358933pt;}
.xa4{left:736.738800pt;}
.x96{left:744.554800pt;}
.xcc{left:745.566267pt;}
.xae{left:747.872533pt;}
.xcf{left:753.625733pt;}
.xc2{left:759.563067pt;}
.xcd{left:761.573733pt;}
.xb3{left:764.492267pt;}
.xbd{left:774.145867pt;}
.xce{left:776.106000pt;}
.x52{left:782.589067pt;}
.xc0{left:790.143867pt;}
.x9{left:821.076667pt;}
.xd0{left:826.829867pt;}
.xaf{left:840.750933pt;}
.xc6{left:844.882400pt;}
.xb1{left:848.268800pt;}
.xc5{left:854.260133pt;}
.xd1{left:857.442933pt;}
.xa{left:867.371733pt;}
.xb0{left:868.502533pt;}
.x19{left:882.770667pt;}
.xa2{left:886.134800pt;}
.x1b{left:890.370133pt;}
.xb2{left:895.605200pt;}
.x1a{left:903.170015pt;}
.x40{left:906.720267pt;}
.x3d{left:909.063333pt;}
.x3f{left:910.304400pt;}
.x1c{left:913.227454pt;}
.x3e{left:917.658267pt;}
.x17{left:924.849200pt;}
.x99{left:935.932400pt;}
.xa6{left:945.665067pt;}
.x18{left:949.079467pt;}
.xc7{left:954.757467pt;}
.xc8{left:975.397067pt;}
}




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