
    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_a227ac8336c045b917a5429c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_661c947b3836569abe789fa2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_8335a6c3afd5d829fc22848c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_70df3a145674378e5d52e2a1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_c2cb72568a6336508970f975.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_2fd38fd5a37949a54aa554e4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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_23fce74919ba2d6c7f7f1919.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.856445;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_25ab11dc51817ae116bfcc39.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_f1661191f6b16f057e68fcb1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_79379c8d608456285fd1c387.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.056641;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_8ae6c91c75d920726b39006b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_c4e7d10d4ac5c3b5c4e46a3e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.889648;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_8492c6eb8d393a38c59ef776.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.882324;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_36fcc6720bf832baaf837137.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.053223;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_abf8e1485f88b11a658fca85.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;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_932a543f7bab7a423bab5584.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.761230;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_abf8e1485f88b11a658fca85.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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_ce9c4fac00ce6a6d8b969fd9.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.761230;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:ff13;src:url('chunks/assets/font_abf8e1485f88b11a658fca85.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;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:ff14;src:url('chunks/assets/font_7b61dde97082146470cadd1c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910156;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:ff15;src:url('chunks/assets/font_5a640c8452f3d87d4e376505.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.764160;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:ff16;src:url('chunks/assets/font_84b8a142a8ea3783077830d8.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.680176;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:ff17;src:url('chunks/assets/font_7b61dde97082146470cadd1c.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910156;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:ff18;src:url('chunks/assets/font_7f353ab859cd2f0a6f064a66.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.764160;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:ff19;src:url('chunks/assets/font_d3584624e3af1fe3223b05c9.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.680176;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:ff1a;src:url('chunks/assets/font_59020eff65cf20ab89f034c8.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.053223;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:ff1b;src:url('chunks/assets/font_abf8e1485f88b11a658fca85.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.666504;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:ff1c;src:url('chunks/assets/font_e60fd4082d25870575d4fb71.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.761230;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:ff1d;src:url('chunks/assets/font_abf8e1485f88b11a658fca85.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.666504;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:ff1e;src:url('chunks/assets/font_b614570a5944182a663d40a4.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.689453;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:ff1f;src:url('chunks/assets/font_6b1cb64839f0c6f6be5bff13.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.973145;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:ff20;src:url('chunks/assets/font_84b8a142a8ea3783077830d8.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.680176;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:ff21;src:url('chunks/assets/font_5e5ca453ef7acf12b278ed66.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.666504;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:ff22;src:url('chunks/assets/font_b9fb1e31b79d6a0b567ada49.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.973145;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:ff23;src:url('chunks/assets/font_5e5ca453ef7acf12b278ed66.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.666504;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:ff24;src:url('chunks/assets/font_d3584624e3af1fe3223b05c9.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.680176;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:ff25;src:url('chunks/assets/font_1c6c8cc0d2353fbee7961807.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.764160;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:ff26;src:url('chunks/assets/font_5e5ca453ef7acf12b278ed66.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.666504;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:ff27;src:url('chunks/assets/font_56fd3933531d275639339d40.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.680176;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:ff28;src:url('chunks/assets/font_e3dc271a46b8cca875f6c61e.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.764160;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:ff29;src:url('chunks/assets/font_5e5ca453ef7acf12b278ed66.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.666504;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:ff2a;src:url('chunks/assets/font_56fd3933531d275639339d40.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.680176;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:ff2b;src:url('chunks/assets/font_e3780fa40d413e22e862a37d.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.053223;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:ff2c;src:url('chunks/assets/font_5e5ca453ef7acf12b278ed66.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.666504;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:ff2d;src:url('chunks/assets/font_d3584624e3af1fe3223b05c9.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.680176;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:ff2e;src:url('chunks/assets/font_72ed8282196bd4e65d97f51e.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.027832;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:ff2f;src:url('chunks/assets/font_5e5ca453ef7acf12b278ed66.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.666504;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:ff30;src:url('chunks/assets/font_d3584624e3af1fe3223b05c9.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.680176;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:ff31;src:url('chunks/assets/font_fcc91ed4c01ddf3171b29a78.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.675781;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;}
.m6{transform:matrix(0.165781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165781,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.169057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169057,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.218331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218331,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237082,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.239710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239710,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.241548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241548,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245159,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249075,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);}
.m4{transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251504,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252798,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254214,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-30.240000px;}
.v7{vertical-align:-25.073725px;}
.v9{vertical-align:-21.103063px;}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:8.640000px;}
.v5{vertical-align:19.723958px;}
.va{vertical-align:21.103063px;}
.v8{vertical-align:22.275454px;}
.v3{vertical-align:24.480000px;}
.v4{vertical-align:27.360000px;}
.v2{vertical-align:30.222720px;}
.ls3b{letter-spacing:-2.579284px;}
.ls39{letter-spacing:-2.570390px;}
.ls34{letter-spacing:-2.466938px;}
.ls35{letter-spacing:-2.443065px;}
.ls33{letter-spacing:-2.307781px;}
.ls38{letter-spacing:-2.285779px;}
.ls3c{letter-spacing:-2.275013px;}
.ls36{letter-spacing:-1.893972px;}
.ls37{letter-spacing:-1.750730px;}
.ls2c{letter-spacing:-1.170850px;}
.ls2e{letter-spacing:-1.045959px;}
.ls2d{letter-spacing:-1.014737px;}
.ls3a{letter-spacing:-0.800467px;}
.lsa{letter-spacing:-0.463680px;}
.ls9{letter-spacing:-0.395568px;}
.ls6{letter-spacing:-0.385920px;}
.ls2b{letter-spacing:-0.330414px;}
.ls7{letter-spacing:-0.231552px;}
.ls22{letter-spacing:-0.220347px;}
.ls1a{letter-spacing:-0.205344px;}
.ls13{letter-spacing:-0.198720px;}
.ls47{letter-spacing:-0.178848px;}
.ls4b{letter-spacing:-0.165600px;}
.ls12{letter-spacing:-0.158976px;}
.ls8{letter-spacing:-0.154368px;}
.ls4d{letter-spacing:-0.152352px;}
.ls48{letter-spacing:-0.145728px;}
.ls20{letter-spacing:-0.132480px;}
.ls19{letter-spacing:-0.125856px;}
.ls14{letter-spacing:-0.119232px;}
.ls42{letter-spacing:-0.112608px;}
.ls43{letter-spacing:-0.105984px;}
.ls41{letter-spacing:-0.099360px;}
.ls4a{letter-spacing:-0.092736px;}
.ls46{letter-spacing:-0.086112px;}
.ls1b{letter-spacing:-0.079488px;}
.ls4c{letter-spacing:-0.072864px;}
.ls49{letter-spacing:-0.066240px;}
.ls45{letter-spacing:-0.059616px;}
.ls4e{letter-spacing:-0.046368px;}
.ls44{letter-spacing:-0.019872px;}
.lsb{letter-spacing:-0.014400px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000576px;}
.ls3f{letter-spacing:0.001440px;}
.ls26{letter-spacing:0.010944px;}
.ls3e{letter-spacing:0.011520px;}
.ls1c{letter-spacing:0.012384px;}
.ls0{letter-spacing:0.014400px;}
.ls4f{letter-spacing:0.115200px;}
.ls17{letter-spacing:0.119520px;}
.ls1d{letter-spacing:0.125280px;}
.ls18{letter-spacing:0.137808px;}
.ls16{letter-spacing:0.158688px;}
.lsc{letter-spacing:0.161568px;}
.ls30{letter-spacing:0.194832px;}
.ls1{letter-spacing:0.204336px;}
.ls31{letter-spacing:0.237600px;}
.ls4{letter-spacing:0.238800px;}
.lsf{letter-spacing:0.239040px;}
.ls15{letter-spacing:0.239904px;}
.ls2{letter-spacing:0.240000px;}
.ls27{letter-spacing:0.240048px;}
.lse{letter-spacing:0.240480px;}
.ls3{letter-spacing:0.240600px;}
.ls21{letter-spacing:0.242352px;}
.ls23{letter-spacing:0.290169px;}
.ls2a{letter-spacing:0.356400px;}
.ls1e{letter-spacing:1.309636px;}
.ls2f{letter-spacing:1.421268px;}
.ls24{letter-spacing:1.657498px;}
.ls11{letter-spacing:7.365312px;}
.ls32{letter-spacing:9.456480px;}
.ls25{letter-spacing:17.224992px;}
.ls1f{letter-spacing:26.398630px;}
.ls3d{letter-spacing:33.744096px;}
.lsd{letter-spacing:33.984000px;}
.ls28{letter-spacing:40.962816px;}
.ls29{letter-spacing:166.046997px;}
.ls40{letter-spacing:2600.070624px;}
.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;}
}
.ws1{word-spacing:-24.120000px;}
.ws0{word-spacing:-23.734080px;}
.ws2{word-spacing:-23.724432px;}
.ws9{word-spacing:-18.014400px;}
.ws3{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.985600px;}
.ws11{word-spacing:-16.560000px;}
.ws13{word-spacing:-16.480512px;}
.wse{word-spacing:-16.440768px;}
.wsc{word-spacing:-16.401024px;}
.wsd{word-spacing:-16.361280px;}
.wsf{word-spacing:-16.354656px;}
.ws42{word-spacing:-14.970240px;}
.ws43{word-spacing:-14.870880px;}
.ws45{word-spacing:-14.857632px;}
.ws15{word-spacing:-14.837760px;}
.ws47{word-spacing:-14.824512px;}
.ws48{word-spacing:-14.817888px;}
.ws46{word-spacing:-14.804640px;}
.ws44{word-spacing:-14.764896px;}
.ws4{word-spacing:-14.506560px;}
.ws19{word-spacing:-12.236400px;}
.wsa{word-spacing:-12.204000px;}
.ws16{word-spacing:-12.122352px;}
.ws27{word-spacing:-12.117600px;}
.ws6{word-spacing:-12.084336px;}
.ws26{word-spacing:-12.074832px;}
.ws7{word-spacing:-12.041568px;}
.ws8{word-spacing:-11.880000px;}
.ws18{word-spacing:-1.707725px;}
.ws17{word-spacing:-1.360007px;}
.ws28{word-spacing:-0.285120px;}
.ws12{word-spacing:-0.200448px;}
.ws14{word-spacing:-0.179568px;}
.ws3d{word-spacing:-0.088941px;}
.ws41{word-spacing:-0.084260px;}
.ws2a{word-spacing:-0.079579px;}
.ws1d{word-spacing:-0.078057px;}
.ws10{word-spacing:-0.041760px;}
.wsb{word-spacing:0.000000px;}
.ws3a{word-spacing:0.711527px;}
.ws22{word-spacing:0.936680px;}
.ws23{word-spacing:0.967903px;}
.ws1e{word-spacing:1.092793px;}
.ws35{word-spacing:1.671152px;}
.ws32{word-spacing:1.814393px;}
.ws3e{word-spacing:2.190753px;}
.ws38{word-spacing:2.196838px;}
.ws2b{word-spacing:2.228202px;}
.ws2f{word-spacing:2.363486px;}
.ws2e{word-spacing:2.387359px;}
.ws39{word-spacing:2.481449px;}
.ws3b{word-spacing:2.490343px;}
.ws25{word-spacing:22.607437px;}
.ws3f{word-spacing:87.285832px;}
.ws1a{word-spacing:197.220638px;}
.ws31{word-spacing:357.943021px;}
.ws20{word-spacing:359.375467px;}
.ws33{word-spacing:442.644262px;}
.ws36{word-spacing:444.214394px;}
.ws40{word-spacing:467.418021px;}
.ws34{word-spacing:501.662769px;}
.ws1b{word-spacing:516.575652px;}
.ws30{word-spacing:735.039407px;}
.ws24{word-spacing:822.335301px;}
.ws2d{word-spacing:918.487821px;}
.ws21{word-spacing:983.190307px;}
.ws2c{word-spacing:1165.755892px;}
.ws1f{word-spacing:1249.822747px;}
.ws29{word-spacing:1254.335695px;}
.ws1c{word-spacing:1335.791242px;}
.ws3c{word-spacing:1527.432768px;}
.ws37{word-spacing:1554.931350px;}
._35{margin-left:-2784.240000px;}
._40{margin-left:-2777.536512px;}
._2e{margin-left:-2776.478112px;}
._96{margin-left:-2775.312000px;}
._fc{margin-left:-2772.571392px;}
._142{margin-left:-2770.081632px;}
._90{margin-left:-2766.358080px;}
._138{margin-left:-2763.395712px;}
._117{margin-left:-2759.825376px;}
._42{margin-left:-2758.118112px;}
._ed{margin-left:-2752.432992px;}
._145{margin-left:-2748.759552px;}
._161{margin-left:-2746.971072px;}
._15a{margin-left:-2745.544032px;}
._d{margin-left:-2743.531200px;}
._1f{margin-left:-2742.495552px;}
._10d{margin-left:-2741.271552px;}
._93{margin-left:-2739.312000px;}
._151{margin-left:-2737.977984px;}
._10a{margin-left:-2736.515520px;}
._f9{margin-left:-2734.548192px;}
._f0{margin-left:-2730.503808px;}
._14b{margin-left:-2728.471104px;}
._148{margin-left:-2727.342720px;}
._22{margin-left:-2725.631712px;}
._123{margin-left:-2718.650592px;}
._1{margin-left:-2716.750080px;}
._131{margin-left:-2715.305472px;}
._102{margin-left:-2712.911328px;}
._6{margin-left:-2710.296000px;}
._14a{margin-left:-2708.847072px;}
._110{margin-left:-2707.290432px;}
._14c{margin-left:-2703.580992px;}
._115{margin-left:-2700.092448px;}
._10e{margin-left:-2697.905664px;}
._105{margin-left:-2693.308608px;}
._11f{margin-left:-2689.575552px;}
._12d{margin-left:-2687.451552px;}
._ff{margin-left:-2685.889728px;}
._104{margin-left:-2684.816640px;}
._155{margin-left:-2680.065792px;}
._113{margin-left:-2674.764288px;}
._100{margin-left:-2673.290880px;}
._158{margin-left:-2669.033952px;}
._126{margin-left:-2667.572928px;}
._14f{margin-left:-2665.294272px;}
._e1{margin-left:-2663.854560px;}
._11a{margin-left:-2661.358176px;}
._16d{margin-left:-2659.200192px;}
._165{margin-left:-2655.394272px;}
._f6{margin-left:-2649.992832px;}
._f3{margin-left:-2643.468192px;}
._136{margin-left:-2639.879424px;}
._12e{margin-left:-2638.831392px;}
._12b{margin-left:-2637.643392px;}
._2a{margin-left:-2635.847712px;}
._15e{margin-left:-2632.836672px;}
._13e{margin-left:-2629.094112px;}
._fa{margin-left:-2627.828928px;}
._1e{margin-left:-2625.623712px;}
._121{margin-left:-2624.564736px;}
._11c{margin-left:-2619.654912px;}
._14d{margin-left:-2618.649504px;}
._d1{margin-left:-2613.095712px;}
._16a{margin-left:-2608.648704px;}
._101{margin-left:-2607.142176px;}
._f4{margin-left:-2601.714240px;}
._157{margin-left:-2595.874752px;}
._fe{margin-left:-2590.045632px;}
._11d{margin-left:-2586.868992px;}
._99{margin-left:-2571.839712px;}
._146{margin-left:-2570.667552px;}
._119{margin-left:-2564.112672px;}
._13a{margin-left:-2558.879712px;}
._124{margin-left:-2555.150400px;}
._16f{margin-left:-2548.171584px;}
._114{margin-left:-2505.259872px;}
._150{margin-left:-2500.124832px;}
._163{margin-left:-2482.538112px;}
._129{margin-left:-2480.749632px;}
._13c{margin-left:-2472.969312px;}
._e2{margin-left:-2465.250912px;}
._154{margin-left:-2462.157504px;}
._168{margin-left:-2457.830592px;}
._32{margin-left:-2444.975712px;}
._12a{margin-left:-2441.968992px;}
._162{margin-left:-2432.885184px;}
._e9{margin-left:-2420.927712px;}
._15f{margin-left:-2406.334752px;}
._ce{margin-left:-2394.000000px;}
._167{margin-left:-2383.676352px;}
._e0{margin-left:-2376.329760px;}
._f1{margin-left:-2375.163072px;}
._140{margin-left:-2369.705472px;}
._d9{margin-left:-2366.638560px;}
._134{margin-left:-2325.877632px;}
._139{margin-left:-2298.705984px;}
._27{margin-left:-2281.747680px;}
._88{margin-left:-2268.935712px;}
._127{margin-left:-2261.594592px;}
._1b{margin-left:-2251.698912px;}
._107{margin-left:-2242.097280px;}
._152{margin-left:-2230.276320px;}
._156{margin-left:-2207.536128px;}
._120{margin-left:-2189.927232px;}
._30{margin-left:-2173.894560px;}
._8a{margin-left:-2169.071712px;}
._41{margin-left:-2155.175712px;}
._d8{margin-left:-2148.911712px;}
._4c{margin-left:-2127.095712px;}
._16b{margin-left:-2124.901728px;}
._d0{margin-left:-2094.911712px;}
._f7{margin-left:-2090.911104px;}
._111{margin-left:-2052.516960px;}
._13b{margin-left:-2046.513312px;}
._2c{margin-left:-2026.798560px;}
._132{margin-left:-2010.759160px;}
._44{margin-left:-1995.119712px;}
._48{margin-left:-1985.255712px;}
._ee{margin-left:-1971.668736px;}
._f5{margin-left:-1954.472832px;}
._9{margin-left:-1927.224000px;}
._8c{margin-left:-1925.207712px;}
._91{margin-left:-1916.063712px;}
._8e{margin-left:-1914.119712px;}
._fd{margin-left:-1893.710016px;}
._15c{margin-left:-1883.032992px;}
._16e{margin-left:-1873.793952px;}
._149{margin-left:-1851.828768px;}
._109{margin-left:-1822.757472px;}
._166{margin-left:-1815.001632px;}
._2f{margin-left:-1807.055712px;}
._106{margin-left:-1781.484192px;}
._5d{margin-left:-1769.039712px;}
._8b{margin-left:-1737.215712px;}
._10b{margin-left:-1712.445120px;}
._122{margin-left:-1709.517312px;}
._55{margin-left:-1707.191712px;}
._108{margin-left:-1695.971232px;}
._d7{margin-left:-1691.063712px;}
._4f{margin-left:-1677.167712px;}
._10c{margin-left:-1675.701792px;}
._153{margin-left:-1668.713472px;}
._57{margin-left:-1649.735280px;}
._128{margin-left:-1648.079712px;}
._26{margin-left:-1641.959712px;}
._f2{margin-left:-1638.476352px;}
._14e{margin-left:-1629.070272px;}
._11b{margin-left:-1627.810272px;}
._164{margin-left:-1614.033792px;}
._13d{margin-left:-1607.448096px;}
._db{margin-left:-1603.079712px;}
._5a{margin-left:-1601.711280px;}
._87{margin-left:-1595.447712px;}
._85{margin-left:-1573.150752px;}
._37{margin-left:-1561.966560px;}
._135{margin-left:-1558.854432px;}
._125{margin-left:-1547.924832px;}
._12c{margin-left:-1536.135552px;}
._137{margin-left:-1525.537152px;}
._133{margin-left:-1521.726912px;}
._de{margin-left:-1513.079712px;}
._143{margin-left:-1493.144352px;}
._144{margin-left:-1451.115072px;}
._160{margin-left:-1418.644224px;}
._13f{margin-left:-1402.965216px;}
._169{margin-left:-1373.713632px;}
._4d{margin-left:-1361.375712px;}
._d4{margin-left:-1350.000864px;}
._e3{margin-left:-1345.175712px;}
._15d{margin-left:-1333.240992px;}
._10f{margin-left:-1316.549952px;}
._15b{margin-left:-1315.316448px;}
._34{margin-left:-1287.287712px;}
._20{margin-left:-1284.119712px;}
._9d{margin-left:-1275.263712px;}
._159{margin-left:-1230.635232px;}
._3e{margin-left:-1226.951712px;}
._e8{margin-left:-1223.279712px;}
._f8{margin-left:-1218.347712px;}
._3c{margin-left:-1215.071712px;}
._171{margin-left:-1204.152480px;}
._ef{margin-left:-1198.078272px;}
._118{margin-left:-1172.569248px;}
._147{margin-left:-1163.732832px;}
._5f{margin-left:-1161.268560px;}
._b9{margin-left:-1144.958827px;}
._16c{margin-left:-1140.780672px;}
._3f{margin-left:-1105.415712px;}
._33{margin-left:-1099.367712px;}
._d5{margin-left:-1093.175712px;}
._eb{margin-left:-1091.303712px;}
._df{margin-left:-1073.231712px;}
._112{margin-left:-1070.301312px;}
._3a{margin-left:-1066.895712px;}
._cb{margin-left:-1057.175712px;}
._e4{margin-left:-1043.279712px;}
._dc{margin-left:-1015.170912px;}
._25{margin-left:-1010.447712px;}
._28{margin-left:-980.207712px;}
._130{margin-left:-942.378624px;}
._11e{margin-left:-928.382112px;}
._16{margin-left:-922.103712px;}
._116{margin-left:-915.365952px;}
._7{margin-left:-896.976000px;}
._49{margin-left:-869.327712px;}
._8d{margin-left:-865.151712px;}
._45{margin-left:-861.407712px;}
._9e{margin-left:-838.891292px;}
._d3{margin-left:-817.199712px;}
._15{margin-left:-806.112000px;}
._e6{margin-left:-797.183712px;}
._ea{margin-left:-789.335712px;}
._d6{margin-left:-769.319712px;}
._da{margin-left:-765.215712px;}
._c0{margin-left:-747.883766px;}
._ab{margin-left:-737.351770px;}
._170{margin-left:-729.264672px;}
._17{margin-left:-712.080144px;}
._dd{margin-left:-697.247712px;}
._141{margin-left:-695.813472px;}
._3b{margin-left:-691.415712px;}
._43{margin-left:-675.359712px;}
._fb{margin-left:-662.362272px;}
._53{margin-left:-659.375712px;}
._39{margin-left:-653.255712px;}
._62{margin-left:-650.226528px;}
._29{margin-left:-632.159712px;}
._12f{margin-left:-628.911072px;}
._e7{margin-left:-597.455712px;}
._5e{margin-left:-591.263712px;}
._4a{margin-left:-587.303712px;}
._63{margin-left:-564.775601px;}
._ec{margin-left:-561.167712px;}
._c1{margin-left:-540.156940px;}
._4{margin-left:-527.541696px;}
._86{margin-left:-521.351712px;}
._46{margin-left:-509.327712px;}
._c7{margin-left:-494.693260px;}
._c6{margin-left:-482.914501px;}
._79{margin-left:-457.063646px;}
._c8{margin-left:-453.066240px;}
._b5{margin-left:-450.839117px;}
._cc{margin-left:-449.423712px;}
._a{margin-left:-427.032000px;}
._b8{margin-left:-409.580520px;}
._bf{margin-left:-401.513296px;}
._65{margin-left:-397.789067px;}
._ca{margin-left:-391.673491px;}
._9f{margin-left:-362.328532px;}
._64{margin-left:-340.170672px;}
._84{margin-left:-338.916992px;}
._77{margin-left:-336.990778px;}
._aa{margin-left:-335.179366px;}
._bd{margin-left:-323.659143px;}
._76{margin-left:-311.562932px;}
._83{margin-left:-309.179035px;}
._b0{margin-left:-307.514900px;}
._103{margin-left:-305.792352px;}
._6e{margin-left:-297.003300px;}
._7e{margin-left:-295.665439px;}
._bc{margin-left:-289.085707px;}
._6d{margin-left:-285.737697px;}
._7d{margin-left:-283.217418px;}
._b4{margin-left:-281.200483px;}
._b3{margin-left:-278.758576px;}
._a9{margin-left:-277.583787px;}
._b1{margin-left:-264.204810px;}
._c5{margin-left:-257.456767px;}
._ae{margin-left:-253.011633px;}
._7a{margin-left:-250.970314px;}
._b7{margin-left:-244.510068px;}
._a7{margin-left:-241.169040px;}
._be{margin-left:-238.507145px;}
._172{margin-left:-237.300192px;}
._31{margin-left:-225.359712px;}
._c4{margin-left:-222.949310px;}
._74{margin-left:-221.121518px;}
._a4{margin-left:-220.076525px;}
._b2{margin-left:-217.422468px;}
._72{margin-left:-216.165976px;}
._78{margin-left:-203.436931px;}
._75{margin-left:-198.810418px;}
._81{margin-left:-196.927841px;}
._2d{margin-left:-192.239712px;}
._a6{margin-left:-178.508088px;}
._af{margin-left:-172.384687px;}
._a8{margin-left:-171.144393px;}
._7f{margin-left:-164.603261px;}
._c2{margin-left:-163.114833px;}
._6b{margin-left:-160.714349px;}
._7c{margin-left:-159.094169px;}
._73{margin-left:-148.665492px;}
._c3{margin-left:-142.857966px;}
._a5{margin-left:-137.668269px;}
._71{margin-left:-136.224143px;}
._69{margin-left:-132.839768px;}
._6f{margin-left:-131.359571px;}
._82{margin-left:-129.974042px;}
._bb{margin-left:-128.444730px;}
._ba{margin-left:-126.191974px;}
._c9{margin-left:-124.479693px;}
._80{margin-left:-121.023746px;}
._67{margin-left:-118.108995px;}
._66{margin-left:-116.301882px;}
._70{margin-left:-115.076788px;}
._6a{margin-left:-113.758610px;}
._68{margin-left:-110.450275px;}
._7b{margin-left:-104.783846px;}
._a2{margin-left:-97.827210px;}
._b6{margin-left:-85.884489px;}
._ac{margin-left:-76.810237px;}
._a0{margin-left:-75.652259px;}
._6c{margin-left:-71.033868px;}
._a3{margin-left:-65.010134px;}
._a1{margin-left:-62.099919px;}
._ad{margin-left:-57.436185px;}
._50{margin-left:-5.335788px;}
._51{margin-left:-3.727425px;}
._52{margin-left:-2.191784px;}
._3{margin-left:-1.061280px;}
._0{width:1.061280px;}
._19{width:2.131200px;}
._1a{width:3.326400px;}
._14{width:4.392000px;}
._13{width:5.976000px;}
._1c{width:7.351488px;}
._c{width:8.352000px;}
._18{width:9.622080px;}
._10{width:11.520000px;}
._8{width:12.636000px;}
._b{width:14.025600px;}
._e{width:15.300000px;}
._11{width:16.423200px;}
._5{width:19.152000px;}
._1d{width:20.223792px;}
._f{width:21.261600px;}
._3d{width:22.298976px;}
._61{width:23.760000px;}
._38{width:25.619616px;}
._89{width:26.979264px;}
._12{width:28.008000px;}
._23{width:30.160800px;}
._d2{width:31.202640px;}
._cf{width:32.233392px;}
._cd{width:33.687792px;}
._24{width:35.341056px;}
._2{width:40.135680px;}
._21{width:43.272000px;}
._47{width:51.444000px;}
._36{width:130.822848px;}
._2b{width:158.758848px;}
._56{width:194.399568px;}
._9a{width:408.240000px;}
._94{width:665.224128px;}
._97{width:725.646528px;}
._59{width:767.100960px;}
._98{width:805.505760px;}
._8f{width:831.286080px;}
._95{width:947.936160px;}
._9b{width:962.219808px;}
._5c{width:1096.860960px;}
._92{width:1128.240000px;}
._5b{width:1333.739808px;}
._9c{width:1431.780480px;}
._58{width:1663.499808px;}
._4b{width:1969.081200px;}
._4e{width:2016.600768px;}
._60{width:2041.081200px;}
._54{width:2065.560192px;}
._e5{width:2498.398848px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:30.537389px;}
.fsc{font-size:30.706947px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:47.520000px;}
.fs13{font-size:49.009239px;}
.fsb{font-size:49.101118px;}
.fsf{font-size:49.902739px;}
.fs9{font-size:50.227202px;}
.fs7{font-size:50.370614px;}
.fs15{font-size:50.999406px;}
.fs1a{font-size:53.999362px;}
.fs4{font-size:54.000000px;}
.fs17{font-size:56.999324px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs12{font-size:76.568498px;}
.fsa{font-size:76.840570px;}
.fs10{font-size:78.056663px;}
.fs8{font-size:78.424146px;}
.fs6{font-size:78.695412px;}
.fs16{font-size:79.578649px;}
.fs19{font-size:84.259733px;}
.fsd{font-size:86.103556px;}
.fs18{font-size:88.940824px;}
.fs1{font-size:96.480000px;}
.fse{font-size:113.358581px;}
.fs11{font-size:113.508598px;}
.y0{bottom:0.000000px;}
.yd8{bottom:2.002582px;}
.yeb{bottom:2.159940px;}
.ye5{bottom:2.234498px;}
.yb9{bottom:2.296568px;}
.ybf{bottom:2.503664px;}
.y11c{bottom:3.004271px;}
.y121{bottom:3.357714px;}
.y103{bottom:4.140000px;}
.yfe{bottom:4.560000px;}
.yf9{bottom:4.740000px;}
.yde{bottom:4.953100px;}
.yfa{bottom:4.980000px;}
.yd5{bottom:5.080776px;}
.y100{bottom:5.160000px;}
.yfb{bottom:5.400000px;}
.yf7{bottom:5.820000px;}
.yf5{bottom:5.880000px;}
.yf3{bottom:5.940000px;}
.y5e{bottom:6.240000px;}
.y53{bottom:6.540000px;}
.y56{bottom:6.780000px;}
.y61{bottom:6.840000px;}
.ye9{bottom:6.964073px;}
.ye3{bottom:7.001277px;}
.y59{bottom:7.020000px;}
.y64{bottom:7.080000px;}
.yb7{bottom:7.195758px;}
.y67{bottom:7.320000px;}
.ybd{bottom:7.395398px;}
.y50{bottom:7.500000px;}
.y123{bottom:8.456758px;}
.y54{bottom:8.700000px;}
.y5f{bottom:8.760000px;}
.y57{bottom:8.940000px;}
.y62{bottom:9.000000px;}
.y65{bottom:9.240000px;}
.y5a{bottom:9.540000px;}
.y51{bottom:9.660000px;}
.y68{bottom:9.840000px;}
.yd3{bottom:9.864712px;}
.ye0{bottom:9.868845px;}
.ydd{bottom:9.906049px;}
.ydc{bottom:10.055016px;}
.yee{bottom:14.039758px;}
.yda{bottom:16.873673px;}
.ye7{bottom:17.092897px;}
.yc1{bottom:17.756528px;}
.yd7{bottom:19.952614px;}
.ye2{bottom:21.860426px;}
.yb6{bottom:22.467663px;}
.y78{bottom:22.620000px;}
.ybc{bottom:22.687517px;}
.y6a{bottom:22.860000px;}
.y4e{bottom:23.460000px;}
.y76{bottom:24.000000px;}
.y5c{bottom:24.060000px;}
.yd2{bottom:24.773450px;}
.yed{bottom:29.383761px;}
.yc0{bottom:30.121240px;}
.yd9{bottom:31.968103px;}
.yec{bottom:32.436600px;}
.ye6{bottom:33.107174px;}
.yba{bottom:34.026823px;}
.yd6{bottom:35.008203px;}
.ybe{bottom:35.050678px;}
.yea{bottom:37.204129px;}
.ye4{bottom:37.873203px;}
.yb8{bottom:38.925242px;}
.yd4{bottom:39.829039px;}
.y1e{bottom:57.600000px;}
.y1{bottom:77.760000px;}
.y86{bottom:111.240000px;}
.y107{bottom:114.000000px;}
.y4a{bottom:116.280000px;}
.y4f{bottom:118.500000px;}
.ya6{bottom:124.920000px;}
.y18{bottom:127.440000px;}
.y144{bottom:133.560000px;}
.y106{bottom:139.500000px;}
.yd0{bottom:139.680000px;}
.y11a{bottom:140.760000px;}
.y4d{bottom:142.500000px;}
.y34{bottom:142.560000px;}
.y153{bottom:142.920000px;}
.y1b2{bottom:143.640000px;}
.y16f{bottom:144.720000px;}
.y145{bottom:151.200000px;}
.y85{bottom:152.640000px;}
.y49{bottom:157.680000px;}
.y1ae{bottom:162.720000px;}
.y7d{bottom:163.440000px;}
.y105{bottom:163.500000px;}
.y191{bottom:163.800000px;}
.y16e{bottom:164.880000px;}
.ya5{bottom:166.320000px;}
.y17{bottom:168.840000px;}
.y12d{bottom:172.440000px;}
.y143{bottom:174.960000px;}
.y154{bottom:178.560000px;}
.ycf{bottom:181.080000px;}
.yb4{bottom:181.440000px;}
.y119{bottom:182.160000px;}
.y33{bottom:183.960000px;}
.y152{bottom:184.320000px;}
.y16d{bottom:185.040000px;}
.y104{bottom:187.500000px;}
.y84{bottom:194.040000px;}
.y48{bottom:199.080000px;}
.y190{bottom:204.120000px;}
.y7c{bottom:204.840000px;}
.ya4{bottom:207.720000px;}
.y16{bottom:210.240000px;}
.y102{bottom:211.500000px;}
.y12c{bottom:213.840000px;}
.y142{bottom:216.360000px;}
.y155{bottom:221.400000px;}
.yb3{bottom:222.840000px;}
.y1ad{bottom:224.280000px;}
.y4c{bottom:225.000000px;}
.y32{bottom:225.360000px;}
.y151{bottom:225.720000px;}
.y16c{bottom:226.080000px;}
.ye8{bottom:233.841150px;}
.y101{bottom:234.000000px;}
.y83{bottom:235.440000px;}
.y118{bottom:238.320000px;}
.y47{bottom:240.480000px;}
.y1ac{bottom:244.080000px;}
.y18f{bottom:245.160000px;}
.y7b{bottom:246.240000px;}
.y133{bottom:248.760000px;}
.ya3{bottom:249.120000px;}
.y15{bottom:251.640000px;}
.y12b{bottom:255.240000px;}
.yce{bottom:256.320000px;}
.y141{bottom:257.760000px;}
.yff{bottom:258.000000px;}
.y18e{bottom:265.320000px;}
.y16b{bottom:266.400000px;}
.y31{bottom:266.760000px;}
.y150{bottom:267.120000px;}
.ybb{bottom:275.562900px;}
.y82{bottom:276.840000px;}
.y46{bottom:281.880000px;}
.yfd{bottom:282.000000px;}
.y1ab{bottom:285.480000px;}
.y1b1{bottom:286.200000px;}
.y7a{bottom:287.640000px;}
.y132{bottom:290.160000px;}
.ya2{bottom:290.520000px;}
.y122{bottom:291.055050px;}
.y14{bottom:293.040000px;}
.y12a{bottom:296.640000px;}
.yb2{bottom:298.080000px;}
.y117{bottom:299.880000px;}
.yfc{bottom:304.500000px;}
.y1aa{bottom:305.640000px;}
.y18d{bottom:306.360000px;}
.y16a{bottom:307.800000px;}
.y30{bottom:308.160000px;}
.y14f{bottom:308.520000px;}
.y140{bottom:314.280000px;}
.y45{bottom:323.280000px;}
.y1a9{bottom:325.800000px;}
.y18c{bottom:326.520000px;}
.ycd{bottom:327.240000px;}
.y169{bottom:327.960000px;}
.y131{bottom:331.560000px;}
.ya1{bottom:331.920000px;}
.y81{bottom:333.000000px;}
.y13{bottom:334.440000px;}
.y129{bottom:338.040000px;}
.y79{bottom:344.160000px;}
.y1b3{bottom:346.680000px;}
.y168{bottom:348.120000px;}
.y2f{bottom:349.560000px;}
.y14e{bottom:349.920000px;}
.y120{bottom:353.753250px;}
.y13f{bottom:355.680000px;}
.y77{bottom:361.500000px;}
.y116{bottom:362.880000px;}
.y8e{bottom:364.680000px;}
.y1a8{bottom:366.840000px;}
.yb1{bottom:367.560000px;}
.y130{bottom:372.960000px;}
.y12{bottom:375.840000px;}
.y44{bottom:379.440000px;}
.ycc{bottom:383.760000px;}
.yf8{bottom:385.500000px;}
.y80{bottom:385.560000px;}
.y1a7{bottom:387.000000px;}
.y18b{bottom:387.720000px;}
.ya0{bottom:388.080000px;}
.y167{bottom:389.160000px;}
.y2e{bottom:390.960000px;}
.y13e{bottom:397.080000px;}
.y75{bottom:399.000000px;}
.y8d{bottom:406.080000px;}
.y14d{bottom:406.440000px;}
.y1a6{bottom:407.160000px;}
.y18a{bottom:407.880000px;}
.yb0{bottom:408.960000px;}
.y166{bottom:409.320000px;}
.yf6{bottom:412.500000px;}
.y12f{bottom:414.360000px;}
.y11{bottom:417.240000px;}
.y43{bottom:420.840000px;}
.y115{bottom:421.560000px;}
.ycb{bottom:425.160000px;}
.y1b0{bottom:428.040000px;}
.y9f{bottom:429.480000px;}
.y2d{bottom:432.360000px;}
.yf4{bottom:438.000000px;}
.y13d{bottom:438.480000px;}
.y8c{bottom:447.480000px;}
.y1a5{bottom:448.200000px;}
.y189{bottom:448.920000px;}
.yaf{bottom:450.360000px;}
.y10{bottom:458.640000px;}
.y42{bottom:462.240000px;}
.y14c{bottom:462.960000px;}
.yf2{bottom:463.500000px;}
.y1a4{bottom:468.360000px;}
.y188{bottom:469.080000px;}
.y165{bottom:470.520000px;}
.y9e{bottom:470.880000px;}
.y2c{bottom:473.760000px;}
.y11f{bottom:474.348000px;}
.ye1{bottom:477.728850px;}
.y13c{bottom:479.880000px;}
.y74{bottom:481.680000px;}
.y114{bottom:483.120000px;}
.y1a3{bottom:488.520000px;}
.y8b{bottom:488.880000px;}
.y187{bottom:489.240000px;}
.y164{bottom:490.680000px;}
.yf{bottom:500.040000px;}
.y41{bottom:503.640000px;}
.y14b{bottom:504.360000px;}
.yae{bottom:506.880000px;}
.y186{bottom:509.400000px;}
.y9d{bottom:512.280000px;}
.y2b{bottom:515.160000px;}
.y13b{bottom:521.280000px;}
.y1a2{bottom:529.560000px;}
.y8a{bottom:530.280000px;}
.y163{bottom:531.720000px;}
.y11e{bottom:535.851000px;}
.ye{bottom:541.440000px;}
.y113{bottom:544.680000px;}
.y40{bottom:545.040000px;}
.y14a{bottom:545.760000px;}
.yad{bottom:548.280000px;}
.y1a1{bottom:549.720000px;}
.y73{bottom:550.080000px;}
.y185{bottom:550.800000px;}
.y162{bottom:551.880000px;}
.y9c{bottom:553.680000px;}
.y2a{bottom:556.560000px;}
.y13a{bottom:562.680000px;}
.y12e{bottom:564.840000px;}
.y184{bottom:570.960000px;}
.yca{bottom:571.320000px;}
.y89{bottom:571.680000px;}
.y161{bottom:572.040000px;}
.yd{bottom:582.840000px;}
.y3f{bottom:586.440000px;}
.y1a0{bottom:590.760000px;}
.y183{bottom:591.120000px;}
.y72{bottom:591.480000px;}
.y149{bottom:593.280000px;}
.y9b{bottom:595.080000px;}
.y11d{bottom:597.353850px;}
.y29{bottom:597.960000px;}
.yb5{bottom:600.743550px;}
.y128{bottom:601.560000px;}
.y147{bottom:603.360000px;}
.y139{bottom:604.080000px;}
.y112{bottom:606.240000px;}
.y19f{bottom:610.920000px;}
.y88{bottom:613.080000px;}
.yac{bottom:623.160000px;}
.ydf{bottom:623.823750px;}
.yc{bottom:624.240000px;}
.y3e{bottom:627.840000px;}
.y19e{bottom:631.080000px;}
.y182{bottom:632.160000px;}
.y71{bottom:632.880000px;}
.y160{bottom:633.240000px;}
.yc9{bottom:634.320000px;}
.y9a{bottom:636.480000px;}
.y28{bottom:639.360000px;}
.y127{bottom:642.960000px;}
.y138{bottom:645.480000px;}
.y181{bottom:652.320000px;}
.y15f{bottom:653.400000px;}
.y87{bottom:654.480000px;}
.y111{bottom:662.760000px;}
.yb{bottom:665.640000px;}
.y3d{bottom:669.240000px;}
.y180{bottom:672.480000px;}
.y70{bottom:674.280000px;}
.y99{bottom:677.880000px;}
.y27{bottom:680.760000px;}
.y126{bottom:684.360000px;}
.yc8{bottom:690.480000px;}
.y19d{bottom:692.640000px;}
.y1b4{bottom:693.360000px;}
.y15e{bottom:694.800000px;}
.yaa{bottom:695.880000px;}
.y137{bottom:701.640000px;}
.ya{bottom:707.040000px;}
.y3c{bottom:710.640000px;}
.y19c{bottom:712.800000px;}
.y17f{bottom:713.520000px;}
.y15d{bottom:714.960000px;}
.y11b{bottom:715.253250px;}
.y6f{bottom:715.680000px;}
.y98{bottom:719.280000px;}
.y26{bottom:722.160000px;}
.y110{bottom:723.960000px;}
.y125{bottom:725.760000px;}
.y17e{bottom:733.680000px;}
.y15c{bottom:735.120000px;}
.yab{bottom:737.280000px;}
.ydb{bottom:743.223150px;}
.y3b{bottom:752.040000px;}
.yc7{bottom:753.480000px;}
.y19b{bottom:753.840000px;}
.y6e{bottom:757.080000px;}
.y136{bottom:758.160000px;}
.y9{bottom:763.560000px;}
.y124{bottom:767.160000px;}
.y19a{bottom:774.000000px;}
.y17d{bottom:774.720000px;}
.y97{bottom:775.800000px;}
.y15b{bottom:776.160000px;}
.y25{bottom:778.680000px;}
.y10f{bottom:780.480000px;}
.y3a{bottom:793.440000px;}
.y199{bottom:794.160000px;}
.y17c{bottom:794.880000px;}
.y15a{bottom:796.320000px;}
.y6d{bottom:798.480000px;}
.y135{bottom:799.560000px;}
.yf1{bottom:804.960000px;}
.ya9{bottom:808.560000px;}
.yc6{bottom:810.000000px;}
.y17b{bottom:815.040000px;}
.y159{bottom:816.480000px;}
.y8{bottom:820.080000px;}
.y96{bottom:832.320000px;}
.y39{bottom:834.840000px;}
.y198{bottom:835.200000px;}
.y10e{bottom:837.000000px;}
.y6c{bottom:839.880000px;}
.y134{bottom:840.960000px;}
.yf0{bottom:846.360000px;}
.ya8{bottom:849.960000px;}
.y197{bottom:855.360000px;}
.y17a{bottom:856.080000px;}
.y158{bottom:857.520000px;}
.y7{bottom:861.480000px;}
.yc5{bottom:866.520000px;}
.y95{bottom:873.720000px;}
.y196{bottom:875.520000px;}
.y38{bottom:876.240000px;}
.y157{bottom:877.680000px;}
.y10d{bottom:878.400000px;}
.yef{bottom:887.760000px;}
.ya7{bottom:891.360000px;}
.y148{bottom:893.520000px;}
.y6b{bottom:896.040000px;}
.y179{bottom:896.400000px;}
.y156{bottom:897.840000px;}
.y146{bottom:900.000000px;}
.y24{bottom:902.880000px;}
.yc4{bottom:907.920000px;}
.y69{bottom:913.500000px;}
.y94{bottom:915.120000px;}
.y195{bottom:916.560000px;}
.y6{bottom:917.640000px;}
.y10c{bottom:919.800000px;}
.y4b{bottom:932.760000px;}
.y194{bottom:936.720000px;}
.y178{bottom:937.800000px;}
.y23{bottom:943.920000px;}
.yc3{bottom:949.320000px;}
.y66{bottom:951.000000px;}
.y1af{bottom:957.600000px;}
.y177{bottom:957.960000px;}
.y5{bottom:959.040000px;}
.y10b{bottom:961.200000px;}
.y93{bottom:971.280000px;}
.y37{bottom:974.160000px;}
.y63{bottom:975.000000px;}
.y176{bottom:977.760000px;}
.y22{bottom:985.320000px;}
.y193{bottom:997.920000px;}
.y60{bottom:999.000000px;}
.y7f{bottom:1000.440000px;}
.yd1{bottom:1001.811900px;}
.y10a{bottom:1002.600000px;}
.y92{bottom:1012.680000px;}
.y36{bottom:1015.560000px;}
.y175{bottom:1019.160000px;}
.y5d{bottom:1023.000000px;}
.y4{bottom:1023.480000px;}
.yc2{bottom:1027.080000px;}
.y174{bottom:1039.320000px;}
.y21{bottom:1041.840000px;}
.y5b{bottom:1045.500000px;}
.y91{bottom:1054.080000px;}
.y35{bottom:1056.960000px;}
.y109{bottom:1058.760000px;}
.y173{bottom:1059.480000px;}
.y3{bottom:1078.920000px;}
.y192{bottom:1079.640000px;}
.y7e{bottom:1083.240000px;}
.y58{bottom:1084.500000px;}
.y90{bottom:1095.480000px;}
.y20{bottom:1098.360000px;}
.y172{bottom:1100.520000px;}
.y55{bottom:1108.500000px;}
.y108{bottom:1115.280000px;}
.y171{bottom:1120.680000px;}
.y52{bottom:1132.500000px;}
.y2{bottom:1134.360000px;}
.y8f{bottom:1138.320000px;}
.y1f{bottom:1139.760000px;}
.y170{bottom:1140.840000px;}
.y1d{bottom:1173.960000px;}
.y1c{bottom:1194.120000px;}
.y1b{bottom:1196.736000px;}
.y1a{bottom:1212.936000px;}
.y19{bottom:1229.136000px;}
.h26{height:22.903042px;}
.h1a{height:23.030210px;}
.he{height:24.000000px;}
.hb{height:25.500000px;}
.h2c{height:26.824920px;}
.h1c{height:27.000000px;}
.h28{height:28.500000px;}
.h29{height:30.000000px;}
.h23{height:36.756930px;}
.h19{height:36.825838px;}
.h15{height:37.670402px;}
.h11{height:37.777960px;}
.h7{height:38.759766px;}
.h9{height:39.000000px;}
.hd{height:40.500000px;}
.hc{height:45.992813px;}
.h2{height:47.545312px;}
.h5{height:48.796875px;}
.h4{height:50.027344px;}
.h27{height:51.033203px;}
.h1b{height:51.214540px;}
.h2f{height:52.313203px;}
.h13{height:52.397160px;}
.h12{height:52.450799px;}
.h21{height:53.991120px;}
.h25{height:54.000000px;}
.hf{height:55.500000px;}
.ha{height:55.695938px;}
.h17{height:56.948145px;}
.h22{height:57.426374px;}
.h6{height:57.457564px;}
.h8{height:57.474844px;}
.h18{height:57.630427px;}
.h2e{height:58.667344px;}
.h14{height:58.818110px;}
.h10{height:59.021559px;}
.h1d{height:59.784794px;}
.h2d{height:63.194799px;}
.h3{height:65.387812px;}
.h24{height:70.103320px;}
.h16{height:71.993958px;}
.h1f{height:78.056663px;}
.h1e{height:78.708937px;}
.h20{height:78.813099px;}
.h2a{height:79.614660px;}
.h2b{height:88.981072px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:96.000000px;}
.w4{width:100.500000px;}
.wd{width:102.000000px;}
.wa{width:108.000000px;}
.w10{width:114.000000px;}
.w6{width:118.500000px;}
.w9{width:120.000000px;}
.w3{width:135.000000px;}
.w5{width:162.000000px;}
.w14{width:166.500000px;}
.w7{width:175.500000px;}
.w15{width:181.500000px;}
.w17{width:192.000000px;}
.w11{width:198.000000px;}
.wf{width:202.500000px;}
.w2{width:228.000000px;}
.w13{width:271.500000px;}
.wc{width:285.000000px;}
.we{width:315.000000px;}
.w12{width:352.500000px;}
.wb{width:367.500000px;}
.w16{width:451.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x17{left:2.686000px;}
.x7{left:5.340072px;}
.xb{left:6.599856px;}
.x38{left:9.218760px;}
.x2c{left:10.542722px;}
.x1f{left:11.895571px;}
.x30{left:18.154227px;}
.x25{left:20.011486px;}
.x1a{left:26.424271px;}
.x31{left:29.096854px;}
.x26{left:30.238979px;}
.x1c{left:36.011655px;}
.x3b{left:38.459760px;}
.x15{left:41.269647px;}
.x1d{left:43.206703px;}
.x23{left:45.749529px;}
.x3a{left:47.459760px;}
.x2e{left:48.602093px;}
.x16{left:52.231508px;}
.x18{left:53.756548px;}
.x36{left:55.457280px;}
.x34{left:58.096776px;}
.x1e{left:59.225153px;}
.x24{left:60.888497px;}
.x3{left:62.254500px;}
.x19{left:64.718409px;}
.x2f{left:67.218584px;}
.x22{left:68.661751px;}
.x2d{left:75.496397px;}
.x1b{left:81.641953px;}
.x39{left:84.899880px;}
.x4a{left:88.920000px;}
.x14{left:92.449857px;}
.xa{left:123.000000px;}
.x32{left:124.909788px;}
.x2{left:127.440000px;}
.x4{left:132.390036px;}
.x48{left:146.142650px;}
.x3c{left:152.189928px;}
.x44{left:159.892279px;}
.x46{left:173.756140px;}
.x40{left:177.075150px;}
.x27{left:180.750000px;}
.x2a{left:193.351238px;}
.x6{left:199.500000px;}
.xc{left:222.000000px;}
.x20{left:223.200072px;}
.x21{left:229.319820px;}
.x13{left:235.439928px;}
.x5{left:242.872920px;}
.x12{left:247.319820px;}
.x28{left:251.075726px;}
.x42{left:264.566257px;}
.x2b{left:277.948941px;}
.x43{left:327.271350px;}
.x35{left:328.500000px;}
.x41{left:345.633223px;}
.x45{left:347.758650px;}
.x29{left:360.306245px;}
.xd{left:382.500000px;}
.x4c{left:421.920000px;}
.x8{left:426.000000px;}
.x4d{left:434.520000px;}
.x33{left:441.000000px;}
.x47{left:443.510431px;}
.x3e{left:448.380000px;}
.xe{left:499.500000px;}
.x3d{left:529.380000px;}
.x9{left:559.500000px;}
.x3f{left:628.380000px;}
.x37{left:637.500000px;}
.x4b{left:662.759640px;}
.x4e{left:665.939880px;}
.x49{left:669.600000px;}
.xf{left:673.500000px;}
.x11{left:748.514160px;}
.x1{left:756.877350px;}
.x10{left:767.160000px;}
@media print{
.v6{vertical-align:-26.880000pt;}
.v7{vertical-align:-22.287756pt;}
.v9{vertical-align:-18.758278pt;}
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:7.680000pt;}
.v5{vertical-align:17.532407pt;}
.va{vertical-align:18.758278pt;}
.v8{vertical-align:19.800403pt;}
.v3{vertical-align:21.760000pt;}
.v4{vertical-align:24.320000pt;}
.v2{vertical-align:26.864640pt;}
.ls3b{letter-spacing:-2.292697pt;}
.ls39{letter-spacing:-2.284791pt;}
.ls34{letter-spacing:-2.192834pt;}
.ls35{letter-spacing:-2.171613pt;}
.ls33{letter-spacing:-2.051361pt;}
.ls38{letter-spacing:-2.031804pt;}
.ls3c{letter-spacing:-2.022234pt;}
.ls36{letter-spacing:-1.683531pt;}
.ls37{letter-spacing:-1.556205pt;}
.ls2c{letter-spacing:-1.040756pt;}
.ls2e{letter-spacing:-0.929742pt;}
.ls2d{letter-spacing:-0.901988pt;}
.ls3a{letter-spacing:-0.711527pt;}
.lsa{letter-spacing:-0.412160pt;}
.ls9{letter-spacing:-0.351616pt;}
.ls6{letter-spacing:-0.343040pt;}
.ls2b{letter-spacing:-0.293702pt;}
.ls7{letter-spacing:-0.205824pt;}
.ls22{letter-spacing:-0.195864pt;}
.ls1a{letter-spacing:-0.182528pt;}
.ls13{letter-spacing:-0.176640pt;}
.ls47{letter-spacing:-0.158976pt;}
.ls4b{letter-spacing:-0.147200pt;}
.ls12{letter-spacing:-0.141312pt;}
.ls8{letter-spacing:-0.137216pt;}
.ls4d{letter-spacing:-0.135424pt;}
.ls48{letter-spacing:-0.129536pt;}
.ls20{letter-spacing:-0.117760pt;}
.ls19{letter-spacing:-0.111872pt;}
.ls14{letter-spacing:-0.105984pt;}
.ls42{letter-spacing:-0.100096pt;}
.ls43{letter-spacing:-0.094208pt;}
.ls41{letter-spacing:-0.088320pt;}
.ls4a{letter-spacing:-0.082432pt;}
.ls46{letter-spacing:-0.076544pt;}
.ls1b{letter-spacing:-0.070656pt;}
.ls4c{letter-spacing:-0.064768pt;}
.ls49{letter-spacing:-0.058880pt;}
.ls45{letter-spacing:-0.052992pt;}
.ls4e{letter-spacing:-0.041216pt;}
.ls44{letter-spacing:-0.017664pt;}
.lsb{letter-spacing:-0.012800pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000512pt;}
.ls3f{letter-spacing:0.001280pt;}
.ls26{letter-spacing:0.009728pt;}
.ls3e{letter-spacing:0.010240pt;}
.ls1c{letter-spacing:0.011008pt;}
.ls0{letter-spacing:0.012800pt;}
.ls4f{letter-spacing:0.102400pt;}
.ls17{letter-spacing:0.106240pt;}
.ls1d{letter-spacing:0.111360pt;}
.ls18{letter-spacing:0.122496pt;}
.ls16{letter-spacing:0.141056pt;}
.lsc{letter-spacing:0.143616pt;}
.ls30{letter-spacing:0.173184pt;}
.ls1{letter-spacing:0.181632pt;}
.ls31{letter-spacing:0.211200pt;}
.ls4{letter-spacing:0.212267pt;}
.lsf{letter-spacing:0.212480pt;}
.ls15{letter-spacing:0.213248pt;}
.ls2{letter-spacing:0.213333pt;}
.ls27{letter-spacing:0.213376pt;}
.lse{letter-spacing:0.213760pt;}
.ls3{letter-spacing:0.213867pt;}
.ls21{letter-spacing:0.215424pt;}
.ls23{letter-spacing:0.257928pt;}
.ls2a{letter-spacing:0.316800pt;}
.ls1e{letter-spacing:1.164121pt;}
.ls2f{letter-spacing:1.263349pt;}
.ls24{letter-spacing:1.473331pt;}
.ls11{letter-spacing:6.546944pt;}
.ls32{letter-spacing:8.405760pt;}
.ls25{letter-spacing:15.311104pt;}
.ls1f{letter-spacing:23.465449pt;}
.ls3d{letter-spacing:29.994752pt;}
.lsd{letter-spacing:30.208000pt;}
.ls28{letter-spacing:36.411392pt;}
.ls29{letter-spacing:147.597331pt;}
.ls40{letter-spacing:2311.173888pt;}
.ws1{word-spacing:-21.440000pt;}
.ws0{word-spacing:-21.096960pt;}
.ws2{word-spacing:-21.088384pt;}
.ws9{word-spacing:-16.012800pt;}
.ws3{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.987200pt;}
.ws11{word-spacing:-14.720000pt;}
.ws13{word-spacing:-14.649344pt;}
.wse{word-spacing:-14.614016pt;}
.wsc{word-spacing:-14.578688pt;}
.wsd{word-spacing:-14.543360pt;}
.wsf{word-spacing:-14.537472pt;}
.ws42{word-spacing:-13.306880pt;}
.ws43{word-spacing:-13.218560pt;}
.ws45{word-spacing:-13.206784pt;}
.ws15{word-spacing:-13.189120pt;}
.ws47{word-spacing:-13.177344pt;}
.ws48{word-spacing:-13.171456pt;}
.ws46{word-spacing:-13.159680pt;}
.ws44{word-spacing:-13.124352pt;}
.ws4{word-spacing:-12.894720pt;}
.ws19{word-spacing:-10.876800pt;}
.wsa{word-spacing:-10.848000pt;}
.ws16{word-spacing:-10.775424pt;}
.ws27{word-spacing:-10.771200pt;}
.ws6{word-spacing:-10.741632pt;}
.ws26{word-spacing:-10.733184pt;}
.ws7{word-spacing:-10.703616pt;}
.ws8{word-spacing:-10.560000pt;}
.ws18{word-spacing:-1.517978pt;}
.ws17{word-spacing:-1.208895pt;}
.ws28{word-spacing:-0.253440pt;}
.ws12{word-spacing:-0.178176pt;}
.ws14{word-spacing:-0.159616pt;}
.ws3d{word-spacing:-0.079059pt;}
.ws41{word-spacing:-0.074898pt;}
.ws2a{word-spacing:-0.070737pt;}
.ws1d{word-spacing:-0.069384pt;}
.ws10{word-spacing:-0.037120pt;}
.wsb{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.632468pt;}
.ws22{word-spacing:0.832604pt;}
.ws23{word-spacing:0.860358pt;}
.ws1e{word-spacing:0.971372pt;}
.ws35{word-spacing:1.485468pt;}
.ws32{word-spacing:1.612794pt;}
.ws3e{word-spacing:1.947336pt;}
.ws38{word-spacing:1.952745pt;}
.ws2b{word-spacing:1.980624pt;}
.ws2f{word-spacing:2.100876pt;}
.ws2e{word-spacing:2.122097pt;}
.ws39{word-spacing:2.205732pt;}
.ws3b{word-spacing:2.213638pt;}
.ws25{word-spacing:20.095499pt;}
.ws3f{word-spacing:77.587406pt;}
.ws1a{word-spacing:175.307234pt;}
.ws31{word-spacing:318.171574pt;}
.ws20{word-spacing:319.444860pt;}
.ws33{word-spacing:393.461566pt;}
.ws36{word-spacing:394.857239pt;}
.ws40{word-spacing:415.482685pt;}
.ws34{word-spacing:445.922461pt;}
.ws1b{word-spacing:459.178357pt;}
.ws30{word-spacing:653.368362pt;}
.ws24{word-spacing:730.964712pt;}
.ws2d{word-spacing:816.433619pt;}
.ws21{word-spacing:873.946940pt;}
.ws2c{word-spacing:1036.227460pt;}
.ws1f{word-spacing:1110.953553pt;}
.ws29{word-spacing:1114.965062pt;}
.ws1c{word-spacing:1187.369993pt;}
.ws3c{word-spacing:1357.718016pt;}
.ws37{word-spacing:1382.161200pt;}
._35{margin-left:-2474.880000pt;}
._40{margin-left:-2468.921344pt;}
._2e{margin-left:-2467.980544pt;}
._96{margin-left:-2466.944000pt;}
._fc{margin-left:-2464.507904pt;}
._142{margin-left:-2462.294784pt;}
._90{margin-left:-2458.984960pt;}
._138{margin-left:-2456.351744pt;}
._117{margin-left:-2453.178112pt;}
._42{margin-left:-2451.660544pt;}
._ed{margin-left:-2446.607104pt;}
._145{margin-left:-2443.341824pt;}
._161{margin-left:-2441.752064pt;}
._15a{margin-left:-2440.483584pt;}
._d{margin-left:-2438.694400pt;}
._1f{margin-left:-2437.773824pt;}
._10d{margin-left:-2436.685824pt;}
._93{margin-left:-2434.944000pt;}
._151{margin-left:-2433.758208pt;}
._10a{margin-left:-2432.458240pt;}
._f9{margin-left:-2430.709504pt;}
._f0{margin-left:-2427.114496pt;}
._14b{margin-left:-2425.307648pt;}
._148{margin-left:-2424.304640pt;}
._22{margin-left:-2422.783744pt;}
._123{margin-left:-2416.578304pt;}
._1{margin-left:-2414.888960pt;}
._131{margin-left:-2413.604864pt;}
._102{margin-left:-2411.476736pt;}
._6{margin-left:-2409.152000pt;}
._14a{margin-left:-2407.864064pt;}
._110{margin-left:-2406.480384pt;}
._14c{margin-left:-2403.183104pt;}
._115{margin-left:-2400.082176pt;}
._10e{margin-left:-2398.138368pt;}
._105{margin-left:-2394.052096pt;}
._11f{margin-left:-2390.733824pt;}
._12d{margin-left:-2388.845824pt;}
._ff{margin-left:-2387.457536pt;}
._104{margin-left:-2386.503680pt;}
._155{margin-left:-2382.280704pt;}
._113{margin-left:-2377.568256pt;}
._100{margin-left:-2376.258560pt;}
._158{margin-left:-2372.474624pt;}
._126{margin-left:-2371.175936pt;}
._14f{margin-left:-2369.150464pt;}
._e1{margin-left:-2367.870720pt;}
._11a{margin-left:-2365.651712pt;}
._16d{margin-left:-2363.733504pt;}
._165{margin-left:-2360.350464pt;}
._f6{margin-left:-2355.549184pt;}
._f3{margin-left:-2349.749504pt;}
._136{margin-left:-2346.559488pt;}
._12e{margin-left:-2345.627904pt;}
._12b{margin-left:-2344.571904pt;}
._2a{margin-left:-2342.975744pt;}
._15e{margin-left:-2340.299264pt;}
._13e{margin-left:-2336.972544pt;}
._fa{margin-left:-2335.847936pt;}
._1e{margin-left:-2333.887744pt;}
._121{margin-left:-2332.946432pt;}
._11c{margin-left:-2328.582144pt;}
._14d{margin-left:-2327.688448pt;}
._d1{margin-left:-2322.751744pt;}
._16a{margin-left:-2318.798848pt;}
._101{margin-left:-2317.459712pt;}
._f4{margin-left:-2312.634880pt;}
._157{margin-left:-2307.444224pt;}
._fe{margin-left:-2302.262784pt;}
._11d{margin-left:-2299.439104pt;}
._99{margin-left:-2286.079744pt;}
._146{margin-left:-2285.037824pt;}
._119{margin-left:-2279.211264pt;}
._13a{margin-left:-2274.559744pt;}
._124{margin-left:-2271.244800pt;}
._16f{margin-left:-2265.041408pt;}
._114{margin-left:-2226.897664pt;}
._150{margin-left:-2222.333184pt;}
._163{margin-left:-2206.700544pt;}
._129{margin-left:-2205.110784pt;}
._13c{margin-left:-2198.194944pt;}
._e2{margin-left:-2191.334144pt;}
._154{margin-left:-2188.584448pt;}
._168{margin-left:-2184.738304pt;}
._32{margin-left:-2173.311744pt;}
._12a{margin-left:-2170.639104pt;}
._162{margin-left:-2162.564608pt;}
._e9{margin-left:-2151.935744pt;}
._15f{margin-left:-2138.964224pt;}
._ce{margin-left:-2128.000000pt;}
._167{margin-left:-2118.823424pt;}
._e0{margin-left:-2112.293120pt;}
._f1{margin-left:-2111.256064pt;}
._140{margin-left:-2106.404864pt;}
._d9{margin-left:-2103.678720pt;}
._134{margin-left:-2067.446784pt;}
._139{margin-left:-2043.294208pt;}
._27{margin-left:-2028.220160pt;}
._88{margin-left:-2016.831744pt;}
._127{margin-left:-2010.306304pt;}
._1b{margin-left:-2001.510144pt;}
._107{margin-left:-1992.975360pt;}
._152{margin-left:-1982.467840pt;}
._156{margin-left:-1962.254336pt;}
._120{margin-left:-1946.601984pt;}
._30{margin-left:-1932.350720pt;}
._8a{margin-left:-1928.063744pt;}
._41{margin-left:-1915.711744pt;}
._d8{margin-left:-1910.143744pt;}
._4c{margin-left:-1890.751744pt;}
._16b{margin-left:-1888.801536pt;}
._d0{margin-left:-1862.143744pt;}
._f7{margin-left:-1858.587648pt;}
._111{margin-left:-1824.459520pt;}
._13b{margin-left:-1819.122944pt;}
._2c{margin-left:-1801.598720pt;}
._132{margin-left:-1787.341476pt;}
._44{margin-left:-1773.439744pt;}
._48{margin-left:-1764.671744pt;}
._ee{margin-left:-1752.594432pt;}
._f5{margin-left:-1737.309184pt;}
._9{margin-left:-1713.088000pt;}
._8c{margin-left:-1711.295744pt;}
._91{margin-left:-1703.167744pt;}
._8e{margin-left:-1701.439744pt;}
._fd{margin-left:-1683.297792pt;}
._15c{margin-left:-1673.807104pt;}
._16e{margin-left:-1665.594624pt;}
._149{margin-left:-1646.070016pt;}
._109{margin-left:-1620.228864pt;}
._166{margin-left:-1613.334784pt;}
._2f{margin-left:-1606.271744pt;}
._106{margin-left:-1583.541504pt;}
._5d{margin-left:-1572.479744pt;}
._8b{margin-left:-1544.191744pt;}
._10b{margin-left:-1522.173440pt;}
._122{margin-left:-1519.570944pt;}
._55{margin-left:-1517.503744pt;}
._108{margin-left:-1507.529984pt;}
._d7{margin-left:-1503.167744pt;}
._4f{margin-left:-1490.815744pt;}
._10c{margin-left:-1489.512704pt;}
._153{margin-left:-1483.300864pt;}
._57{margin-left:-1466.431360pt;}
._128{margin-left:-1464.959744pt;}
._26{margin-left:-1459.519744pt;}
._f2{margin-left:-1456.423424pt;}
._14e{margin-left:-1448.062464pt;}
._11b{margin-left:-1446.942464pt;}
._164{margin-left:-1434.696704pt;}
._13d{margin-left:-1428.842752pt;}
._db{margin-left:-1424.959744pt;}
._5a{margin-left:-1423.743360pt;}
._87{margin-left:-1418.175744pt;}
._85{margin-left:-1398.356224pt;}
._37{margin-left:-1388.414720pt;}
._135{margin-left:-1385.648384pt;}
._125{margin-left:-1375.933184pt;}
._12c{margin-left:-1365.453824pt;}
._137{margin-left:-1356.033024pt;}
._133{margin-left:-1352.646144pt;}
._de{margin-left:-1344.959744pt;}
._143{margin-left:-1327.239424pt;}
._144{margin-left:-1289.880064pt;}
._160{margin-left:-1261.017088pt;}
._13f{margin-left:-1247.080192pt;}
._169{margin-left:-1221.078784pt;}
._4d{margin-left:-1210.111744pt;}
._d4{margin-left:-1200.000768pt;}
._e3{margin-left:-1195.711744pt;}
._15d{margin-left:-1185.103104pt;}
._10f{margin-left:-1170.266624pt;}
._15b{margin-left:-1169.170176pt;}
._34{margin-left:-1144.255744pt;}
._20{margin-left:-1141.439744pt;}
._9d{margin-left:-1133.567744pt;}
._159{margin-left:-1093.897984pt;}
._3e{margin-left:-1090.623744pt;}
._e8{margin-left:-1087.359744pt;}
._f8{margin-left:-1082.975744pt;}
._3c{margin-left:-1080.063744pt;}
._171{margin-left:-1070.357760pt;}
._ef{margin-left:-1064.958464pt;}
._118{margin-left:-1042.283776pt;}
._147{margin-left:-1034.429184pt;}
._5f{margin-left:-1032.238720pt;}
._b9{margin-left:-1017.741180pt;}
._16c{margin-left:-1014.027264pt;}
._3f{margin-left:-982.591744pt;}
._33{margin-left:-977.215744pt;}
._d5{margin-left:-971.711744pt;}
._eb{margin-left:-970.047744pt;}
._df{margin-left:-953.983744pt;}
._112{margin-left:-951.378944pt;}
._3a{margin-left:-948.351744pt;}
._cb{margin-left:-939.711744pt;}
._e4{margin-left:-927.359744pt;}
._dc{margin-left:-902.374144pt;}
._25{margin-left:-898.175744pt;}
._28{margin-left:-871.295744pt;}
._130{margin-left:-837.669888pt;}
._11e{margin-left:-825.228544pt;}
._16{margin-left:-819.647744pt;}
._116{margin-left:-813.658624pt;}
._7{margin-left:-797.312000pt;}
._49{margin-left:-772.735744pt;}
._8d{margin-left:-769.023744pt;}
._45{margin-left:-765.695744pt;}
._9e{margin-left:-745.681149pt;}
._d3{margin-left:-726.399744pt;}
._15{margin-left:-716.544000pt;}
._e6{margin-left:-708.607744pt;}
._ea{margin-left:-701.631744pt;}
._d6{margin-left:-683.839744pt;}
._da{margin-left:-680.191744pt;}
._c0{margin-left:-664.785569pt;}
._ab{margin-left:-655.423796pt;}
._170{margin-left:-648.235264pt;}
._17{margin-left:-632.960128pt;}
._dd{margin-left:-619.775744pt;}
._141{margin-left:-618.500864pt;}
._3b{margin-left:-614.591744pt;}
._43{margin-left:-600.319744pt;}
._fb{margin-left:-588.766464pt;}
._53{margin-left:-586.111744pt;}
._39{margin-left:-580.671744pt;}
._62{margin-left:-577.979136pt;}
._29{margin-left:-561.919744pt;}
._12f{margin-left:-559.032064pt;}
._e7{margin-left:-531.071744pt;}
._5e{margin-left:-525.567744pt;}
._4a{margin-left:-522.047744pt;}
._63{margin-left:-502.022756pt;}
._ec{margin-left:-498.815744pt;}
._c1{margin-left:-480.139502pt;}
._4{margin-left:-468.925952pt;}
._86{margin-left:-463.423744pt;}
._46{margin-left:-452.735744pt;}
._c7{margin-left:-439.727342pt;}
._c6{margin-left:-429.257334pt;}
._79{margin-left:-406.278796pt;}
._c8{margin-left:-402.725547pt;}
._b5{margin-left:-400.745882pt;}
._cc{margin-left:-399.487744pt;}
._a{margin-left:-379.584000pt;}
._b8{margin-left:-364.071574pt;}
._bf{margin-left:-356.900708pt;}
._65{margin-left:-353.590282pt;}
._ca{margin-left:-348.154214pt;}
._9f{margin-left:-322.069806pt;}
._64{margin-left:-302.373931pt;}
._84{margin-left:-301.259548pt;}
._77{margin-left:-299.547358pt;}
._aa{margin-left:-297.937214pt;}
._bd{margin-left:-287.697016pt;}
._76{margin-left:-276.944828pt;}
._83{margin-left:-274.825809pt;}
._b0{margin-left:-273.346578pt;}
._103{margin-left:-271.815424pt;}
._6e{margin-left:-264.002933pt;}
._7e{margin-left:-262.813724pt;}
._bc{margin-left:-256.965073pt;}
._6d{margin-left:-253.989064pt;}
._7d{margin-left:-251.748816pt;}
._b4{margin-left:-249.955985pt;}
._b3{margin-left:-247.785401pt;}
._a9{margin-left:-246.741144pt;}
._b1{margin-left:-234.848720pt;}
._c5{margin-left:-228.850459pt;}
._ae{margin-left:-224.899230pt;}
._7a{margin-left:-223.084723pt;}
._b7{margin-left:-217.342283pt;}
._a7{margin-left:-214.372480pt;}
._be{margin-left:-212.006352pt;}
._172{margin-left:-210.933504pt;}
._31{margin-left:-200.319744pt;}
._c4{margin-left:-198.177165pt;}
._74{margin-left:-196.552460pt;}
._a4{margin-left:-195.623577pt;}
._b2{margin-left:-193.264416pt;}
._72{margin-left:-192.147534pt;}
._78{margin-left:-180.832828pt;}
._75{margin-left:-176.720371pt;}
._81{margin-left:-175.046969pt;}
._2d{margin-left:-170.879744pt;}
._a6{margin-left:-158.673856pt;}
._af{margin-left:-153.230833pt;}
._a8{margin-left:-152.128349pt;}
._7f{margin-left:-146.314010pt;}
._c2{margin-left:-144.990962pt;}
._6b{margin-left:-142.857199pt;}
._7c{margin-left:-141.417040pt;}
._73{margin-left:-132.147104pt;}
._c3{margin-left:-126.984859pt;}
._a5{margin-left:-122.371794pt;}
._71{margin-left:-121.088127pt;}
._69{margin-left:-118.079793pt;}
._6f{margin-left:-116.764063pt;}
._82{margin-left:-115.532481pt;}
._bb{margin-left:-114.173093pt;}
._ba{margin-left:-112.170644pt;}
._c9{margin-left:-110.648616pt;}
._80{margin-left:-107.576663pt;}
._67{margin-left:-104.985774pt;}
._66{margin-left:-103.379450pt;}
._70{margin-left:-102.290478pt;}
._6a{margin-left:-101.118764pt;}
._68{margin-left:-98.178022pt;}
._7b{margin-left:-93.141196pt;}
._a2{margin-left:-86.957520pt;}
._b6{margin-left:-76.341768pt;}
._ac{margin-left:-68.275766pt;}
._a0{margin-left:-67.246452pt;}
._6c{margin-left:-63.141216pt;}
._a3{margin-left:-57.786786pt;}
._a1{margin-left:-55.199928pt;}
._ad{margin-left:-51.054387pt;}
._50{margin-left:-4.742923pt;}
._51{margin-left:-3.313267pt;}
._52{margin-left:-1.948252pt;}
._3{margin-left:-0.943360pt;}
._0{width:0.943360pt;}
._19{width:1.894400pt;}
._1a{width:2.956800pt;}
._14{width:3.904000pt;}
._13{width:5.312000pt;}
._1c{width:6.534656pt;}
._c{width:7.424000pt;}
._18{width:8.552960pt;}
._10{width:10.240000pt;}
._8{width:11.232000pt;}
._b{width:12.467200pt;}
._e{width:13.600000pt;}
._11{width:14.598400pt;}
._5{width:17.024000pt;}
._1d{width:17.976704pt;}
._f{width:18.899200pt;}
._3d{width:19.821312pt;}
._61{width:21.120000pt;}
._38{width:22.772992pt;}
._89{width:23.981568pt;}
._12{width:24.896000pt;}
._23{width:26.809600pt;}
._d2{width:27.735680pt;}
._cf{width:28.651904pt;}
._cd{width:29.944704pt;}
._24{width:31.414272pt;}
._2{width:35.676160pt;}
._21{width:38.464000pt;}
._47{width:45.728000pt;}
._36{width:116.286976pt;}
._2b{width:141.118976pt;}
._56{width:172.799616pt;}
._9a{width:362.880000pt;}
._94{width:591.310336pt;}
._97{width:645.019136pt;}
._59{width:681.867520pt;}
._98{width:716.005120pt;}
._8f{width:738.920960pt;}
._95{width:842.609920pt;}
._9b{width:855.306496pt;}
._5c{width:974.987520pt;}
._92{width:1002.880000pt;}
._5b{width:1185.546496pt;}
._9c{width:1272.693760pt;}
._58{width:1478.666496pt;}
._4b{width:1750.294400pt;}
._4e{width:1792.534016pt;}
._60{width:1814.294400pt;}
._54{width:1836.053504pt;}
._e5{width:2220.798976pt;}
.fs14{font-size:27.144346pt;}
.fsc{font-size:27.295064pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:42.240000pt;}
.fs13{font-size:43.563768pt;}
.fsb{font-size:43.645438pt;}
.fsf{font-size:44.357990pt;}
.fs9{font-size:44.646402pt;}
.fs7{font-size:44.773879pt;}
.fs15{font-size:45.332805pt;}
.fs1a{font-size:47.999433pt;}
.fs4{font-size:48.000000pt;}
.fs17{font-size:50.666066pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs12{font-size:68.060887pt;}
.fsa{font-size:68.302729pt;}
.fs10{font-size:69.383701pt;}
.fs8{font-size:69.710352pt;}
.fs6{font-size:69.951477pt;}
.fs16{font-size:70.736577pt;}
.fs19{font-size:74.897540pt;}
.fsd{font-size:76.536495pt;}
.fs18{font-size:79.058511pt;}
.fs1{font-size:85.760000pt;}
.fse{font-size:100.763183pt;}
.fs11{font-size:100.896532pt;}
.y0{bottom:0.000000pt;}
.yd8{bottom:1.780072pt;}
.yeb{bottom:1.919946pt;}
.ye5{bottom:1.986220pt;}
.yb9{bottom:2.041394pt;}
.ybf{bottom:2.225479pt;}
.y11c{bottom:2.670463pt;}
.y121{bottom:2.984635pt;}
.y103{bottom:3.680000pt;}
.yfe{bottom:4.053333pt;}
.yf9{bottom:4.213333pt;}
.yde{bottom:4.402755pt;}
.yfa{bottom:4.426667pt;}
.yd5{bottom:4.516245pt;}
.y100{bottom:4.586667pt;}
.yfb{bottom:4.800000pt;}
.yf7{bottom:5.173333pt;}
.yf5{bottom:5.226667pt;}
.yf3{bottom:5.280000pt;}
.y5e{bottom:5.546667pt;}
.y53{bottom:5.813333pt;}
.y56{bottom:6.026667pt;}
.y61{bottom:6.080000pt;}
.ye9{bottom:6.190287pt;}
.ye3{bottom:6.223357pt;}
.y59{bottom:6.240000pt;}
.y64{bottom:6.293333pt;}
.yb7{bottom:6.396229pt;}
.y67{bottom:6.506667pt;}
.ybd{bottom:6.573687pt;}
.y50{bottom:6.666667pt;}
.y123{bottom:7.517118pt;}
.y54{bottom:7.733333pt;}
.y5f{bottom:7.786667pt;}
.y57{bottom:7.946667pt;}
.y62{bottom:8.000000pt;}
.y65{bottom:8.213333pt;}
.y5a{bottom:8.480000pt;}
.y51{bottom:8.586667pt;}
.y68{bottom:8.746667pt;}
.yd3{bottom:8.768633pt;}
.ye0{bottom:8.772307pt;}
.ydd{bottom:8.805377pt;}
.ydc{bottom:8.937792pt;}
.yee{bottom:12.479785pt;}
.yda{bottom:14.998820pt;}
.ye7{bottom:15.193686pt;}
.yc1{bottom:15.783580pt;}
.yd7{bottom:17.735657pt;}
.ye2{bottom:19.431490pt;}
.yb6{bottom:19.971256pt;}
.y78{bottom:20.106667pt;}
.ybc{bottom:20.166682pt;}
.y6a{bottom:20.320000pt;}
.y4e{bottom:20.853333pt;}
.y76{bottom:21.333333pt;}
.y5c{bottom:21.386667pt;}
.yd2{bottom:22.020844pt;}
.yed{bottom:26.118899pt;}
.yc0{bottom:26.774435pt;}
.yd9{bottom:28.416092pt;}
.yec{bottom:28.832533pt;}
.ye6{bottom:29.428600pt;}
.yba{bottom:30.246065pt;}
.yd6{bottom:31.118402pt;}
.ybe{bottom:31.156158pt;}
.yea{bottom:33.070337pt;}
.ye4{bottom:33.665070pt;}
.yb8{bottom:34.600215pt;}
.yd4{bottom:35.403590pt;}
.y1e{bottom:51.200000pt;}
.y1{bottom:69.120000pt;}
.y86{bottom:98.880000pt;}
.y107{bottom:101.333333pt;}
.y4a{bottom:103.360000pt;}
.y4f{bottom:105.333333pt;}
.ya6{bottom:111.040000pt;}
.y18{bottom:113.280000pt;}
.y144{bottom:118.720000pt;}
.y106{bottom:124.000000pt;}
.yd0{bottom:124.160000pt;}
.y11a{bottom:125.120000pt;}
.y4d{bottom:126.666667pt;}
.y34{bottom:126.720000pt;}
.y153{bottom:127.040000pt;}
.y1b2{bottom:127.680000pt;}
.y16f{bottom:128.640000pt;}
.y145{bottom:134.400000pt;}
.y85{bottom:135.680000pt;}
.y49{bottom:140.160000pt;}
.y1ae{bottom:144.640000pt;}
.y7d{bottom:145.280000pt;}
.y105{bottom:145.333333pt;}
.y191{bottom:145.600000pt;}
.y16e{bottom:146.560000pt;}
.ya5{bottom:147.840000pt;}
.y17{bottom:150.080000pt;}
.y12d{bottom:153.280000pt;}
.y143{bottom:155.520000pt;}
.y154{bottom:158.720000pt;}
.ycf{bottom:160.960000pt;}
.yb4{bottom:161.280000pt;}
.y119{bottom:161.920000pt;}
.y33{bottom:163.520000pt;}
.y152{bottom:163.840000pt;}
.y16d{bottom:164.480000pt;}
.y104{bottom:166.666667pt;}
.y84{bottom:172.480000pt;}
.y48{bottom:176.960000pt;}
.y190{bottom:181.440000pt;}
.y7c{bottom:182.080000pt;}
.ya4{bottom:184.640000pt;}
.y16{bottom:186.880000pt;}
.y102{bottom:188.000000pt;}
.y12c{bottom:190.080000pt;}
.y142{bottom:192.320000pt;}
.y155{bottom:196.800000pt;}
.yb3{bottom:198.080000pt;}
.y1ad{bottom:199.360000pt;}
.y4c{bottom:200.000000pt;}
.y32{bottom:200.320000pt;}
.y151{bottom:200.640000pt;}
.y16c{bottom:200.960000pt;}
.ye8{bottom:207.858800pt;}
.y101{bottom:208.000000pt;}
.y83{bottom:209.280000pt;}
.y118{bottom:211.840000pt;}
.y47{bottom:213.760000pt;}
.y1ac{bottom:216.960000pt;}
.y18f{bottom:217.920000pt;}
.y7b{bottom:218.880000pt;}
.y133{bottom:221.120000pt;}
.ya3{bottom:221.440000pt;}
.y15{bottom:223.680000pt;}
.y12b{bottom:226.880000pt;}
.yce{bottom:227.840000pt;}
.y141{bottom:229.120000pt;}
.yff{bottom:229.333333pt;}
.y18e{bottom:235.840000pt;}
.y16b{bottom:236.800000pt;}
.y31{bottom:237.120000pt;}
.y150{bottom:237.440000pt;}
.ybb{bottom:244.944800pt;}
.y82{bottom:246.080000pt;}
.y46{bottom:250.560000pt;}
.yfd{bottom:250.666667pt;}
.y1ab{bottom:253.760000pt;}
.y1b1{bottom:254.400000pt;}
.y7a{bottom:255.680000pt;}
.y132{bottom:257.920000pt;}
.ya2{bottom:258.240000pt;}
.y122{bottom:258.715600pt;}
.y14{bottom:260.480000pt;}
.y12a{bottom:263.680000pt;}
.yb2{bottom:264.960000pt;}
.y117{bottom:266.560000pt;}
.yfc{bottom:270.666667pt;}
.y1aa{bottom:271.680000pt;}
.y18d{bottom:272.320000pt;}
.y16a{bottom:273.600000pt;}
.y30{bottom:273.920000pt;}
.y14f{bottom:274.240000pt;}
.y140{bottom:279.360000pt;}
.y45{bottom:287.360000pt;}
.y1a9{bottom:289.600000pt;}
.y18c{bottom:290.240000pt;}
.ycd{bottom:290.880000pt;}
.y169{bottom:291.520000pt;}
.y131{bottom:294.720000pt;}
.ya1{bottom:295.040000pt;}
.y81{bottom:296.000000pt;}
.y13{bottom:297.280000pt;}
.y129{bottom:300.480000pt;}
.y79{bottom:305.920000pt;}
.y1b3{bottom:308.160000pt;}
.y168{bottom:309.440000pt;}
.y2f{bottom:310.720000pt;}
.y14e{bottom:311.040000pt;}
.y120{bottom:314.447333pt;}
.y13f{bottom:316.160000pt;}
.y77{bottom:321.333333pt;}
.y116{bottom:322.560000pt;}
.y8e{bottom:324.160000pt;}
.y1a8{bottom:326.080000pt;}
.yb1{bottom:326.720000pt;}
.y130{bottom:331.520000pt;}
.y12{bottom:334.080000pt;}
.y44{bottom:337.280000pt;}
.ycc{bottom:341.120000pt;}
.yf8{bottom:342.666667pt;}
.y80{bottom:342.720000pt;}
.y1a7{bottom:344.000000pt;}
.y18b{bottom:344.640000pt;}
.ya0{bottom:344.960000pt;}
.y167{bottom:345.920000pt;}
.y2e{bottom:347.520000pt;}
.y13e{bottom:352.960000pt;}
.y75{bottom:354.666667pt;}
.y8d{bottom:360.960000pt;}
.y14d{bottom:361.280000pt;}
.y1a6{bottom:361.920000pt;}
.y18a{bottom:362.560000pt;}
.yb0{bottom:363.520000pt;}
.y166{bottom:363.840000pt;}
.yf6{bottom:366.666667pt;}
.y12f{bottom:368.320000pt;}
.y11{bottom:370.880000pt;}
.y43{bottom:374.080000pt;}
.y115{bottom:374.720000pt;}
.ycb{bottom:377.920000pt;}
.y1b0{bottom:380.480000pt;}
.y9f{bottom:381.760000pt;}
.y2d{bottom:384.320000pt;}
.yf4{bottom:389.333333pt;}
.y13d{bottom:389.760000pt;}
.y8c{bottom:397.760000pt;}
.y1a5{bottom:398.400000pt;}
.y189{bottom:399.040000pt;}
.yaf{bottom:400.320000pt;}
.y10{bottom:407.680000pt;}
.y42{bottom:410.880000pt;}
.y14c{bottom:411.520000pt;}
.yf2{bottom:412.000000pt;}
.y1a4{bottom:416.320000pt;}
.y188{bottom:416.960000pt;}
.y165{bottom:418.240000pt;}
.y9e{bottom:418.560000pt;}
.y2c{bottom:421.120000pt;}
.y11f{bottom:421.642667pt;}
.ye1{bottom:424.647867pt;}
.y13c{bottom:426.560000pt;}
.y74{bottom:428.160000pt;}
.y114{bottom:429.440000pt;}
.y1a3{bottom:434.240000pt;}
.y8b{bottom:434.560000pt;}
.y187{bottom:434.880000pt;}
.y164{bottom:436.160000pt;}
.yf{bottom:444.480000pt;}
.y41{bottom:447.680000pt;}
.y14b{bottom:448.320000pt;}
.yae{bottom:450.560000pt;}
.y186{bottom:452.800000pt;}
.y9d{bottom:455.360000pt;}
.y2b{bottom:457.920000pt;}
.y13b{bottom:463.360000pt;}
.y1a2{bottom:470.720000pt;}
.y8a{bottom:471.360000pt;}
.y163{bottom:472.640000pt;}
.y11e{bottom:476.312000pt;}
.ye{bottom:481.280000pt;}
.y113{bottom:484.160000pt;}
.y40{bottom:484.480000pt;}
.y14a{bottom:485.120000pt;}
.yad{bottom:487.360000pt;}
.y1a1{bottom:488.640000pt;}
.y73{bottom:488.960000pt;}
.y185{bottom:489.600000pt;}
.y162{bottom:490.560000pt;}
.y9c{bottom:492.160000pt;}
.y2a{bottom:494.720000pt;}
.y13a{bottom:500.160000pt;}
.y12e{bottom:502.080000pt;}
.y184{bottom:507.520000pt;}
.yca{bottom:507.840000pt;}
.y89{bottom:508.160000pt;}
.y161{bottom:508.480000pt;}
.yd{bottom:518.080000pt;}
.y3f{bottom:521.280000pt;}
.y1a0{bottom:525.120000pt;}
.y183{bottom:525.440000pt;}
.y72{bottom:525.760000pt;}
.y149{bottom:527.360000pt;}
.y9b{bottom:528.960000pt;}
.y11d{bottom:530.981200pt;}
.y29{bottom:531.520000pt;}
.yb5{bottom:533.994267pt;}
.y128{bottom:534.720000pt;}
.y147{bottom:536.320000pt;}
.y139{bottom:536.960000pt;}
.y112{bottom:538.880000pt;}
.y19f{bottom:543.040000pt;}
.y88{bottom:544.960000pt;}
.yac{bottom:553.920000pt;}
.ydf{bottom:554.510000pt;}
.yc{bottom:554.880000pt;}
.y3e{bottom:558.080000pt;}
.y19e{bottom:560.960000pt;}
.y182{bottom:561.920000pt;}
.y71{bottom:562.560000pt;}
.y160{bottom:562.880000pt;}
.yc9{bottom:563.840000pt;}
.y9a{bottom:565.760000pt;}
.y28{bottom:568.320000pt;}
.y127{bottom:571.520000pt;}
.y138{bottom:573.760000pt;}
.y181{bottom:579.840000pt;}
.y15f{bottom:580.800000pt;}
.y87{bottom:581.760000pt;}
.y111{bottom:589.120000pt;}
.yb{bottom:591.680000pt;}
.y3d{bottom:594.880000pt;}
.y180{bottom:597.760000pt;}
.y70{bottom:599.360000pt;}
.y99{bottom:602.560000pt;}
.y27{bottom:605.120000pt;}
.y126{bottom:608.320000pt;}
.yc8{bottom:613.760000pt;}
.y19d{bottom:615.680000pt;}
.y1b4{bottom:616.320000pt;}
.y15e{bottom:617.600000pt;}
.yaa{bottom:618.560000pt;}
.y137{bottom:623.680000pt;}
.ya{bottom:628.480000pt;}
.y3c{bottom:631.680000pt;}
.y19c{bottom:633.600000pt;}
.y17f{bottom:634.240000pt;}
.y15d{bottom:635.520000pt;}
.y11b{bottom:635.780667pt;}
.y6f{bottom:636.160000pt;}
.y98{bottom:639.360000pt;}
.y26{bottom:641.920000pt;}
.y110{bottom:643.520000pt;}
.y125{bottom:645.120000pt;}
.y17e{bottom:652.160000pt;}
.y15c{bottom:653.440000pt;}
.yab{bottom:655.360000pt;}
.ydb{bottom:660.642800pt;}
.y3b{bottom:668.480000pt;}
.yc7{bottom:669.760000pt;}
.y19b{bottom:670.080000pt;}
.y6e{bottom:672.960000pt;}
.y136{bottom:673.920000pt;}
.y9{bottom:678.720000pt;}
.y124{bottom:681.920000pt;}
.y19a{bottom:688.000000pt;}
.y17d{bottom:688.640000pt;}
.y97{bottom:689.600000pt;}
.y15b{bottom:689.920000pt;}
.y25{bottom:692.160000pt;}
.y10f{bottom:693.760000pt;}
.y3a{bottom:705.280000pt;}
.y199{bottom:705.920000pt;}
.y17c{bottom:706.560000pt;}
.y15a{bottom:707.840000pt;}
.y6d{bottom:709.760000pt;}
.y135{bottom:710.720000pt;}
.yf1{bottom:715.520000pt;}
.ya9{bottom:718.720000pt;}
.yc6{bottom:720.000000pt;}
.y17b{bottom:724.480000pt;}
.y159{bottom:725.760000pt;}
.y8{bottom:728.960000pt;}
.y96{bottom:739.840000pt;}
.y39{bottom:742.080000pt;}
.y198{bottom:742.400000pt;}
.y10e{bottom:744.000000pt;}
.y6c{bottom:746.560000pt;}
.y134{bottom:747.520000pt;}
.yf0{bottom:752.320000pt;}
.ya8{bottom:755.520000pt;}
.y197{bottom:760.320000pt;}
.y17a{bottom:760.960000pt;}
.y158{bottom:762.240000pt;}
.y7{bottom:765.760000pt;}
.yc5{bottom:770.240000pt;}
.y95{bottom:776.640000pt;}
.y196{bottom:778.240000pt;}
.y38{bottom:778.880000pt;}
.y157{bottom:780.160000pt;}
.y10d{bottom:780.800000pt;}
.yef{bottom:789.120000pt;}
.ya7{bottom:792.320000pt;}
.y148{bottom:794.240000pt;}
.y6b{bottom:796.480000pt;}
.y179{bottom:796.800000pt;}
.y156{bottom:798.080000pt;}
.y146{bottom:800.000000pt;}
.y24{bottom:802.560000pt;}
.yc4{bottom:807.040000pt;}
.y69{bottom:812.000000pt;}
.y94{bottom:813.440000pt;}
.y195{bottom:814.720000pt;}
.y6{bottom:815.680000pt;}
.y10c{bottom:817.600000pt;}
.y4b{bottom:829.120000pt;}
.y194{bottom:832.640000pt;}
.y178{bottom:833.600000pt;}
.y23{bottom:839.040000pt;}
.yc3{bottom:843.840000pt;}
.y66{bottom:845.333333pt;}
.y1af{bottom:851.200000pt;}
.y177{bottom:851.520000pt;}
.y5{bottom:852.480000pt;}
.y10b{bottom:854.400000pt;}
.y93{bottom:863.360000pt;}
.y37{bottom:865.920000pt;}
.y63{bottom:866.666667pt;}
.y176{bottom:869.120000pt;}
.y22{bottom:875.840000pt;}
.y193{bottom:887.040000pt;}
.y60{bottom:888.000000pt;}
.y7f{bottom:889.280000pt;}
.yd1{bottom:890.499467pt;}
.y10a{bottom:891.200000pt;}
.y92{bottom:900.160000pt;}
.y36{bottom:902.720000pt;}
.y175{bottom:905.920000pt;}
.y5d{bottom:909.333333pt;}
.y4{bottom:909.760000pt;}
.yc2{bottom:912.960000pt;}
.y174{bottom:923.840000pt;}
.y21{bottom:926.080000pt;}
.y5b{bottom:929.333333pt;}
.y91{bottom:936.960000pt;}
.y35{bottom:939.520000pt;}
.y109{bottom:941.120000pt;}
.y173{bottom:941.760000pt;}
.y3{bottom:959.040000pt;}
.y192{bottom:959.680000pt;}
.y7e{bottom:962.880000pt;}
.y58{bottom:964.000000pt;}
.y90{bottom:973.760000pt;}
.y20{bottom:976.320000pt;}
.y172{bottom:978.240000pt;}
.y55{bottom:985.333333pt;}
.y108{bottom:991.360000pt;}
.y171{bottom:996.160000pt;}
.y52{bottom:1006.666667pt;}
.y2{bottom:1008.320000pt;}
.y8f{bottom:1011.840000pt;}
.y1f{bottom:1013.120000pt;}
.y170{bottom:1014.080000pt;}
.y1d{bottom:1043.520000pt;}
.y1c{bottom:1061.440000pt;}
.y1b{bottom:1063.765333pt;}
.y1a{bottom:1078.165333pt;}
.y19{bottom:1092.565333pt;}
.h26{height:20.358260pt;}
.h1a{height:20.471298pt;}
.he{height:21.333333pt;}
.hb{height:22.666667pt;}
.h2c{height:23.844373pt;}
.h1c{height:24.000000pt;}
.h28{height:25.333333pt;}
.h29{height:26.666667pt;}
.h23{height:32.672826pt;}
.h19{height:32.734079pt;}
.h15{height:33.484802pt;}
.h11{height:33.580409pt;}
.h7{height:34.453125pt;}
.h9{height:34.666667pt;}
.hd{height:36.000000pt;}
.hc{height:40.882500pt;}
.h2{height:42.262500pt;}
.h5{height:43.375000pt;}
.h4{height:44.468750pt;}
.h27{height:45.362847pt;}
.h1b{height:45.524035pt;}
.h2f{height:46.500625pt;}
.h13{height:46.575253pt;}
.h12{height:46.622933pt;}
.h21{height:47.992107pt;}
.h25{height:48.000000pt;}
.hf{height:49.333333pt;}
.ha{height:49.507500pt;}
.h17{height:50.620573pt;}
.h22{height:51.045665pt;}
.h6{height:51.073390pt;}
.h8{height:51.088750pt;}
.h18{height:51.227046pt;}
.h2e{height:52.148750pt;}
.h14{height:52.282764pt;}
.h10{height:52.463608pt;}
.h1d{height:53.142039pt;}
.h2d{height:56.173155pt;}
.h3{height:58.122500pt;}
.h24{height:62.314062pt;}
.h16{height:63.994629pt;}
.h1f{height:69.383701pt;}
.h1e{height:69.963499pt;}
.h20{height:70.056088pt;}
.h2a{height:70.768587pt;}
.h2b{height:79.094286pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:85.333333pt;}
.w4{width:89.333333pt;}
.wd{width:90.666667pt;}
.wa{width:96.000000pt;}
.w10{width:101.333333pt;}
.w6{width:105.333333pt;}
.w9{width:106.666667pt;}
.w3{width:120.000000pt;}
.w5{width:144.000000pt;}
.w14{width:148.000000pt;}
.w7{width:156.000000pt;}
.w15{width:161.333333pt;}
.w17{width:170.666667pt;}
.w11{width:176.000000pt;}
.wf{width:180.000000pt;}
.w2{width:202.666667pt;}
.w13{width:241.333333pt;}
.wc{width:253.333333pt;}
.we{width:280.000000pt;}
.w12{width:313.333333pt;}
.wb{width:326.666667pt;}
.w16{width:401.333333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x17{left:2.387555pt;}
.x7{left:4.746731pt;}
.xb{left:5.866539pt;}
.x38{left:8.194453pt;}
.x2c{left:9.371308pt;}
.x1f{left:10.573841pt;}
.x30{left:16.137091pt;}
.x25{left:17.787987pt;}
.x1a{left:23.488241pt;}
.x31{left:25.863870pt;}
.x26{left:26.879093pt;}
.x1c{left:32.010360pt;}
.x3b{left:34.186453pt;}
.x15{left:36.684130pt;}
.x1d{left:38.405958pt;}
.x23{left:40.666248pt;}
.x3a{left:42.186453pt;}
.x2e{left:43.201861pt;}
.x16{left:46.428007pt;}
.x18{left:47.783598pt;}
.x36{left:49.295360pt;}
.x34{left:51.641579pt;}
.x1e{left:52.644581pt;}
.x24{left:54.123108pt;}
.x3{left:55.337333pt;}
.x19{left:57.527475pt;}
.x2f{left:59.749853pt;}
.x22{left:61.032668pt;}
.x2d{left:67.107908pt;}
.x1b{left:72.570625pt;}
.x39{left:75.466560pt;}
.x4a{left:79.040000pt;}
.x14{left:82.177651pt;}
.xa{left:109.333333pt;}
.x32{left:111.030923pt;}
.x2{left:113.280000pt;}
.x4{left:117.680032pt;}
.x48{left:129.904578pt;}
.x3c{left:135.279936pt;}
.x44{left:142.126470pt;}
.x46{left:154.449903pt;}
.x40{left:157.400133pt;}
.x27{left:160.666667pt;}
.x2a{left:171.867767pt;}
.x6{left:177.333333pt;}
.xc{left:197.333333pt;}
.x20{left:198.400064pt;}
.x21{left:203.839840pt;}
.x13{left:209.279936pt;}
.x5{left:215.887040pt;}
.x12{left:219.839840pt;}
.x28{left:223.178423pt;}
.x42{left:235.170006pt;}
.x2b{left:247.065725pt;}
.x43{left:290.907867pt;}
.x35{left:292.000000pt;}
.x41{left:307.229532pt;}
.x45{left:309.118800pt;}
.x29{left:320.272218pt;}
.xd{left:340.000000pt;}
.x4c{left:375.040000pt;}
.x8{left:378.666667pt;}
.x4d{left:386.240000pt;}
.x33{left:392.000000pt;}
.x47{left:394.231494pt;}
.x3e{left:398.560000pt;}
.xe{left:444.000000pt;}
.x3d{left:470.560000pt;}
.x9{left:497.333333pt;}
.x3f{left:558.560000pt;}
.x37{left:566.666667pt;}
.x4b{left:589.119680pt;}
.x4e{left:591.946560pt;}
.x49{left:595.200000pt;}
.xf{left:598.666667pt;}
.x11{left:665.345920pt;}
.x1{left:672.779867pt;}
.x10{left:681.920000pt;}
}




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