
    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_f2846080f54fd88a686d13c2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.039000;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_b4498346877ede7c4b017219.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_a950b71b651ca9b688026e83.woff')format("woff");}.ff3{font-family:ff3;line-height:0.724609;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_08ab5167c9c3ab5cedb56604.woff')format("woff");}.ff4{font-family:ff4;line-height:0.955000;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_b73c971fc74ceff9c1655230.woff')format("woff");}.ff5{font-family:ff5;line-height:0.894000;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_a175e588f4c36e9da2bdfa19.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4755fb6674ea32e3e0c07d94.woff')format("woff");}.ff7{font-family:ff7;line-height:0.723000;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_133b24420c78f9a1cb1ada7b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.907000;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_26a24decfc667bef5ff32864.woff')format("woff");}.ff9{font-family:ff9;line-height:0.903000;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_3ed9550f7480b50dbf141bf3.woff')format("woff");}.ffa{font-family:ffa;line-height:0.903000;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_dec69e3e52b3cc67eddaa47f.woff')format("woff");}.ffb{font-family:ffb;line-height:1.025000;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_0f04cf5bacecb4be19f52352.woff')format("woff");}.ffc{font-family:ffc;line-height:1.025000;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_88b5ad33a84f1270cef08b98.woff')format("woff");}.ffd{font-family:ffd;line-height:0.903000;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_d35b09970c2c02da04a26b3f.woff')format("woff");}.ffe{font-family:ffe;line-height:0.973000;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_a6af57dfdd2de6bf517a7f27.woff')format("woff");}.fff{font-family:fff;line-height:1.025000;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_7392c500161ec5fee0dadb6b.woff')format("woff");}.ff10{font-family:ff10;line-height:0.722656;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_de75196369e8e6ca16458f60.woff')format("woff");}.ff11{font-family:ff11;line-height:0.949707;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_eaecab8614a8dbd86f02465f.woff')format("woff");}.ff12{font-family:ff12;line-height:1.025000;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_3d7e889deee1ee94c4abd6cf.woff')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_d5b01d131e1f763f4721fe2d.woff')format("woff");}.ff14{font-family:ff14;line-height:0.936861;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_e1db42f2a1aec05605d5d27f.woff')format("woff");}.ff15{font-family:ff15;line-height:0.903000;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_055f7137fe46570cc8fced30.woff')format("woff");}.ff16{font-family:ff16;line-height:0.700000;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_f009d3858f028316fe57d372.woff')format("woff");}.ff17{font-family:ff17;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_9ad54ebe2a83b6e0460c8dca.woff')format("woff");}.ff18{font-family:ff18;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_7a2d7b1c9e739a8637f3f33b.woff')format("woff");}.ff19{font-family:ff19;line-height:0.885000;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_dc1c785d2956a00f571cc356.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_fd300ecda397c09573184a7b.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_7a2d7b1c9e739a8637f3f33b.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.885000;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_bf230edcabadf0a3d2ad59d5.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_fa8a48c08b03bc12532d4812.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_7a2d7b1c9e739a8637f3f33b.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.885000;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_ca9537b8ba5488aa2cf997b3.woff')format("woff");}.ff20{font-family:ff20;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_b5dd8deb514ab9a8fdc0b55b.woff')format("woff");}.ff21{font-family:ff21;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_7a2d7b1c9e739a8637f3f33b.woff')format("woff");}.ff22{font-family:ff22;line-height:0.885000;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_65ff527c9396922a3d269ad2.woff')format("woff");}.ff23{font-family:ff23;line-height:0.940918;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_7db15b780fd6d7a9b7a2643e.woff')format("woff");}.ff24{font-family:ff24;line-height:1.025000;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_968efed28b89e0c9338a9c76.woff')format("woff");}.ff25{font-family:ff25;line-height:0.722656;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_3ccee52911ee3061fa6b1a5e.woff')format("woff");}.ff26{font-family:ff26;line-height:1.025000;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_e819ea35f89f2ecb8c5288a2.woff')format("woff");}.ff27{font-family:ff27;line-height:0.938477;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_e44f5e344825d688ad1df4e9.woff')format("woff");}.ff28{font-family:ff28;line-height:0.740234;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_5d04c12ddb24194df5bfa53e.woff')format("woff");}.ff29{font-family:ff29;line-height:0.938477;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_050a65d9b1dae0808a1d72c7.woff')format("woff");}.ff2a{font-family:ff2a;line-height:1.025000;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_c48c4d92e0ee0628631aaeea.woff')format("woff");}.ff2b{font-family:ff2b;line-height:1.025000;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_8b0756eab2fd3f1fb33dac8e.woff')format("woff");}.ff2c{font-family:ff2c;line-height:1.025000;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_a546b073b3f6747997c1e23a.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.905000;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.233080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233080,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.244688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244688,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);}
.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);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.982000px;}
.v1{vertical-align:19.980000px;}
.v4{vertical-align:30.000000px;}
.ls2f{letter-spacing:-6.240000px;}
.ls2e{letter-spacing:-3.240000px;}
.ls25{letter-spacing:-3.182105px;}
.ls12{letter-spacing:-2.502891px;}
.ls1d{letter-spacing:-2.130120px;}
.ls1e{letter-spacing:-1.917108px;}
.ls21{letter-spacing:-1.863855px;}
.ls24{letter-spacing:-1.650843px;}
.ls22{letter-spacing:-1.437831px;}
.ls1c{letter-spacing:-1.331325px;}
.ls5{letter-spacing:-1.200000px;}
.ls13{letter-spacing:-1.171566px;}
.ls2c{letter-spacing:-1.020000px;}
.ls16{letter-spacing:-1.011807px;}
.ls23{letter-spacing:-0.905301px;}
.ls1{letter-spacing:-0.840000px;}
.ls17{letter-spacing:-0.798795px;}
.ls6{letter-spacing:-0.699600px;}
.ls7{letter-spacing:-0.600000px;}
.ls10{letter-spacing:-0.585783px;}
.ls14{letter-spacing:-0.532530px;}
.ls1a{letter-spacing:-0.531762px;}
.ls2b{letter-spacing:-0.510000px;}
.ls18{letter-spacing:-0.479277px;}
.ls20{letter-spacing:-0.426024px;}
.ls15{letter-spacing:-0.425410px;}
.ls1b{letter-spacing:-0.372233px;}
.ls19{letter-spacing:-0.213012px;}
.ls1f{letter-spacing:-0.159759px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.372771px;}
.lsa{letter-spacing:0.798795px;}
.ls4{letter-spacing:1.596240px;}
.ls31{letter-spacing:1.800000px;}
.ls30{letter-spacing:1.872000px;}
.ls3{letter-spacing:1.979338px;}
.ls32{letter-spacing:2.016000px;}
.ls2{letter-spacing:2.220000px;}
.lse{letter-spacing:14.816250px;}
.lsf{letter-spacing:14.843130px;}
.lsb{letter-spacing:14.846850px;}
.lsd{letter-spacing:14.847450px;}
.ls9{letter-spacing:14.873730px;}
.lsc{letter-spacing:14.874330px;}
.ls8{letter-spacing:30.609600px;}
.ls27{letter-spacing:32.398800px;}
.ls26{letter-spacing:32.399400px;}
.ls28{letter-spacing:39.411600px;}
.ls29{letter-spacing:1058.389200px;}
.ls2a{letter-spacing:1160.436000px;}
.ls2d{letter-spacing:1160.436600px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc2{text-shadow:-0.015em 0 rgb(21,96,130),0 0.015em rgb(21,96,130),0.015em 0 rgb(21,96,130),0 -0.015em  rgb(21,96,130);}
.sc1{text-shadow:-0.015em 0 rgb(16,59,96),0 0.015em rgb(16,59,96),0.015em 0 rgb(16,59,96),0 -0.015em  rgb(16,59,96);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(21,96,130);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(16,59,96);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf{word-spacing:-52.740000px;}
.ws1c{word-spacing:-31.644000px;}
.ws52{word-spacing:-24.612000px;}
.ws4d{word-spacing:-19.338000px;}
.ws83{word-spacing:-17.580000px;}
.ws45{word-spacing:-17.118000px;}
.ws7{word-spacing:-16.200000px;}
.ws4{word-spacing:-15.420000px;}
.ws10{word-spacing:-14.580000px;}
.ws20{word-spacing:-14.112045px;}
.ws1e{word-spacing:-13.878000px;}
.ws21{word-spacing:-13.739274px;}
.ws2b{word-spacing:-13.579515px;}
.ws26{word-spacing:-13.526262px;}
.ws2e{word-spacing:-13.313250px;}
.ws25{word-spacing:-13.294050px;}
.ws27{word-spacing:-13.259997px;}
.ws2f{word-spacing:-13.206744px;}
.ws29{word-spacing:-13.153491px;}
.ws24{word-spacing:-12.940479px;}
.ws32{word-spacing:-12.833973px;}
.ws23{word-spacing:-12.727467px;}
.ws22{word-spacing:-12.567708px;}
.ws28{word-spacing:-12.407949px;}
.ws1d{word-spacing:-12.336000px;}
.ws31{word-spacing:-12.301443px;}
.ws33{word-spacing:-12.088431px;}
.ws30{word-spacing:-11.875419px;}
.ws2d{word-spacing:-11.822166px;}
.ws2a{word-spacing:-11.609154px;}
.ws2c{word-spacing:-11.236383px;}
.ws5{word-spacing:-8.290260px;}
.ws11{word-spacing:-8.090874px;}
.ws50{word-spacing:-6.633295px;}
.ws4a{word-spacing:-3.024000px;}
.ws39{word-spacing:-2.982168px;}
.ws41{word-spacing:-2.183373px;}
.ws3c{word-spacing:-1.650843px;}
.ws3a{word-spacing:-1.597590px;}
.wsb{word-spacing:-0.756000px;}
.ws2{word-spacing:-0.720000px;}
.ws1b{word-spacing:-0.540000px;}
.ws3{word-spacing:-0.383098px;}
.ws48{word-spacing:-0.378000px;}
.ws87{word-spacing:-0.216000px;}
.ws86{word-spacing:-0.072000px;}
.ws46{word-spacing:-0.052362px;}
.ws35{word-spacing:-0.041870px;}
.ws0{word-spacing:0.000000px;}
.ws13{word-spacing:0.216000px;}
.ws3b{word-spacing:0.319518px;}
.ws40{word-spacing:0.372233px;}
.ws3d{word-spacing:0.425410px;}
.ws3e{word-spacing:0.479277px;}
.ws3f{word-spacing:0.531762px;}
.ws42{word-spacing:0.585783px;}
.ws8{word-spacing:0.600000px;}
.ws1{word-spacing:0.840000px;}
.ws44{word-spacing:1.011807px;}
.ws5c{word-spacing:1.020000px;}
.ws6{word-spacing:1.200000px;}
.ws43{word-spacing:1.917108px;}
.ws1f{word-spacing:2.376000px;}
.ws34{word-spacing:3.140235px;}
.ws7e{word-spacing:3.240000px;}
.ws82{word-spacing:3.888000px;}
.ws14{word-spacing:4.050000px;}
.ws4b{word-spacing:4.104000px;}
.ws15{word-spacing:4.212000px;}
.ws1a{word-spacing:4.428000px;}
.ws4f{word-spacing:5.346000px;}
.ws84{word-spacing:5.454000px;}
.ws7f{word-spacing:6.240000px;}
.ws47{word-spacing:7.506000px;}
.ws80{word-spacing:8.046000px;}
.ws12{word-spacing:8.154000px;}
.ws51{word-spacing:8.316000px;}
.ws81{word-spacing:8.640000px;}
.ws19{word-spacing:9.018000px;}
.ws49{word-spacing:9.234000px;}
.ws17{word-spacing:10.476000px;}
.ws16{word-spacing:10.962000px;}
.ws53{word-spacing:13.284000px;}
.wse{word-spacing:14.580000px;}
.wsd{word-spacing:15.336000px;}
.wsc{word-spacing:17.280000px;}
.ws4e{word-spacing:33.156000px;}
.ws18{word-spacing:35.910000px;}
.ws9{word-spacing:36.288000px;}
.wsa{word-spacing:37.962000px;}
.ws70{word-spacing:39.660600px;}
.ws5f{word-spacing:39.767400px;}
.ws55{word-spacing:56.597400px;}
.ws6f{word-spacing:61.264800px;}
.ws66{word-spacing:86.203200px;}
.ws6d{word-spacing:86.203800px;}
.ws58{word-spacing:96.989400px;}
.ws7b{word-spacing:115.701000px;}
.ws7a{word-spacing:133.378800px;}
.ws59{word-spacing:141.711000px;}
.ws61{word-spacing:148.066800px;}
.ws36{word-spacing:150.015000px;}
.ws38{word-spacing:150.904200px;}
.ws54{word-spacing:153.064800px;}
.ws37{word-spacing:157.544400px;}
.ws5e{word-spacing:160.357200px;}
.ws56{word-spacing:160.357800px;}
.ws7d{word-spacing:169.528800px;}
.ws5b{word-spacing:172.362000px;}
.ws5a{word-spacing:187.101000px;}
.ws7c{word-spacing:195.598800px;}
.ws72{word-spacing:203.605200px;}
.ws63{word-spacing:203.605800px;}
.ws4c{word-spacing:206.536200px;}
.ws60{word-spacing:207.297600px;}
.ws64{word-spacing:227.697600px;}
.ws69{word-spacing:246.669600px;}
.ws79{word-spacing:251.259000px;}
.ws77{word-spacing:260.643000px;}
.ws73{word-spacing:261.867600px;}
.ws65{word-spacing:269.823600px;}
.ws57{word-spacing:272.679000px;}
.ws5d{word-spacing:290.223600px;}
.ws6b{word-spacing:291.396600px;}
.ws71{word-spacing:295.782600px;}
.ws62{word-spacing:298.434600px;}
.ws6e{word-spacing:322.149600px;}
.ws75{word-spacing:325.362600px;}
.ws6c{word-spacing:341.988600px;}
.ws67{word-spacing:358.563600px;}
.ws68{word-spacing:371.517600px;}
.ws85{word-spacing:476.518800px;}
.ws6a{word-spacing:887.841600px;}
.ws76{word-spacing:945.216000px;}
.ws78{word-spacing:986.530200px;}
.ws74{word-spacing:1270.532400px;}
._3f{margin-left:-48.220800px;}
._47{margin-left:-42.486600px;}
._43{margin-left:-36.503400px;}
._13{margin-left:-16.200000px;}
._51{margin-left:-9.900000px;}
._46{margin-left:-7.896000px;}
._b{margin-left:-6.522000px;}
._1{margin-left:-5.280000px;}
._2{margin-left:-3.960000px;}
._0{margin-left:-2.640000px;}
._3{margin-left:-1.560000px;}
._4{width:1.500000px;}
._7{width:3.246000px;}
._c{width:4.296000px;}
._d{width:5.466000px;}
._a{width:6.612000px;}
._e{width:7.944000px;}
._11{width:9.126000px;}
._9{width:11.052000px;}
._f{width:12.072000px;}
._10{width:14.412000px;}
._41{width:15.414000px;}
._6{width:16.458000px;}
._8{width:17.466000px;}
._5{width:18.630000px;}
._12{width:19.752000px;}
._39{width:21.286800px;}
._3a{width:22.977000px;}
._3c{width:24.764400px;}
._3e{width:26.017200px;}
._3d{width:27.270000px;}
._3b{width:29.224800px;}
._35{width:31.131000px;}
._44{width:32.761800px;}
._36{width:34.549200px;}
._38{width:36.145200px;}
._55{width:37.464600px;}
._40{width:38.647800px;}
._a9{width:39.765600px;}
._37{width:40.770000px;}
._ac{width:41.990400px;}
._53{width:43.729200px;}
._54{width:48.192000px;}
._52{width:50.598000px;}
._75{width:51.854400px;}
._ab{width:53.812800px;}
._48{width:55.347000px;}
._aa{width:56.602800px;}
._8d{width:63.507600px;}
._90{width:69.805200px;}
._92{width:72.604200px;}
._6b{width:82.402200px;}
._a8{width:85.148400px;}
._61{width:96.453000px;}
._77{width:98.290200px;}
._4c{width:101.434800px;}
._85{width:104.481600px;}
._5c{width:109.076400px;}
._6d{width:113.521200px;}
._5f{width:114.736200px;}
._45{width:117.201600px;}
._4d{width:121.468800px;}
._7a{width:124.572600px;}
._73{width:128.277600px;}
._88{width:130.776600px;}
._b5{width:133.117800px;}
._6c{width:136.675200px;}
._9f{width:146.026200px;}
._71{width:151.194600px;}
._72{width:158.847600px;}
._74{width:160.153800px;}
._83{width:161.708400px;}
._a6{width:167.343000px;}
._ad{width:173.970600px;}
._42{width:176.076000px;}
._6a{width:179.328600px;}
._62{width:186.391200px;}
._5e{width:190.672200px;}
._7b{width:194.598600px;}
._57{width:203.809800px;}
._63{width:208.296000px;}
._5b{width:215.692800px;}
._7c{width:219.924600px;}
._95{width:224.539200px;}
._94{width:225.912600px;}
._5a{width:227.166000px;}
._89{width:231.433200px;}
._a4{width:234.276000px;}
._66{width:250.452000px;}
._86{width:253.197600px;}
._98{width:255.747600px;}
._9a{width:257.889000px;}
._6e{width:260.745600px;}
._67{width:262.479000px;}
._9d{width:288.540000px;}
._5d{width:291.699000px;}
._29{width:295.258800px;}
._a2{width:297.873600px;}
._4e{width:307.624200px;}
._56{width:309.756000px;}
._79{width:314.610600px;}
._50{width:322.726800px;}
._68{width:329.604000px;}
._96{width:331.941000px;}
._8b{width:338.265600px;}
._8e{width:349.434600px;}
._a7{width:354.126600px;}
._4b{width:359.734200px;}
._21{width:364.740000px;}
._87{width:368.364000px;}
._4f{width:370.246800px;}
._a0{width:373.761000px;}
._b4{width:375.291600px;}
._7e{width:379.962600px;}
._84{width:382.788600px;}
._4a{width:384.178800px;}
._76{width:386.001600px;}
._82{width:387.994200px;}
._8f{width:390.498000px;}
._7f{width:399.924600px;}
._b3{width:418.687800px;}
._65{width:444.349200px;}
._a5{width:453.573000px;}
._9b{width:462.004200px;}
._49{width:472.630800px;}
._99{width:496.705200px;}
._97{width:501.448200px;}
._b2{width:524.737800px;}
._ae{width:525.808800px;}
._b1{width:527.806200px;}
._8c{width:532.941000px;}
._9c{width:564.484200px;}
._69{width:568.326600px;}
._64{width:576.673200px;}
._af{width:585.075600px;}
._b0{width:587.977800px;}
._91{width:590.005200px;}
._60{width:613.036200px;}
._a3{width:645.336000px;}
._7d{width:703.965600px;}
._70{width:714.271200px;}
._6f{width:834.937200px;}
._78{width:836.514600px;}
._59{width:841.639200px;}
._81{width:850.437600px;}
._2b{width:877.140000px;}
._8a{width:880.654200px;}
._80{width:907.884600px;}
._58{width:932.721000px;}
._23{width:935.638800px;}
._2d{width:940.680000px;}
._1b{width:958.200000px;}
._a1{width:998.617200px;}
._33{width:1013.460000px;}
._2e{width:1125.900000px;}
._2a{width:1181.700000px;}
._20{width:1245.120000px;}
._18{width:1280.338800px;}
._93{width:1282.619400px;}
._19{width:1315.500000px;}
._34{width:1338.780000px;}
._1c{width:1361.340000px;}
._1f{width:1366.740000px;}
._1e{width:1411.380000px;}
._9e{width:1464.136200px;}
._32{width:1505.340000px;}
._1d{width:1608.960000px;}
._28{width:1616.400000px;}
._26{width:1747.920000px;}
._1a{width:1756.080000px;}
._27{width:1857.480000px;}
._25{width:1864.320000px;}
._2c{width:1867.798800px;}
._22{width:2076.060000px;}
._16{width:2117.280000px;}
._24{width:2160.240000px;}
._17{width:2215.560000px;}
._14{width:2377.560000px;}
._2f{width:2444.100000px;}
._15{width:2518.798800px;}
._30{width:2571.960000px;}
._31{width:2635.860000px;}
.fc11{color:rgb(246,207,49);}
.fc10{color:rgb(230,126,49);}
.fcf{color:rgb(118,54,137);}
.fce{color:rgb(7,63,100);}
.fc12{color:rgb(205,7,30);}
.fcd{color:rgb(97,199,210);}
.fc1{color:rgb(0,164,167);}
.fc0{color:rgb(0,58,98);}
.fc2{color:rgb(0,68,148);}
.fc3{color:rgb(255,255,255);}
.fcb{color:rgb(0,0,0);}
.fc4{color:rgb(84,89,85);}
.fcc{color:rgb(128,108,153);}
.fc6{color:transparent;}
.fc7{color:rgb(16,59,96);}
.fc9{color:rgb(127,128,130);}
.fc5{color:rgb(151,191,13);}
.fca{color:rgb(135,136,138);}
.fc8{color:rgb(21,96,130);}
.fs23{font-size:19.866000px;}
.fs24{font-size:24.385800px;}
.fs22{font-size:25.648800px;}
.fsd{font-size:31.482000px;}
.fs12{font-size:32.368200px;}
.fs14{font-size:32.445000px;}
.fs6{font-size:34.980000px;}
.fs21{font-size:37.300200px;}
.fs16{font-size:41.869800px;}
.fsf{font-size:42.000000px;}
.fs11{font-size:46.317000px;}
.fs4{font-size:48.000000px;}
.fs1b{font-size:49.754400px;}
.fs25{font-size:51.000000px;}
.fs17{font-size:52.362000px;}
.fs15{font-size:53.176200px;}
.fs13{font-size:53.253000px;}
.fsa{font-size:54.000000px;}
.fs1f{font-size:54.327000px;}
.fs18{font-size:58.186800px;}
.fs20{font-size:58.725000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:63.849600px;}
.fs5{font-size:66.000000px;}
.fs1e{font-size:66.383400px;}
.fs10{font-size:67.125000px;}
.fs1d{font-size:68.280000px;}
.fs8{font-size:72.000000px;}
.fs1a{font-size:74.631600px;}
.fs26{font-size:78.000000px;}
.fs19{font-size:83.124000px;}
.fs1{font-size:84.000000px;}
.fs1c{font-size:85.609800px;}
.fs7{font-size:96.000000px;}
.fs9{font-size:108.000000px;}
.fs0{font-size:132.000000px;}
.fse{font-size:168.000000px;}
.fsc{font-size:180.000000px;}
.fsb{font-size:1500.000000px;}
.y0{bottom:0.000000px;}
.y128{bottom:3.694800px;}
.y1c5{bottom:4.156350px;}
.y13c{bottom:4.633350px;}
.y13e{bottom:4.633500px;}
.y120{bottom:4.645950px;}
.y124{bottom:4.646100px;}
.y122{bottom:4.646850px;}
.y126{bottom:4.647150px;}
.y134{bottom:4.713300px;}
.y136{bottom:4.714800px;}
.y138{bottom:4.825650px;}
.y13a{bottom:4.825800px;}
.y131{bottom:4.996800px;}
.y94{bottom:9.903600px;}
.y8{bottom:10.041150px;}
.y1b5{bottom:10.185600px;}
.y5d{bottom:10.192500px;}
.y119{bottom:22.811250px;}
.y7{bottom:33.325350px;}
.y113{bottom:44.220150px;}
.y10b{bottom:44.259600px;}
.y104{bottom:44.466900px;}
.yfc{bottom:44.760600px;}
.yff{bottom:44.800050px;}
.y6{bottom:52.480200px;}
.y21f{bottom:56.834700px;}
.y1b4{bottom:74.834700px;}
.y20a{bottom:76.535400px;}
.yba{bottom:76.535550px;}
.yf5{bottom:76.535700px;}
.y211{bottom:79.461600px;}
.y218{bottom:79.461750px;}
.y20b{bottom:81.162450px;}
.y5c{bottom:87.704700px;}
.ye0{bottom:90.935550px;}
.y172{bottom:92.834700px;}
.y22a{bottom:95.154900px;}
.y1b3{bottom:95.187750px;}
.yb9{bottom:96.091350px;}
.y142{bottom:110.834700px;}
.y1b2{bottom:113.839800px;}
.y5b{bottom:114.720450px;}
.y229{bottom:116.755050px;}
.yb8{bottom:124.151250px;}
.y141{bottom:128.834700px;}
.y1b1{bottom:132.492000px;}
.y5a{bottom:133.435050px;}
.y2e{bottom:140.639700px;}
.yf6{bottom:146.834700px;}
.y1b0{bottom:146.892000px;}
.yb7{bottom:152.211000px;}
.y2d{bottom:157.139700px;}
.y140{bottom:160.837800px;}
.y1af{bottom:161.292000px;}
.y93{bottom:164.834700px;}
.ydd{bottom:167.259750px;}
.y12b{bottom:171.187350px;}
.y59{bottom:171.442950px;}
.y2c{bottom:173.639700px;}
.y13f{bottom:178.837800px;}
.yb6{bottom:180.270750px;}
.yf2{bottom:182.834700px;}
.y12a{bottom:189.187350px;}
.y2b{bottom:190.139700px;}
.y58{bottom:192.194850px;}
.y92{bottom:194.090550px;}
.y212{bottom:198.516750px;}
.y21a{bottom:198.516900px;}
.y210{bottom:200.217450px;}
.yf1{bottom:200.834700px;}
.y2a{bottom:206.639700px;}
.yb5{bottom:216.834600px;}
.yf0{bottom:218.834700px;}
.y91{bottom:223.346400px;}
.y29{bottom:227.391750px;}
.y57{bottom:230.202750px;}
.y135{bottom:234.682500px;}
.y1ae{bottom:236.115600px;}
.yef{bottom:236.834700px;}
.y129{bottom:237.133200px;}
.y90{bottom:239.846400px;}
.y56{bottom:250.954800px;}
.y1ad{bottom:251.115600px;}
.y133{bottom:252.574500px;}
.yb4{bottom:253.398450px;}
.yee{bottom:254.834700px;}
.y28{bottom:265.399500px;}
.y1ac{bottom:266.115600px;}
.y127{bottom:266.460000px;}
.y8f{bottom:269.102400px;}
.yed{bottom:272.834700px;}
.y216{bottom:279.304200px;}
.y21c{bottom:281.004900px;}
.y1ab{bottom:281.115600px;}
.yb3{bottom:281.458200px;}
.y11e{bottom:283.003200px;}
.y55{bottom:284.710650px;}
.y27{bottom:286.151550px;}
.ye6{bottom:290.834700px;}
.y1aa{bottom:296.115600px;}
.y8e{bottom:298.358250px;}
.y54{bottom:305.462550px;}
.y207{bottom:306.271650px;}
.yda{bottom:308.834700px;}
.yb2{bottom:309.517950px;}
.y1a9{bottom:314.866350px;}
.y206{bottom:322.771650px;}
.y26{bottom:324.159450px;}
.yd9{bottom:326.834700px;}
.y8d{bottom:327.614100px;}
.y1a8{bottom:329.866350px;}
.y162{bottom:330.714150px;}
.y139{bottom:335.044500px;}
.yb1{bottom:337.577850px;}
.y53{bottom:339.218550px;}
.y205{bottom:339.271650px;}
.yd8{bottom:344.834700px;}
.y1a7{bottom:344.866350px;}
.y25{bottom:344.911350px;}
.y161{bottom:347.214150px;}
.y137{bottom:352.935000px;}
.y52{bottom:355.718550px;}
.y8c{bottom:356.870100px;}
.y1a6{bottom:359.866350px;}
.y217{bottom:360.091500px;}
.y21b{bottom:360.091650px;}
.y20c{bottom:361.792350px;}
.yd7{bottom:362.834700px;}
.y160{bottom:363.714150px;}
.y204{bottom:364.275600px;}
.y1de{bottom:369.298200px;}
.y11f{bottom:369.379500px;}
.y51{bottom:372.218550px;}
.y8b{bottom:373.370100px;}
.yb0{bottom:374.141550px;}
.y1a5{bottom:374.866350px;}
.y15f{bottom:380.214150px;}
.y203{bottom:380.775600px;}
.yd6{bottom:380.834700px;}
.y24{bottom:382.919250px;}
.y70{bottom:388.621500px;}
.y50{bottom:388.718550px;}
.y1a4{bottom:389.866350px;}
.yf9{bottom:393.503250px;}
.y1b9{bottom:395.280900px;}
.y15e{bottom:396.714150px;}
.y202{bottom:397.275600px;}
.yd5{bottom:398.834700px;}
.y23{bottom:399.419250px;}
.yaf{bottom:402.201300px;}
.y8a{bottom:402.625950px;}
.y1c4{bottom:403.059000px;}
.y4f{bottom:405.218550px;}
.y1a3{bottom:408.616950px;}
.y201{bottom:413.775600px;}
.y144{bottom:414.209250px;}
.y1ca{bottom:416.365650px;}
.yd4{bottom:416.834700px;}
.y15d{bottom:417.466050px;}
.y22{bottom:420.171300px;}
.y4e{bottom:421.718550px;}
.y1a2{bottom:423.616950px;}
.y1c3{bottom:424.671360px;}
.y6f{bottom:426.629400px;}
.yae{bottom:430.261200px;}
.y200{bottom:430.275600px;}
.y89{bottom:431.881950px;}
.y171{bottom:434.834550px;}
.yd3{bottom:434.834700px;}
.y4d{bottom:438.218550px;}
.y1a1{bottom:438.616950px;}
.y209{bottom:441.209250px;}
.y1c2{bottom:442.127400px;}
.ye8{bottom:444.330750px;}
.y1b8{bottom:444.780900px;}
.y213{bottom:445.130850px;}
.y219{bottom:445.131000px;}
.y1ff{bottom:446.775600px;}
.y20d{bottom:446.831700px;}
.y6e{bottom:447.629400px;}
.y88{bottom:448.381950px;}
.y15c{bottom:450.973950px;}
.y170{bottom:452.834550px;}
.yd2{bottom:452.834700px;}
.y1a0{bottom:453.616950px;}
.y4c{bottom:454.718550px;}
.y21{bottom:458.179200px;}
.y121{bottom:460.401000px;}
.yad{bottom:462.573000px;}
.y132{bottom:462.894000px;}
.y1fe{bottom:463.275600px;}
.y15b{bottom:467.473950px;}
.yde{bottom:468.209250px;}
.y19f{bottom:468.616950px;}
.y1d2{bottom:470.011540px;}
.yd1{bottom:470.834700px;}
.y4b{bottom:471.218550px;}
.y20{bottom:474.679200px;}
.y87{bottom:477.637800px;}
.y1fd{bottom:479.775600px;}
.y130{bottom:480.784500px;}
.y6d{bottom:481.137300px;}
.y19e{bottom:483.616950px;}
.y15a{bottom:483.973950px;}
.y4a{bottom:487.718550px;}
.yac{bottom:487.880850px;}
.y16f{bottom:488.834550px;}
.yd0{bottom:488.834700px;}
.y1b7{bottom:494.280900px;}
.ye7{bottom:494.730900px;}
.y208{bottom:495.209250px;}
.y1f{bottom:495.431100px;}
.y1c9{bottom:497.463030px;}
.y6c{bottom:497.637300px;}
.y19d{bottom:498.616950px;}
.y159{bottom:500.473950px;}
.y232{bottom:500.958750px;}
.y1d1{bottom:500.962800px;}
.y49{bottom:504.218550px;}
.y1fc{bottom:504.779550px;}
.ycf{bottom:506.834700px;}
.y86{bottom:506.893650px;}
.yab{bottom:513.188700px;}
.y19c{bottom:513.616950px;}
.y1c8{bottom:514.919070px;}
.y1d3{bottom:516.130950px;}
.y48{bottom:520.718550px;}
.y158{bottom:521.226000px;}
.y1fb{bottom:521.279550px;}
.y143{bottom:522.209250px;}
.y85{bottom:523.393650px;}
.ydb{bottom:524.834700px;}
.y13d{bottom:528.348000px;}
.y231{bottom:529.914600px;}
.y6b{bottom:531.145200px;}
.y1d0{bottom:531.286050px;}
.y19b{bottom:532.367550px;}
.y1c7{bottom:532.375110px;}
.y1e{bottom:533.439000px;}
.y47{bottom:537.218550px;}
.y1fa{bottom:537.779550px;}
.yaa{bottom:538.496550px;}
.y16c{bottom:542.834550px;}
.yce{bottom:542.834700px;}
.y1b6{bottom:543.780900px;}
.y13b{bottom:546.238500px;}
.y19a{bottom:547.367550px;}
.y6a{bottom:547.645200px;}
.y1c6{bottom:549.831150px;}
.y1d{bottom:549.939000px;}
.y123{bottom:551.424000px;}
.y84{bottom:552.649650px;}
.y46{bottom:553.718550px;}
.y1cf{bottom:554.178000px;}
.y1f9{bottom:554.279550px;}
.y157{bottom:554.733750px;}
.y230{bottom:556.639050px;}
.y16b{bottom:560.834550px;}
.ycd{bottom:560.834700px;}
.y199{bottom:562.367550px;}
.ya9{bottom:568.056300px;}
.y45{bottom:570.218550px;}
.y1c{bottom:570.690900px;}
.y1f8{bottom:570.779550px;}
.y156{bottom:571.233750px;}
.y198{bottom:577.367550px;}
.y16e{bottom:578.834550px;}
.ycc{bottom:578.834700px;}
.y69{bottom:581.153100px;}
.y83{bottom:581.905500px;}
.y1f7{bottom:587.279550px;}
.y155{bottom:587.733750px;}
.y44{bottom:590.970450px;}
.y197{bottom:592.367550px;}
.y1d5{bottom:592.608750px;}
.y22f{bottom:594.098850px;}
.ya8{bottom:596.116050px;}
.ydc{bottom:596.608500px;}
.y16a{bottom:596.834550px;}
.ycb{bottom:596.834700px;}
.y68{bottom:597.653100px;}
.y82{bottom:598.405500px;}
.y1f6{bottom:603.779550px;}
.y154{bottom:604.233750px;}
.y196{bottom:607.367550px;}
.y1b{bottom:608.698800px;}
.y1d4{bottom:610.226250px;}
.y22e{bottom:610.298850px;}
.y1c1{bottom:610.530172px;}
.y169{bottom:614.834550px;}
.yca{bottom:614.834700px;}
.y1f5{bottom:620.279550px;}
.y1be{bottom:621.338370px;}
.y195{bottom:622.367550px;}
.ya7{bottom:624.175950px;}
.y1c0{bottom:624.247710px;}
.y43{bottom:624.726450px;}
.y153{bottom:624.985800px;}
.y1a{bottom:625.198800px;}
.y81{bottom:627.661350px;}
.y67{bottom:631.160850px;}
.y16d{bottom:632.834550px;}
.yc9{bottom:632.834700px;}
.y1f4{bottom:636.779550px;}
.y1bd{bottom:638.794410px;}
.y194{bottom:641.118300px;}
.y42{bottom:641.226450px;}
.y19{bottom:641.698800px;}
.y1bf{bottom:641.703750px;}
.y125{bottom:642.445500px;}
.y66{bottom:647.660850px;}
.y22d{bottom:647.758650px;}
.y168{bottom:650.834550px;}
.yc8{bottom:650.834700px;}
.y1d7{bottom:651.061290px;}
.y193{bottom:656.118300px;}
.y1bc{bottom:656.250450px;}
.ya6{bottom:656.487750px;}
.y80{bottom:656.917350px;}
.y41{bottom:657.726450px;}
.y152{bottom:658.493700px;}
.y1f3{bottom:661.783500px;}
.y1d6{bottom:662.251350px;}
.y18{bottom:662.450850px;}
.y22c{bottom:663.958800px;}
.y167{bottom:668.834550px;}
.yc7{bottom:668.834700px;}
.y192{bottom:671.118300px;}
.y40{bottom:674.226450px;}
.y151{bottom:674.993700px;}
.y1f2{bottom:678.283500px;}
.y65{bottom:681.168750px;}
.ya5{bottom:681.795600px;}
.y191{bottom:686.118300px;}
.y7f{bottom:686.173200px;}
.y166{bottom:686.834550px;}
.yc6{bottom:686.834700px;}
.y22b{bottom:688.662600px;}
.y3f{bottom:690.726450px;}
.y150{bottom:691.493700px;}
.y1f1{bottom:694.783500px;}
.y17{bottom:700.458600px;}
.y190{bottom:701.118300px;}
.y64{bottom:702.168750px;}
.y165{bottom:704.834550px;}
.yc5{bottom:704.834700px;}
.y14f{bottom:707.993700px;}
.y1dd{bottom:711.175710px;}
.y1f0{bottom:711.283500px;}
.ya4{bottom:711.355350px;}
.y3e{bottom:711.478350px;}
.y1ce{bottom:711.722310px;}
.y11d{bottom:711.885900px;}
.y7e{bottom:715.429200px;}
.y18f{bottom:716.118300px;}
.y16{bottom:716.958600px;}
.y1dc{bottom:718.491450px;}
.y164{bottom:722.834550px;}
.yc4{bottom:722.834700px;}
.y63{bottom:723.168750px;}
.y14e{bottom:724.493700px;}
.y1cd{bottom:726.648630px;}
.y1ef{bottom:727.783500px;}
.y11c{bottom:729.885900px;}
.y1d9{bottom:732.762510px;}
.y15{bottom:733.458600px;}
.y18e{bottom:734.869050px;}
.ya3{bottom:735.163200px;}
.y214{bottom:738.516750px;}
.y20e{bottom:740.217450px;}
.y1d8{bottom:740.457150px;}
.y163{bottom:740.834550px;}
.yec{bottom:740.834700px;}
.y14d{bottom:740.993700px;}
.y1cc{bottom:741.574950px;}
.y62{bottom:744.168750px;}
.y7d{bottom:744.685050px;}
.y3d{bottom:745.234200px;}
.y18d{bottom:749.869050px;}
.y14{bottom:749.958600px;}
.y1cb{bottom:756.501450px;}
.y1ee{bottom:757.039350px;}
.y14c{bottom:757.493700px;}
.yc3{bottom:758.834700px;}
.ya2{bottom:760.471050px;}
.yf8{bottom:763.647000px;}
.y18c{bottom:764.869050px;}
.y3c{bottom:765.135750px;}
.y61{bottom:765.168750px;}
.y1db{bottom:767.304450px;}
.y13{bottom:770.710650px;}
.y11b{bottom:771.854250px;}
.y1da{bottom:773.264250px;}
.y1ed{bottom:773.539350px;}
.y7c{bottom:773.940900px;}
.yc2{bottom:776.834700px;}
.y14b{bottom:778.245600px;}
.y18b{bottom:779.869050px;}
.y3b{bottom:785.037450px;}
.ya1{bottom:785.778900px;}
.y60{bottom:786.168750px;}
.y118{bottom:786.458250px;}
.y11a{bottom:788.076750px;}
.y1ec{bottom:790.039350px;}
.yc1{bottom:794.834700px;}
.y18a{bottom:794.869050px;}
.y7b{bottom:803.196750px;}
.y3a{bottom:804.939000px;}
.y1eb{bottom:806.539350px;}
.y5f{bottom:807.168750px;}
.y12{bottom:808.718400px;}
.y189{bottom:809.869050px;}
.y14a{bottom:811.753650px;}
.yc0{bottom:812.834700px;}
.y116{bottom:813.316200px;}
.y117{bottom:813.317275px;}
.ya0{bottom:815.338650px;}
.y1ea{bottom:823.039350px;}
.y112{bottom:823.759500px;}
.y39{bottom:824.840550px;}
.y149{bottom:828.253650px;}
.y188{bottom:828.619650px;}
.y11{bottom:829.470450px;}
.y115{bottom:829.519500px;}
.ybf{bottom:830.834700px;}
.y7a{bottom:832.452750px;}
.y9f{bottom:839.146500px;}
.y187{bottom:843.619650px;}
.y38{bottom:844.742100px;}
.y148{bottom:844.753650px;}
.y114{bottom:845.144850px;}
.ybe{bottom:848.834700px;}
.y1e9{bottom:852.295200px;}
.y5e{bottom:857.932500px;}
.y186{bottom:858.619650px;}
.y147{bottom:861.253650px;}
.y79{bottom:861.708600px;}
.y9e{bottom:864.454350px;}
.y37{bottom:864.643650px;}
.ybd{bottom:866.834700px;}
.y10{bottom:867.478350px;}
.y111{bottom:867.979650px;}
.y1e8{bottom:868.795200px;}
.y185{bottom:873.619650px;}
.y146{bottom:882.005550px;}
.y36{bottom:884.545200px;}
.ybc{bottom:884.834700px;}
.y1e7{bottom:885.295200px;}
.yf{bottom:888.230400px;}
.y184{bottom:888.619650px;}
.y9d{bottom:889.762200px;}
.y10f{bottom:890.190450px;}
.y78{bottom:890.964600px;}
.ye5{bottom:902.834700px;}
.y183{bottom:903.619650px;}
.y35{bottom:904.446750px;}
.y10e{bottom:905.819700px;}
.y1e6{bottom:914.551200px;}
.y10a{bottom:916.239000px;}
.y9c{bottom:919.321950px;}
.y77{bottom:920.220450px;}
.ye4{bottom:920.834700px;}
.y110{bottom:922.018445px;}
.y10d{bottom:922.019100px;}
.y182{bottom:922.370400px;}
.y34{bottom:924.348450px;}
.y145{bottom:925.269450px;}
.ye{bottom:926.238150px;}
.y228{bottom:926.772900px;}
.y1e5{bottom:931.051200px;}
.y4{bottom:933.667950px;}
.y181{bottom:937.370400px;}
.y10c{bottom:937.648200px;}
.ye3{bottom:938.834700px;}
.y33{bottom:944.250000px;}
.ybb{bottom:945.520200px;}
.yd{bottom:946.990200px;}
.y9b{bottom:947.381850px;}
.y1e4{bottom:947.551200px;}
.y76{bottom:949.476450px;}
.y180{bottom:952.370400px;}
.y227{bottom:952.419000px;}
.ye2{bottom:956.834700px;}
.y109{bottom:960.498600px;}
.y32{bottom:964.151550px;}
.y17f{bottom:967.370400px;}
.ye1{bottom:974.834700px;}
.y1e3{bottom:976.807050px;}
.y226{bottom:978.064950px;}
.y75{bottom:978.732300px;}
.y17e{bottom:982.370400px;}
.y108{bottom:982.686150px;}
.y9a{bottom:983.945550px;}
.y31{bottom:984.053100px;}
.yc{bottom:984.997950px;}
.y225{bottom:985.564950px;}
.yeb{bottom:992.834700px;}
.y3{bottom:992.935050px;}
.y1e2{bottom:993.307050px;}
.y74{bottom:995.232300px;}
.y17d{bottom:997.370400px;}
.y107{bottom:998.315400px;}
.y30{bottom:1003.954800px;}
.y103{bottom:1005.252000px;}
.yb{bottom:1005.750000px;}
.y215{bottom:1006.390800px;}
.y20f{bottom:1008.091500px;}
.y1e1{bottom:1009.807050px;}
.ydf{bottom:1010.834700px;}
.y99{bottom:1012.005300px;}
.y17c{bottom:1012.370400px;}
.y106{bottom:1014.522450px;}
.y224{bottom:1018.710900px;}
.y2f{bottom:1023.856350px;}
.y73{bottom:1024.488150px;}
.y1e0{bottom:1026.307050px;}
.y21e{bottom:1028.834550px;}
.yf4{bottom:1028.834700px;}
.y105{bottom:1030.167150px;}
.y2{bottom:1030.435050px;}
.y17b{bottom:1031.121000px;}
.y98{bottom:1040.065200px;}
.y72{bottom:1040.988150px;}
.ya{bottom:1043.757900px;}
.y223{bottom:1044.356850px;}
.y17a{bottom:1046.121000px;}
.yea{bottom:1046.834700px;}
.y102{bottom:1049.718900px;}
.y179{bottom:1061.121000px;}
.y9{bottom:1064.509800px;}
.yf3{bottom:1064.834700px;}
.yfe{bottom:1065.940500px;}
.y1{bottom:1067.935050px;}
.y97{bottom:1068.124950px;}
.y1df{bottom:1069.570800px;}
.y222{bottom:1070.002950px;}
.y101{bottom:1072.261050px;}
.y178{bottom:1076.121000px;}
.y71{bottom:1078.747950px;}
.y12f{bottom:1082.834700px;}
.yfb{bottom:1083.859500px;}
.y100{bottom:1087.890150px;}
.y177{bottom:1091.121000px;}
.y21d{bottom:1093.512300px;}
.y221{bottom:1095.648900px;}
.y12d{bottom:1100.834700px;}
.y96{bottom:1104.688800px;}
.y176{bottom:1106.121000px;}
.yfd{bottom:1110.740550px;}
.y233{bottom:1113.090150px;}
.y220{bottom:1118.790900px;}
.y12e{bottom:1118.834700px;}
.y175{bottom:1121.121000px;}
.ye9{bottom:1128.012300px;}
.yfa{bottom:1128.620100px;}
.y1bb{bottom:1136.834700px;}
.y174{bottom:1144.974000px;}
.y12c{bottom:1154.834700px;}
.y5{bottom:1156.320750px;}
.yf7{bottom:1157.150250px;}
.y95{bottom:1162.512300px;}
.y173{bottom:1172.650950px;}
.y1ba{bottom:1172.834700px;}
.h37{height:14.462991px;}
.h25{height:15.225000px;}
.h24{height:16.177500px;}
.h38{height:17.753529px;}
.h29{height:18.325500px;}
.h27{height:18.327000px;}
.h36{height:18.673028px;}
.h35{height:27.155566px;}
.h23{height:29.895037px;}
.hb{height:34.176000px;}
.h6{height:34.265625px;}
.h17{height:36.144000px;}
.h2f{height:36.222564px;}
.h3d{height:36.414000px;}
.h1c{height:36.636747px;}
.h28{height:38.224260px;}
.h3c{height:38.403000px;}
.h12{height:38.556000px;}
.h3b{height:38.760000px;}
.h2a{height:39.445312px;}
.h33{height:39.551542px;}
.h21{height:39.768412px;}
.h1f{height:39.825848px;}
.h19{height:39.919922px;}
.h10{height:40.662000px;}
.h11{height:41.040000px;}
.h2b{height:42.361581px;}
.h34{height:42.753406px;}
.h8{height:42.840000px;}
.h40{height:43.500000px;}
.h4{height:43.681641px;}
.h9{height:44.955720px;}
.ha{height:45.180000px;}
.he{height:45.600000px;}
.h5{height:46.484255px;}
.h3f{height:47.940000px;}
.h32{height:48.328930px;}
.h31{height:49.709707px;}
.h7{height:50.160000px;}
.h42{height:52.417969px;}
.h26{height:52.734000px;}
.h1a{height:53.095875px;}
.h2e{height:54.333846px;}
.hd{height:57.528000px;}
.h2d{height:60.516545px;}
.h3e{height:61.698000px;}
.h30{height:62.326275px;}
.h16{height:66.444000px;}
.h3a{height:66.975000px;}
.h3{height:67.116000px;}
.h41{height:68.403000px;}
.h22{height:76.296000px;}
.hc{height:76.704000px;}
.hf{height:86.292000px;}
.h1d{height:95.949000px;}
.h20{height:97.681500px;}
.h1e{height:97.683000px;}
.h2{height:105.468000px;}
.h18{height:134.232000px;}
.h39{height:142.380000px;}
.h15{height:143.820000px;}
.h2c{height:405.268500px;}
.h1b{height:416.161500px;}
.h13{height:666.226500px;}
.h14{height:1186.500000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:14.466000px;}
.w9{width:25.422000px;}
.wc{width:30.532500px;}
.wf{width:36.654000px;}
.wb{width:41.602500px;}
.we{width:42.762000px;}
.w11{width:43.198500px;}
.wa{width:44.014500px;}
.wd{width:83.779500px;}
.w12{width:107.343000px;}
.w10{width:109.524000px;}
.w7{width:128.959500px;}
.w6{width:139.365000px;}
.w5{width:190.164000px;}
.w4{width:358.939500px;}
.w3{width:733.039500px;}
.w13{width:775.009500px;}
.w2{width:869.651100px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x71{left:2.146350px;}
.x19{left:5.672100px;}
.x10{left:7.148250px;}
.x4{left:10.646250px;}
.x8f{left:11.988750px;}
.x54{left:13.063050px;}
.x89{left:15.439350px;}
.x5a{left:16.757100px;}
.x1b{left:17.805150px;}
.x90{left:19.527000px;}
.x55{left:21.157050px;}
.xd{left:23.262900px;}
.x5c{left:24.851100px;}
.x80{left:25.884000px;}
.x1d{left:27.051600px;}
.x56{left:29.251050px;}
.x6b{left:30.769950px;}
.x1f{left:33.411750px;}
.x5f{left:36.395700px;}
.x92{left:38.030550px;}
.x8d{left:39.153750px;}
.x82{left:41.504400px;}
.x61{left:43.331700px;}
.x21{left:44.973900px;}
.x84{left:49.042500px;}
.x63{left:50.267700px;}
.x93{left:51.591300px;}
.x8e{left:53.095350px;}
.x6f{left:54.449550px;}
.xa{left:56.692800px;}
.x65{left:57.782700px;}
.xab{left:58.951500px;}
.x77{left:61.177500px;}
.x24{left:62.292150px;}
.x86{left:64.095750px;}
.x16{left:68.031450px;}
.xf{left:69.531450px;}
.x95{left:70.662450px;}
.xb4{left:71.888850px;}
.x1{left:76.535400px;}
.x11{left:78.035400px;}
.x18{left:79.938000px;}
.x70{left:82.084350px;}
.xb5{left:83.407350px;}
.xb{left:85.039350px;}
.xb6{left:87.034794px;}
.x28{left:88.286400px;}
.x72{left:89.610750px;}
.x7a{left:91.816350px;}
.x12{left:93.543300px;}
.x88{left:95.377350px;}
.x1a{left:97.743150px;}
.x7b{left:98.775450px;}
.xbf{left:100.322400px;}
.xc{left:102.047250px;}
.x8a{left:103.471350px;}
.x73{left:105.231300px;}
.x1c{left:106.989600px;}
.x10d{left:109.052550px;}
.x2b{left:110.270100px;}
.x8b{left:111.565350px;}
.x1e{left:113.349750px;}
.x2d{left:115.455750px;}
.x91{left:117.968550px;}
.x8c{left:119.091750px;}
.x81{left:121.442400px;}
.x7d{left:122.577300px;}
.x74{left:123.735000px;}
.x20{left:124.911900px;}
.x83{left:128.980500px;}
.x2f{left:131.079150px;}
.x75{left:133.577400px;}
.x22{left:137.044950px;}
.x53{left:138.728550px;}
.x76{left:141.115500px;}
.x23{left:142.230150px;}
.x85{left:144.033750px;}
.x25{left:147.415800px;}
.x78{left:149.209500px;}
.x94{left:150.600450px;}
.xdc{left:151.840500px;}
.x32{left:154.203600px;}
.x26{left:156.662100px;}
.x100{left:158.234700px;}
.x34{left:159.389100px;}
.xc0{left:161.103300px;}
.x79{left:164.830050px;}
.x36{left:166.302900px;}
.x27{left:168.224400px;}
.x8{left:171.496050px;}
.xec{left:173.234400px;}
.x96{left:174.859200px;}
.x29{left:178.075200px;}
.x101{left:179.628600px;}
.x97{left:181.795200px;}
.xb7{left:184.331996px;}
.x39{left:185.987400px;}
.x9d{left:188.638500px;}
.x2a{left:190.208100px;}
.x9{left:192.755850px;}
.xba{left:194.105100px;}
.x2c{left:195.393750px;}
.xdd{left:196.840500px;}
.xa4{left:200.044800px;}
.x3c{left:202.735200px;}
.x12d{left:206.598750px;}
.x9e{left:209.148000px;}
.x2e{left:211.017150px;}
.x3e{left:213.743850px;}
.x102{left:216.022650px;}
.x40{left:218.929350px;}
.x30{left:222.579300px;}
.x117{left:224.628600px;}
.x42{left:229.333650px;}
.xed{left:231.022500px;}
.xc1{left:232.785300px;}
.x31{left:234.141600px;}
.x33{left:239.327100px;}
.x44{left:240.895950px;}
.x9b{left:243.247950px;}
.x35{left:246.240900px;}
.xa6{left:251.241150px;}
.xee{left:252.416550px;}
.xc2{left:254.179350px;}
.x37{left:257.249400px;}
.x7e{left:260.263050px;}
.x38{left:265.925400px;}
.x103{left:267.416700px;}
.xde{left:269.628450px;}
.x3a{left:271.110900px;}
.x47{left:272.713500px;}
.xef{left:273.810450px;}
.xac{left:276.313800px;}
.x3b{left:282.673200px;}
.x49{left:284.275800px;}
.xf0{left:288.810450px;}
.xc3{left:290.573250px;}
.x3d{left:293.681850px;}
.x4b{left:295.837950px;}
.x3f{left:298.867350px;}
.x4d{left:300.469650px;}
.xf1{left:303.810450px;}
.xbd{left:305.256600px;}
.x4f{left:307.383300px;}
.x41{left:309.271650px;}
.x7c{left:310.934550px;}
.x15{left:312.944250px;}
.xbe{left:314.257350px;}
.xf2{left:318.810450px;}
.x43{left:320.833950px;}
.x52{left:322.973250px;}
.x10e{left:325.204650px;}
.xdf{left:327.416550px;}
.xc4{left:333.361350px;}
.xaa{left:335.265300px;}
.x45{left:336.457350px;}
.x104{left:340.204650px;}
.x118{left:342.416550px;}
.xc5{left:348.361350px;}
.xe{left:349.508100px;}
.xad{left:350.583000px;}
.x46{left:352.651500px;}
.x105{left:355.204650px;}
.xae{left:358.060004px;}
.xe0{left:359.424450px;}
.x10f{left:361.598700px;}
.x48{left:364.213800px;}
.x98{left:368.632500px;}
.xc6{left:369.755400px;}
.x4a{left:375.775950px;}
.x119{left:378.810600px;}
.x4c{left:380.407650px;}
.xc7{left:384.755400px;}
.x4e{left:387.321300px;}
.x7f{left:388.733700px;}
.x50{left:392.506950px;}
.x11a{left:393.810600px;}
.xf3{left:400.204500px;}
.x51{left:402.911250px;}
.xa5{left:404.312100px;}
.xc8{left:406.149450px;}
.x11b{left:408.810600px;}
.xb8{left:412.940250px;}
.xb9{left:415.311769px;}
.xa0{left:421.651500px;}
.x9f{left:424.704000px;}
.xc9{left:427.543350px;}
.x11c{left:430.204650px;}
.xf4{left:436.598550px;}
.xca{left:442.543350px;}
.x11d{left:445.204650px;}
.x106{left:449.386800px;}
.xf5{left:457.992600px;}
.xcb{left:463.937400px;}
.x11e{left:466.598700px;}
.x5{left:471.968550px;}
.x9c{left:477.624900px;}
.xcc{left:478.937400px;}
.x17{left:481.325100px;}
.x58{left:484.026000px;}
.x107{left:485.780850px;}
.x13{left:488.976300px;}
.x57{left:490.384950px;}
.xa3{left:494.521500px;}
.x6{left:497.573850px;}
.xbb{left:498.884700px;}
.x59{left:500.783100px;}
.xb2{left:501.820650px;}
.x108{left:507.174750px;}
.x5b{left:508.877100px;}
.xbc{left:510.236250px;}
.xcd{left:515.331450px;}
.x5d{left:516.959550px;}
.x11f{left:517.992600px;}
.x5e{left:520.421700px;}
.xe1{left:522.174600px;}
.xa8{left:523.189380px;}
.x60{left:527.357700px;}
.xa9{left:530.666384px;}
.x120{left:532.992600px;}
.x62{left:534.293700px;}
.x99{left:536.788500px;}
.x12e{left:538.299150px;}
.x64{left:541.808700px;}
.xe2{left:543.568650px;}
.xb3{left:547.739250px;}
.xce{left:551.725500px;}
.xb1{left:555.614534px;}
.xe3{left:558.568650px;}
.x121{left:562.992600px;}
.x110{left:564.962850px;}
.xb0{left:567.381450px;}
.xcf{left:573.119400px;}
.xaf{left:577.584750px;}
.xe4{left:579.962700px;}
.x87{left:585.254250px;}
.xf6{left:588.568650px;}
.xd0{left:594.513450px;}
.xa1{left:596.626500px;}
.xe5{left:601.356600px;}
.xf7{left:603.568650px;}
.x122{left:605.780700px;}
.xd1{left:609.513450px;}
.x2{left:611.826150px;}
.x109{left:616.356900px;}
.xe6{left:622.750650px;}
.xf8{left:624.962700px;}
.x123{left:627.174750px;}
.xa2{left:629.790000px;}
.xd2{left:630.907500px;}
.x10a{left:637.750800px;}
.xf9{left:639.962700px;}
.x124{left:642.174750px;}
.xe7{left:644.144700px;}
.xd3{left:645.907500px;}
.xd5{left:652.301400px;}
.xa7{left:655.564350px;}
.xd4{left:660.907500px;}
.x125{left:663.568650px;}
.xe8{left:665.538750px;}
.x111{left:668.052450px;}
.x67{left:673.612500px;}
.xfa{left:676.356600px;}
.x126{left:678.568650px;}
.x66{left:680.123700px;}
.x68{left:687.627000px;}
.xd6{left:688.695450px;}
.x69{left:695.709450px;}
.xfb{left:697.750650px;}
.x127{left:699.962700px;}
.x3{left:702.160500px;}
.x6a{left:704.382450px;}
.x6c{left:707.844600px;}
.x9a{left:709.275000px;}
.x10b{left:710.538900px;}
.xfc{left:712.750650px;}
.x128{left:714.962700px;}
.x6d{left:718.810200px;}
.x10c{left:725.538900px;}
.x6e{left:728.062050px;}
.xe9{left:729.720750px;}
.xd7{left:731.483550px;}
.x112{left:740.840400px;}
.x129{left:744.962700px;}
.xd8{left:746.483550px;}
.xfd{left:749.144700px;}
.xea{left:751.114800px;}
.x113{left:762.234450px;}
.x12a{left:766.356750px;}
.xd9{left:767.877600px;}
.xfe{left:770.538600px;}
.xeb{left:772.508850px;}
.x114{left:777.234450px;}
.x12b{left:781.356750px;}
.x116{left:783.628350px;}
.xff{left:785.538600px;}
.xda{left:789.271500px;}
.x115{left:792.234450px;}
.x12c{left:796.356750px;}
.xdb{left:804.271500px;}
.x14{left:871.717950px;}
.x7{left:875.354550px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.984000pt;}
.v1{vertical-align:17.760000pt;}
.v4{vertical-align:26.666667pt;}
.ls2f{letter-spacing:-5.546667pt;}
.ls2e{letter-spacing:-2.880000pt;}
.ls25{letter-spacing:-2.828538pt;}
.ls12{letter-spacing:-2.224792pt;}
.ls1d{letter-spacing:-1.893440pt;}
.ls1e{letter-spacing:-1.704096pt;}
.ls21{letter-spacing:-1.656760pt;}
.ls24{letter-spacing:-1.467416pt;}
.ls22{letter-spacing:-1.278072pt;}
.ls1c{letter-spacing:-1.183400pt;}
.ls5{letter-spacing:-1.066667pt;}
.ls13{letter-spacing:-1.041392pt;}
.ls2c{letter-spacing:-0.906667pt;}
.ls16{letter-spacing:-0.899384pt;}
.ls23{letter-spacing:-0.804712pt;}
.ls1{letter-spacing:-0.746667pt;}
.ls17{letter-spacing:-0.710040pt;}
.ls6{letter-spacing:-0.621867pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls10{letter-spacing:-0.520696pt;}
.ls14{letter-spacing:-0.473360pt;}
.ls1a{letter-spacing:-0.472677pt;}
.ls2b{letter-spacing:-0.453333pt;}
.ls18{letter-spacing:-0.426024pt;}
.ls20{letter-spacing:-0.378688pt;}
.ls15{letter-spacing:-0.378142pt;}
.ls1b{letter-spacing:-0.330874pt;}
.ls19{letter-spacing:-0.189344pt;}
.ls1f{letter-spacing:-0.142008pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.331352pt;}
.lsa{letter-spacing:0.710040pt;}
.ls4{letter-spacing:1.418880pt;}
.ls31{letter-spacing:1.600000pt;}
.ls30{letter-spacing:1.664000pt;}
.ls3{letter-spacing:1.759411pt;}
.ls32{letter-spacing:1.792000pt;}
.ls2{letter-spacing:1.973333pt;}
.lse{letter-spacing:13.170000pt;}
.lsf{letter-spacing:13.193893pt;}
.lsb{letter-spacing:13.197200pt;}
.lsd{letter-spacing:13.197733pt;}
.ls9{letter-spacing:13.221093pt;}
.lsc{letter-spacing:13.221627pt;}
.ls8{letter-spacing:27.208533pt;}
.ls27{letter-spacing:28.798933pt;}
.ls26{letter-spacing:28.799467pt;}
.ls28{letter-spacing:35.032533pt;}
.ls29{letter-spacing:940.790400pt;}
.ls2a{letter-spacing:1031.498667pt;}
.ls2d{letter-spacing:1031.499200pt;}
.wsf{word-spacing:-46.880000pt;}
.ws1c{word-spacing:-28.128000pt;}
.ws52{word-spacing:-21.877333pt;}
.ws4d{word-spacing:-17.189333pt;}
.ws83{word-spacing:-15.626667pt;}
.ws45{word-spacing:-15.216000pt;}
.ws7{word-spacing:-14.400000pt;}
.ws4{word-spacing:-13.706667pt;}
.ws10{word-spacing:-12.960000pt;}
.ws20{word-spacing:-12.544040pt;}
.ws1e{word-spacing:-12.336000pt;}
.ws21{word-spacing:-12.212688pt;}
.ws2b{word-spacing:-12.070680pt;}
.ws26{word-spacing:-12.023344pt;}
.ws2e{word-spacing:-11.834000pt;}
.ws25{word-spacing:-11.816933pt;}
.ws27{word-spacing:-11.786664pt;}
.ws2f{word-spacing:-11.739328pt;}
.ws29{word-spacing:-11.691992pt;}
.ws24{word-spacing:-11.502648pt;}
.ws32{word-spacing:-11.407976pt;}
.ws23{word-spacing:-11.313304pt;}
.ws22{word-spacing:-11.171296pt;}
.ws28{word-spacing:-11.029288pt;}
.ws1d{word-spacing:-10.965333pt;}
.ws31{word-spacing:-10.934616pt;}
.ws33{word-spacing:-10.745272pt;}
.ws30{word-spacing:-10.555928pt;}
.ws2d{word-spacing:-10.508592pt;}
.ws2a{word-spacing:-10.319248pt;}
.ws2c{word-spacing:-9.987896pt;}
.ws5{word-spacing:-7.369120pt;}
.ws11{word-spacing:-7.191888pt;}
.ws50{word-spacing:-5.896262pt;}
.ws4a{word-spacing:-2.688000pt;}
.ws39{word-spacing:-2.650816pt;}
.ws41{word-spacing:-1.940776pt;}
.ws3c{word-spacing:-1.467416pt;}
.ws3a{word-spacing:-1.420080pt;}
.wsb{word-spacing:-0.672000pt;}
.ws2{word-spacing:-0.640000pt;}
.ws1b{word-spacing:-0.480000pt;}
.ws3{word-spacing:-0.340531pt;}
.ws48{word-spacing:-0.336000pt;}
.ws87{word-spacing:-0.192000pt;}
.ws86{word-spacing:-0.064000pt;}
.ws46{word-spacing:-0.046544pt;}
.ws35{word-spacing:-0.037218pt;}
.ws0{word-spacing:0.000000pt;}
.ws13{word-spacing:0.192000pt;}
.ws3b{word-spacing:0.284016pt;}
.ws40{word-spacing:0.330874pt;}
.ws3d{word-spacing:0.378142pt;}
.ws3e{word-spacing:0.426024pt;}
.ws3f{word-spacing:0.472677pt;}
.ws42{word-spacing:0.520696pt;}
.ws8{word-spacing:0.533333pt;}
.ws1{word-spacing:0.746667pt;}
.ws44{word-spacing:0.899384pt;}
.ws5c{word-spacing:0.906667pt;}
.ws6{word-spacing:1.066667pt;}
.ws43{word-spacing:1.704096pt;}
.ws1f{word-spacing:2.112000pt;}
.ws34{word-spacing:2.791320pt;}
.ws7e{word-spacing:2.880000pt;}
.ws82{word-spacing:3.456000pt;}
.ws14{word-spacing:3.600000pt;}
.ws4b{word-spacing:3.648000pt;}
.ws15{word-spacing:3.744000pt;}
.ws1a{word-spacing:3.936000pt;}
.ws4f{word-spacing:4.752000pt;}
.ws84{word-spacing:4.848000pt;}
.ws7f{word-spacing:5.546667pt;}
.ws47{word-spacing:6.672000pt;}
.ws80{word-spacing:7.152000pt;}
.ws12{word-spacing:7.248000pt;}
.ws51{word-spacing:7.392000pt;}
.ws81{word-spacing:7.680000pt;}
.ws19{word-spacing:8.016000pt;}
.ws49{word-spacing:8.208000pt;}
.ws17{word-spacing:9.312000pt;}
.ws16{word-spacing:9.744000pt;}
.ws53{word-spacing:11.808000pt;}
.wse{word-spacing:12.960000pt;}
.wsd{word-spacing:13.632000pt;}
.wsc{word-spacing:15.360000pt;}
.ws4e{word-spacing:29.472000pt;}
.ws18{word-spacing:31.920000pt;}
.ws9{word-spacing:32.256000pt;}
.wsa{word-spacing:33.744000pt;}
.ws70{word-spacing:35.253867pt;}
.ws5f{word-spacing:35.348800pt;}
.ws55{word-spacing:50.308800pt;}
.ws6f{word-spacing:54.457600pt;}
.ws66{word-spacing:76.625067pt;}
.ws6d{word-spacing:76.625600pt;}
.ws58{word-spacing:86.212800pt;}
.ws7b{word-spacing:102.845333pt;}
.ws7a{word-spacing:118.558933pt;}
.ws59{word-spacing:125.965333pt;}
.ws61{word-spacing:131.614933pt;}
.ws36{word-spacing:133.346667pt;}
.ws38{word-spacing:134.137067pt;}
.ws54{word-spacing:136.057600pt;}
.ws37{word-spacing:140.039467pt;}
.ws5e{word-spacing:142.539733pt;}
.ws56{word-spacing:142.540267pt;}
.ws7d{word-spacing:150.692267pt;}
.ws5b{word-spacing:153.210667pt;}
.ws5a{word-spacing:166.312000pt;}
.ws7c{word-spacing:173.865600pt;}
.ws72{word-spacing:180.982400pt;}
.ws63{word-spacing:180.982933pt;}
.ws4c{word-spacing:183.587733pt;}
.ws60{word-spacing:184.264533pt;}
.ws64{word-spacing:202.397867pt;}
.ws69{word-spacing:219.261867pt;}
.ws79{word-spacing:223.341333pt;}
.ws77{word-spacing:231.682667pt;}
.ws73{word-spacing:232.771200pt;}
.ws65{word-spacing:239.843200pt;}
.ws57{word-spacing:242.381333pt;}
.ws5d{word-spacing:257.976533pt;}
.ws6b{word-spacing:259.019200pt;}
.ws71{word-spacing:262.917867pt;}
.ws62{word-spacing:265.275200pt;}
.ws6e{word-spacing:286.355200pt;}
.ws75{word-spacing:289.211200pt;}
.ws6c{word-spacing:303.989867pt;}
.ws67{word-spacing:318.723200pt;}
.ws68{word-spacing:330.237867pt;}
.ws85{word-spacing:423.572267pt;}
.ws6a{word-spacing:789.192533pt;}
.ws76{word-spacing:840.192000pt;}
.ws78{word-spacing:876.915733pt;}
.ws74{word-spacing:1129.362133pt;}
._3f{margin-left:-42.862933pt;}
._47{margin-left:-37.765867pt;}
._43{margin-left:-32.447467pt;}
._13{margin-left:-14.400000pt;}
._51{margin-left:-8.800000pt;}
._46{margin-left:-7.018667pt;}
._b{margin-left:-5.797333pt;}
._1{margin-left:-4.693333pt;}
._2{margin-left:-3.520000pt;}
._0{margin-left:-2.346667pt;}
._3{margin-left:-1.386667pt;}
._4{width:1.333333pt;}
._7{width:2.885333pt;}
._c{width:3.818667pt;}
._d{width:4.858667pt;}
._a{width:5.877333pt;}
._e{width:7.061333pt;}
._11{width:8.112000pt;}
._9{width:9.824000pt;}
._f{width:10.730667pt;}
._10{width:12.810667pt;}
._41{width:13.701333pt;}
._6{width:14.629333pt;}
._8{width:15.525333pt;}
._5{width:16.560000pt;}
._12{width:17.557333pt;}
._39{width:18.921600pt;}
._3a{width:20.424000pt;}
._3c{width:22.012800pt;}
._3e{width:23.126400pt;}
._3d{width:24.240000pt;}
._3b{width:25.977600pt;}
._35{width:27.672000pt;}
._44{width:29.121600pt;}
._36{width:30.710400pt;}
._38{width:32.129067pt;}
._55{width:33.301867pt;}
._40{width:34.353600pt;}
._a9{width:35.347200pt;}
._37{width:36.240000pt;}
._ac{width:37.324800pt;}
._53{width:38.870400pt;}
._54{width:42.837333pt;}
._52{width:44.976000pt;}
._75{width:46.092800pt;}
._ab{width:47.833600pt;}
._48{width:49.197333pt;}
._aa{width:50.313600pt;}
._8d{width:56.451200pt;}
._90{width:62.049067pt;}
._92{width:64.537067pt;}
._6b{width:73.246400pt;}
._a8{width:75.687467pt;}
._61{width:85.736000pt;}
._77{width:87.369067pt;}
._4c{width:90.164267pt;}
._85{width:92.872533pt;}
._5c{width:96.956800pt;}
._6d{width:100.907733pt;}
._5f{width:101.987733pt;}
._45{width:104.179200pt;}
._4d{width:107.972267pt;}
._7a{width:110.731200pt;}
._73{width:114.024533pt;}
._88{width:116.245867pt;}
._b5{width:118.326933pt;}
._6c{width:121.489067pt;}
._9f{width:129.801067pt;}
._71{width:134.395200pt;}
._72{width:141.197867pt;}
._74{width:142.358933pt;}
._83{width:143.740800pt;}
._a6{width:148.749333pt;}
._ad{width:154.640533pt;}
._42{width:156.512000pt;}
._6a{width:159.403200pt;}
._62{width:165.681067pt;}
._5e{width:169.486400pt;}
._7b{width:172.976533pt;}
._57{width:181.164267pt;}
._63{width:185.152000pt;}
._5b{width:191.726933pt;}
._7c{width:195.488533pt;}
._95{width:199.590400pt;}
._94{width:200.811200pt;}
._5a{width:201.925333pt;}
._89{width:205.718400pt;}
._a4{width:208.245333pt;}
._66{width:222.624000pt;}
._86{width:225.064533pt;}
._98{width:227.331200pt;}
._9a{width:229.234667pt;}
._6e{width:231.773867pt;}
._67{width:233.314667pt;}
._9d{width:256.480000pt;}
._5d{width:259.288000pt;}
._29{width:262.452267pt;}
._a2{width:264.776533pt;}
._4e{width:273.443733pt;}
._56{width:275.338667pt;}
._79{width:279.653867pt;}
._50{width:286.868267pt;}
._68{width:292.981333pt;}
._96{width:295.058667pt;}
._8b{width:300.680533pt;}
._8e{width:310.608533pt;}
._a7{width:314.779200pt;}
._4b{width:319.763733pt;}
._21{width:324.213333pt;}
._87{width:327.434667pt;}
._4f{width:329.108267pt;}
._a0{width:332.232000pt;}
._b4{width:333.592533pt;}
._7e{width:337.744533pt;}
._84{width:340.256533pt;}
._4a{width:341.492267pt;}
._76{width:343.112533pt;}
._82{width:344.883733pt;}
._8f{width:347.109333pt;}
._7f{width:355.488533pt;}
._b3{width:372.166933pt;}
._65{width:394.977067pt;}
._a5{width:403.176000pt;}
._9b{width:410.670400pt;}
._49{width:420.116267pt;}
._99{width:441.515733pt;}
._97{width:445.731733pt;}
._b2{width:466.433600pt;}
._ae{width:467.385600pt;}
._b1{width:469.161067pt;}
._8c{width:473.725333pt;}
._9c{width:501.763733pt;}
._69{width:505.179200pt;}
._64{width:512.598400pt;}
._af{width:520.067200pt;}
._b0{width:522.646933pt;}
._91{width:524.449067pt;}
._60{width:544.921067pt;}
._a3{width:573.632000pt;}
._7d{width:625.747200pt;}
._70{width:634.907733pt;}
._6f{width:742.166400pt;}
._78{width:743.568533pt;}
._59{width:748.123733pt;}
._81{width:755.944533pt;}
._2b{width:779.680000pt;}
._8a{width:782.803733pt;}
._80{width:807.008533pt;}
._58{width:829.085333pt;}
._23{width:831.678933pt;}
._2d{width:836.160000pt;}
._1b{width:851.733333pt;}
._a1{width:887.659733pt;}
._33{width:900.853333pt;}
._2e{width:1000.800000pt;}
._2a{width:1050.400000pt;}
._20{width:1106.773333pt;}
._18{width:1138.078933pt;}
._93{width:1140.106133pt;}
._19{width:1169.333333pt;}
._34{width:1190.026667pt;}
._1c{width:1210.080000pt;}
._1f{width:1214.880000pt;}
._1e{width:1254.560000pt;}
._9e{width:1301.454400pt;}
._32{width:1338.080000pt;}
._1d{width:1430.186667pt;}
._28{width:1436.800000pt;}
._26{width:1553.706667pt;}
._1a{width:1560.960000pt;}
._27{width:1651.093333pt;}
._25{width:1657.173333pt;}
._2c{width:1660.265600pt;}
._22{width:1845.386667pt;}
._16{width:1882.026667pt;}
._24{width:1920.213333pt;}
._17{width:1969.386667pt;}
._14{width:2113.386667pt;}
._2f{width:2172.533333pt;}
._15{width:2238.932267pt;}
._30{width:2286.186667pt;}
._31{width:2342.986667pt;}
.fs23{font-size:17.658667pt;}
.fs24{font-size:21.676267pt;}
.fs22{font-size:22.798933pt;}
.fsd{font-size:27.984000pt;}
.fs12{font-size:28.771733pt;}
.fs14{font-size:28.840000pt;}
.fs6{font-size:31.093333pt;}
.fs21{font-size:33.155733pt;}
.fs16{font-size:37.217600pt;}
.fsf{font-size:37.333333pt;}
.fs11{font-size:41.170667pt;}
.fs4{font-size:42.666667pt;}
.fs1b{font-size:44.226133pt;}
.fs25{font-size:45.333333pt;}
.fs17{font-size:46.544000pt;}
.fs15{font-size:47.267733pt;}
.fs13{font-size:47.336000pt;}
.fsa{font-size:48.000000pt;}
.fs1f{font-size:48.290667pt;}
.fs18{font-size:51.721600pt;}
.fs20{font-size:52.200000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:56.755200pt;}
.fs5{font-size:58.666667pt;}
.fs1e{font-size:59.007467pt;}
.fs10{font-size:59.666667pt;}
.fs1d{font-size:60.693333pt;}
.fs8{font-size:64.000000pt;}
.fs1a{font-size:66.339200pt;}
.fs26{font-size:69.333333pt;}
.fs19{font-size:73.888000pt;}
.fs1{font-size:74.666667pt;}
.fs1c{font-size:76.097600pt;}
.fs7{font-size:85.333333pt;}
.fs9{font-size:96.000000pt;}
.fs0{font-size:117.333333pt;}
.fse{font-size:149.333333pt;}
.fsc{font-size:160.000000pt;}
.fsb{font-size:1333.333333pt;}
.y0{bottom:0.000000pt;}
.y128{bottom:3.284267pt;}
.y1c5{bottom:3.694533pt;}
.y13c{bottom:4.118533pt;}
.y13e{bottom:4.118667pt;}
.y120{bottom:4.129733pt;}
.y124{bottom:4.129867pt;}
.y122{bottom:4.130533pt;}
.y126{bottom:4.130800pt;}
.y134{bottom:4.189600pt;}
.y136{bottom:4.190933pt;}
.y138{bottom:4.289467pt;}
.y13a{bottom:4.289600pt;}
.y131{bottom:4.441600pt;}
.y94{bottom:8.803200pt;}
.y8{bottom:8.925467pt;}
.y1b5{bottom:9.053867pt;}
.y5d{bottom:9.060000pt;}
.y119{bottom:20.276667pt;}
.y7{bottom:29.622533pt;}
.y113{bottom:39.306800pt;}
.y10b{bottom:39.341867pt;}
.y104{bottom:39.526133pt;}
.yfc{bottom:39.787200pt;}
.yff{bottom:39.822267pt;}
.y6{bottom:46.649067pt;}
.y21f{bottom:50.519733pt;}
.y1b4{bottom:66.519733pt;}
.y20a{bottom:68.031467pt;}
.yba{bottom:68.031600pt;}
.yf5{bottom:68.031733pt;}
.y211{bottom:70.632533pt;}
.y218{bottom:70.632667pt;}
.y20b{bottom:72.144400pt;}
.y5c{bottom:77.959733pt;}
.ye0{bottom:80.831600pt;}
.y172{bottom:82.519733pt;}
.y22a{bottom:84.582133pt;}
.y1b3{bottom:84.611333pt;}
.yb9{bottom:85.414533pt;}
.y142{bottom:98.519733pt;}
.y1b2{bottom:101.190933pt;}
.y5b{bottom:101.973733pt;}
.y229{bottom:103.782267pt;}
.yb8{bottom:110.356667pt;}
.y141{bottom:114.519733pt;}
.y1b1{bottom:117.770667pt;}
.y5a{bottom:118.608933pt;}
.y2e{bottom:125.013067pt;}
.yf6{bottom:130.519733pt;}
.y1b0{bottom:130.570667pt;}
.yb7{bottom:135.298667pt;}
.y2d{bottom:139.679733pt;}
.y140{bottom:142.966933pt;}
.y1af{bottom:143.370667pt;}
.y93{bottom:146.519733pt;}
.ydd{bottom:148.675333pt;}
.y12b{bottom:152.166533pt;}
.y59{bottom:152.393733pt;}
.y2c{bottom:154.346400pt;}
.y13f{bottom:158.966933pt;}
.yb6{bottom:160.240667pt;}
.yf2{bottom:162.519733pt;}
.y12a{bottom:168.166533pt;}
.y2b{bottom:169.013067pt;}
.y58{bottom:170.839867pt;}
.y92{bottom:172.524933pt;}
.y212{bottom:176.459333pt;}
.y21a{bottom:176.459467pt;}
.y210{bottom:177.971067pt;}
.yf1{bottom:178.519733pt;}
.y2a{bottom:183.679733pt;}
.yb5{bottom:192.741867pt;}
.yf0{bottom:194.519733pt;}
.y91{bottom:198.530133pt;}
.y29{bottom:202.126000pt;}
.y57{bottom:204.624667pt;}
.y135{bottom:208.606667pt;}
.y1ae{bottom:209.880533pt;}
.yef{bottom:210.519733pt;}
.y129{bottom:210.785067pt;}
.y90{bottom:213.196800pt;}
.y56{bottom:223.070933pt;}
.y1ad{bottom:223.213867pt;}
.y133{bottom:224.510667pt;}
.yb4{bottom:225.243067pt;}
.yee{bottom:226.519733pt;}
.y28{bottom:235.910667pt;}
.y1ac{bottom:236.547200pt;}
.y127{bottom:236.853333pt;}
.y8f{bottom:239.202133pt;}
.yed{bottom:242.519733pt;}
.y216{bottom:248.270400pt;}
.y21c{bottom:249.782133pt;}
.y1ab{bottom:249.880533pt;}
.yb3{bottom:250.185067pt;}
.y11e{bottom:251.558400pt;}
.y55{bottom:253.076133pt;}
.y27{bottom:254.356933pt;}
.ye6{bottom:258.519733pt;}
.y1aa{bottom:263.213867pt;}
.y8e{bottom:265.207333pt;}
.y54{bottom:271.522267pt;}
.y207{bottom:272.241467pt;}
.yda{bottom:274.519733pt;}
.yb2{bottom:275.127067pt;}
.y1a9{bottom:279.881200pt;}
.y206{bottom:286.908133pt;}
.y26{bottom:288.141733pt;}
.yd9{bottom:290.519733pt;}
.y8d{bottom:291.212533pt;}
.y1a8{bottom:293.214533pt;}
.y162{bottom:293.968133pt;}
.y139{bottom:297.817333pt;}
.yb1{bottom:300.069200pt;}
.y53{bottom:301.527600pt;}
.y205{bottom:301.574800pt;}
.yd8{bottom:306.519733pt;}
.y1a7{bottom:306.547867pt;}
.y25{bottom:306.587867pt;}
.y161{bottom:308.634800pt;}
.y137{bottom:313.720000pt;}
.y52{bottom:316.194267pt;}
.y8c{bottom:317.217867pt;}
.y1a6{bottom:319.881200pt;}
.y217{bottom:320.081333pt;}
.y21b{bottom:320.081467pt;}
.y20c{bottom:321.593200pt;}
.yd7{bottom:322.519733pt;}
.y160{bottom:323.301467pt;}
.y204{bottom:323.800533pt;}
.y1de{bottom:328.265067pt;}
.y11f{bottom:328.337333pt;}
.y51{bottom:330.860933pt;}
.y8b{bottom:331.884533pt;}
.yb0{bottom:332.570267pt;}
.y1a5{bottom:333.214533pt;}
.y15f{bottom:337.968133pt;}
.y203{bottom:338.467200pt;}
.yd6{bottom:338.519733pt;}
.y24{bottom:340.372667pt;}
.y70{bottom:345.441333pt;}
.y50{bottom:345.527600pt;}
.y1a4{bottom:346.547867pt;}
.yf9{bottom:349.780667pt;}
.y1b9{bottom:351.360800pt;}
.y15e{bottom:352.634800pt;}
.y202{bottom:353.133867pt;}
.yd5{bottom:354.519733pt;}
.y23{bottom:355.039333pt;}
.yaf{bottom:357.512267pt;}
.y8a{bottom:357.889733pt;}
.y1c4{bottom:358.274667pt;}
.y4f{bottom:360.194267pt;}
.y1a3{bottom:363.215067pt;}
.y201{bottom:367.800533pt;}
.y144{bottom:368.186000pt;}
.y1ca{bottom:370.102800pt;}
.yd4{bottom:370.519733pt;}
.y15d{bottom:371.080933pt;}
.y22{bottom:373.485600pt;}
.y4e{bottom:374.860933pt;}
.y1a2{bottom:376.548400pt;}
.y1c3{bottom:377.485653pt;}
.y6f{bottom:379.226133pt;}
.yae{bottom:382.454400pt;}
.y200{bottom:382.467200pt;}
.y89{bottom:383.895067pt;}
.y171{bottom:386.519600pt;}
.yd3{bottom:386.519733pt;}
.y4d{bottom:389.527600pt;}
.y1a1{bottom:389.881733pt;}
.y209{bottom:392.186000pt;}
.y1c2{bottom:393.002133pt;}
.ye8{bottom:394.960667pt;}
.y1b8{bottom:395.360800pt;}
.y213{bottom:395.671867pt;}
.y219{bottom:395.672000pt;}
.y1ff{bottom:397.133867pt;}
.y20d{bottom:397.183733pt;}
.y6e{bottom:397.892800pt;}
.y88{bottom:398.561733pt;}
.y15c{bottom:400.865733pt;}
.y170{bottom:402.519600pt;}
.yd2{bottom:402.519733pt;}
.y1a0{bottom:403.215067pt;}
.y4c{bottom:404.194267pt;}
.y21{bottom:407.270400pt;}
.y121{bottom:409.245333pt;}
.yad{bottom:411.176000pt;}
.y132{bottom:411.461333pt;}
.y1fe{bottom:411.800533pt;}
.y15b{bottom:415.532400pt;}
.yde{bottom:416.186000pt;}
.y19f{bottom:416.548400pt;}
.y1d2{bottom:417.788035pt;}
.yd1{bottom:418.519733pt;}
.y4b{bottom:418.860933pt;}
.y20{bottom:421.937067pt;}
.y87{bottom:424.566933pt;}
.y1fd{bottom:426.467200pt;}
.y130{bottom:427.364000pt;}
.y6d{bottom:427.677600pt;}
.y19e{bottom:429.881733pt;}
.y15a{bottom:430.199067pt;}
.y4a{bottom:433.527600pt;}
.yac{bottom:433.671867pt;}
.y16f{bottom:434.519600pt;}
.yd0{bottom:434.519733pt;}
.y1b7{bottom:439.360800pt;}
.ye7{bottom:439.760800pt;}
.y208{bottom:440.186000pt;}
.y1f{bottom:440.383200pt;}
.y1c9{bottom:442.189360pt;}
.y6c{bottom:442.344267pt;}
.y19d{bottom:443.215067pt;}
.y159{bottom:444.865733pt;}
.y232{bottom:445.296667pt;}
.y1d1{bottom:445.300267pt;}
.y49{bottom:448.194267pt;}
.y1fc{bottom:448.692933pt;}
.ycf{bottom:450.519733pt;}
.y86{bottom:450.572133pt;}
.yab{bottom:456.167733pt;}
.y19c{bottom:456.548400pt;}
.y1c8{bottom:457.705840pt;}
.y1d3{bottom:458.783067pt;}
.y48{bottom:462.860933pt;}
.y158{bottom:463.312000pt;}
.y1fb{bottom:463.359600pt;}
.y143{bottom:464.186000pt;}
.y85{bottom:465.238800pt;}
.ydb{bottom:466.519733pt;}
.y13d{bottom:469.642667pt;}
.y231{bottom:471.035200pt;}
.y6b{bottom:472.129067pt;}
.y1d0{bottom:472.254267pt;}
.y19b{bottom:473.215600pt;}
.y1c7{bottom:473.222320pt;}
.y1e{bottom:474.168000pt;}
.y47{bottom:477.527600pt;}
.y1fa{bottom:478.026267pt;}
.yaa{bottom:478.663600pt;}
.y16c{bottom:482.519600pt;}
.yce{bottom:482.519733pt;}
.y1b6{bottom:483.360800pt;}
.y13b{bottom:485.545333pt;}
.y19a{bottom:486.548933pt;}
.y6a{bottom:486.795733pt;}
.y1c6{bottom:488.738800pt;}
.y1d{bottom:488.834667pt;}
.y123{bottom:490.154667pt;}
.y84{bottom:491.244133pt;}
.y46{bottom:492.194267pt;}
.y1cf{bottom:492.602667pt;}
.y1f9{bottom:492.692933pt;}
.y157{bottom:493.096667pt;}
.y230{bottom:494.790267pt;}
.y16b{bottom:498.519600pt;}
.ycd{bottom:498.519733pt;}
.y199{bottom:499.882267pt;}
.ya9{bottom:504.938933pt;}
.y45{bottom:506.860933pt;}
.y1c{bottom:507.280800pt;}
.y1f8{bottom:507.359600pt;}
.y156{bottom:507.763333pt;}
.y198{bottom:513.215600pt;}
.y16e{bottom:514.519600pt;}
.ycc{bottom:514.519733pt;}
.y69{bottom:516.580533pt;}
.y83{bottom:517.249333pt;}
.y1f7{bottom:522.026267pt;}
.y155{bottom:522.430000pt;}
.y44{bottom:525.307067pt;}
.y197{bottom:526.548933pt;}
.y1d5{bottom:526.763333pt;}
.y22f{bottom:528.087867pt;}
.ya8{bottom:529.880933pt;}
.ydc{bottom:530.318667pt;}
.y16a{bottom:530.519600pt;}
.ycb{bottom:530.519733pt;}
.y68{bottom:531.247200pt;}
.y82{bottom:531.916000pt;}
.y1f6{bottom:536.692933pt;}
.y154{bottom:537.096667pt;}
.y196{bottom:539.882267pt;}
.y1b{bottom:541.065600pt;}
.y1d4{bottom:542.423333pt;}
.y22e{bottom:542.487867pt;}
.y1c1{bottom:542.693486pt;}
.y169{bottom:546.519600pt;}
.yca{bottom:546.519733pt;}
.y1f5{bottom:551.359600pt;}
.y1be{bottom:552.300773pt;}
.y195{bottom:553.215600pt;}
.ya7{bottom:554.823067pt;}
.y1c0{bottom:554.886853pt;}
.y43{bottom:555.312400pt;}
.y153{bottom:555.542933pt;}
.y1a{bottom:555.732267pt;}
.y81{bottom:557.921200pt;}
.y67{bottom:561.031867pt;}
.y16d{bottom:562.519600pt;}
.yc9{bottom:562.519733pt;}
.y1f4{bottom:566.026267pt;}
.y1bd{bottom:567.817253pt;}
.y194{bottom:569.882933pt;}
.y42{bottom:569.979067pt;}
.y19{bottom:570.398933pt;}
.y1bf{bottom:570.403333pt;}
.y125{bottom:571.062667pt;}
.y66{bottom:575.698533pt;}
.y22d{bottom:575.785467pt;}
.y168{bottom:578.519600pt;}
.yc8{bottom:578.519733pt;}
.y1d7{bottom:578.721147pt;}
.y193{bottom:583.216267pt;}
.y1bc{bottom:583.333733pt;}
.ya6{bottom:583.544667pt;}
.y80{bottom:583.926533pt;}
.y41{bottom:584.645733pt;}
.y152{bottom:585.327733pt;}
.y1f3{bottom:588.252000pt;}
.y1d6{bottom:588.667867pt;}
.y18{bottom:588.845200pt;}
.y22c{bottom:590.185600pt;}
.y167{bottom:594.519600pt;}
.yc7{bottom:594.519733pt;}
.y192{bottom:596.549600pt;}
.y40{bottom:599.312400pt;}
.y151{bottom:599.994400pt;}
.y1f2{bottom:602.918667pt;}
.y65{bottom:605.483333pt;}
.ya5{bottom:606.040533pt;}
.y191{bottom:609.882933pt;}
.y7f{bottom:609.931733pt;}
.y166{bottom:610.519600pt;}
.yc6{bottom:610.519733pt;}
.y22b{bottom:612.144533pt;}
.y3f{bottom:613.979067pt;}
.y150{bottom:614.661067pt;}
.y1f1{bottom:617.585333pt;}
.y17{bottom:622.629867pt;}
.y190{bottom:623.216267pt;}
.y64{bottom:624.150000pt;}
.y165{bottom:626.519600pt;}
.yc5{bottom:626.519733pt;}
.y14f{bottom:629.327733pt;}
.y1dd{bottom:632.156187pt;}
.y1f0{bottom:632.252000pt;}
.ya4{bottom:632.315867pt;}
.y3e{bottom:632.425200pt;}
.y1ce{bottom:632.642053pt;}
.y11d{bottom:632.787467pt;}
.y7e{bottom:635.937067pt;}
.y18f{bottom:636.549600pt;}
.y16{bottom:637.296533pt;}
.y1dc{bottom:638.659067pt;}
.y164{bottom:642.519600pt;}
.yc4{bottom:642.519733pt;}
.y63{bottom:642.816667pt;}
.y14e{bottom:643.994400pt;}
.y1cd{bottom:645.909893pt;}
.y1ef{bottom:646.918667pt;}
.y11c{bottom:648.787467pt;}
.y1d9{bottom:651.344453pt;}
.y15{bottom:651.963200pt;}
.y18e{bottom:653.216933pt;}
.ya3{bottom:653.478400pt;}
.y214{bottom:656.459333pt;}
.y20e{bottom:657.971067pt;}
.y1d8{bottom:658.184133pt;}
.y163{bottom:658.519600pt;}
.yec{bottom:658.519733pt;}
.y14d{bottom:658.661067pt;}
.y1cc{bottom:659.177733pt;}
.y62{bottom:661.483333pt;}
.y7d{bottom:661.942267pt;}
.y3d{bottom:662.430400pt;}
.y18d{bottom:666.550267pt;}
.y14{bottom:666.629867pt;}
.y1cb{bottom:672.445733pt;}
.y1ee{bottom:672.923867pt;}
.y14c{bottom:673.327733pt;}
.yc3{bottom:674.519733pt;}
.ya2{bottom:675.974267pt;}
.yf8{bottom:678.797333pt;}
.y18c{bottom:679.883600pt;}
.y3c{bottom:680.120667pt;}
.y61{bottom:680.150000pt;}
.y1db{bottom:682.048400pt;}
.y13{bottom:685.076133pt;}
.y11b{bottom:686.092667pt;}
.y1da{bottom:687.346000pt;}
.y1ed{bottom:687.590533pt;}
.y7c{bottom:687.947467pt;}
.yc2{bottom:690.519733pt;}
.y14b{bottom:691.773867pt;}
.y18b{bottom:693.216933pt;}
.y3b{bottom:697.811067pt;}
.ya1{bottom:698.470133pt;}
.y60{bottom:698.816667pt;}
.y118{bottom:699.074000pt;}
.y11a{bottom:700.512667pt;}
.y1ec{bottom:702.257200pt;}
.yc1{bottom:706.519733pt;}
.y18a{bottom:706.550267pt;}
.y7b{bottom:713.952667pt;}
.y3a{bottom:715.501333pt;}
.y1eb{bottom:716.923867pt;}
.y5f{bottom:717.483333pt;}
.y12{bottom:718.860800pt;}
.y189{bottom:719.883600pt;}
.y14a{bottom:721.558800pt;}
.yc0{bottom:722.519733pt;}
.y116{bottom:722.947733pt;}
.y117{bottom:722.948689pt;}
.ya0{bottom:724.745467pt;}
.y1ea{bottom:731.590533pt;}
.y112{bottom:732.230667pt;}
.y39{bottom:733.191600pt;}
.y149{bottom:736.225467pt;}
.y188{bottom:736.550800pt;}
.y11{bottom:737.307067pt;}
.y115{bottom:737.350667pt;}
.ybf{bottom:738.519733pt;}
.y7a{bottom:739.958000pt;}
.y9f{bottom:745.908000pt;}
.y187{bottom:749.884133pt;}
.y38{bottom:750.881867pt;}
.y148{bottom:750.892133pt;}
.y114{bottom:751.239867pt;}
.ybe{bottom:754.519733pt;}
.y1e9{bottom:757.595733pt;}
.y5e{bottom:762.606667pt;}
.y186{bottom:763.217467pt;}
.y147{bottom:765.558800pt;}
.y79{bottom:765.963200pt;}
.y9e{bottom:768.403867pt;}
.y37{bottom:768.572133pt;}
.ybd{bottom:770.519733pt;}
.y10{bottom:771.091867pt;}
.y111{bottom:771.537467pt;}
.y1e8{bottom:772.262400pt;}
.y185{bottom:776.550800pt;}
.y146{bottom:784.004933pt;}
.y36{bottom:786.262400pt;}
.ybc{bottom:786.519733pt;}
.y1e7{bottom:786.929067pt;}
.yf{bottom:789.538133pt;}
.y184{bottom:789.884133pt;}
.y9d{bottom:790.899733pt;}
.y10f{bottom:791.280400pt;}
.y78{bottom:791.968533pt;}
.ye5{bottom:802.519733pt;}
.y183{bottom:803.217467pt;}
.y35{bottom:803.952667pt;}
.y10e{bottom:805.173067pt;}
.y1e6{bottom:812.934400pt;}
.y10a{bottom:814.434667pt;}
.y9c{bottom:817.175067pt;}
.y77{bottom:817.973733pt;}
.ye4{bottom:818.519733pt;}
.y110{bottom:819.571951pt;}
.y10d{bottom:819.572533pt;}
.y182{bottom:819.884800pt;}
.y34{bottom:821.643067pt;}
.y145{bottom:822.461733pt;}
.ye{bottom:823.322800pt;}
.y228{bottom:823.798133pt;}
.y1e5{bottom:827.601067pt;}
.y4{bottom:829.927067pt;}
.y181{bottom:833.218133pt;}
.y10c{bottom:833.465067pt;}
.ye3{bottom:834.519733pt;}
.y33{bottom:839.333333pt;}
.ybb{bottom:840.462400pt;}
.yd{bottom:841.769067pt;}
.y9b{bottom:842.117200pt;}
.y1e4{bottom:842.267733pt;}
.y76{bottom:843.979067pt;}
.y180{bottom:846.551467pt;}
.y227{bottom:846.594667pt;}
.ye2{bottom:850.519733pt;}
.y109{bottom:853.776533pt;}
.y32{bottom:857.023600pt;}
.y17f{bottom:859.884800pt;}
.ye1{bottom:866.519733pt;}
.y1e3{bottom:868.272933pt;}
.y226{bottom:869.391067pt;}
.y75{bottom:869.984267pt;}
.y17e{bottom:873.218133pt;}
.y108{bottom:873.498800pt;}
.y9a{bottom:874.618267pt;}
.y31{bottom:874.713867pt;}
.yc{bottom:875.553733pt;}
.y225{bottom:876.057733pt;}
.yeb{bottom:882.519733pt;}
.y3{bottom:882.608933pt;}
.y1e2{bottom:882.939600pt;}
.y74{bottom:884.650933pt;}
.y17d{bottom:886.551467pt;}
.y107{bottom:887.391467pt;}
.y30{bottom:892.404267pt;}
.y103{bottom:893.557333pt;}
.yb{bottom:894.000000pt;}
.y215{bottom:894.569600pt;}
.y20f{bottom:896.081333pt;}
.y1e1{bottom:897.606267pt;}
.ydf{bottom:898.519733pt;}
.y99{bottom:899.560267pt;}
.y17c{bottom:899.884800pt;}
.y106{bottom:901.797733pt;}
.y224{bottom:905.520800pt;}
.y2f{bottom:910.094533pt;}
.y73{bottom:910.656133pt;}
.y1e0{bottom:912.272933pt;}
.y21e{bottom:914.519600pt;}
.yf4{bottom:914.519733pt;}
.y105{bottom:915.704133pt;}
.y2{bottom:915.942267pt;}
.y17b{bottom:916.552000pt;}
.y98{bottom:924.502400pt;}
.y72{bottom:925.322800pt;}
.ya{bottom:927.784800pt;}
.y223{bottom:928.317200pt;}
.y17a{bottom:929.885333pt;}
.yea{bottom:930.519733pt;}
.y102{bottom:933.083467pt;}
.y179{bottom:943.218667pt;}
.y9{bottom:946.230933pt;}
.yf3{bottom:946.519733pt;}
.yfe{bottom:947.502667pt;}
.y1{bottom:949.275600pt;}
.y97{bottom:949.444400pt;}
.y1df{bottom:950.729600pt;}
.y222{bottom:951.113733pt;}
.y101{bottom:953.120933pt;}
.y178{bottom:956.552000pt;}
.y71{bottom:958.887067pt;}
.y12f{bottom:962.519733pt;}
.yfb{bottom:963.430667pt;}
.y100{bottom:967.013467pt;}
.y177{bottom:969.885333pt;}
.y21d{bottom:972.010933pt;}
.y221{bottom:973.910133pt;}
.y12d{bottom:978.519733pt;}
.y96{bottom:981.945600pt;}
.y176{bottom:983.218667pt;}
.yfd{bottom:987.324933pt;}
.y233{bottom:989.413467pt;}
.y220{bottom:994.480800pt;}
.y12e{bottom:994.519733pt;}
.y175{bottom:996.552000pt;}
.ye9{bottom:1002.677600pt;}
.yfa{bottom:1003.217867pt;}
.y1bb{bottom:1010.519733pt;}
.y174{bottom:1017.754667pt;}
.y12c{bottom:1026.519733pt;}
.y5{bottom:1027.840667pt;}
.yf7{bottom:1028.578000pt;}
.y95{bottom:1033.344267pt;}
.y173{bottom:1042.356400pt;}
.y1ba{bottom:1042.519733pt;}
.h37{height:12.855992pt;}
.h25{height:13.533333pt;}
.h24{height:14.380000pt;}
.h38{height:15.780915pt;}
.h29{height:16.289333pt;}
.h27{height:16.290667pt;}
.h36{height:16.598247pt;}
.h35{height:24.138280pt;}
.h23{height:26.573366pt;}
.hb{height:30.378667pt;}
.h6{height:30.458333pt;}
.h17{height:32.128000pt;}
.h2f{height:32.197834pt;}
.h3d{height:32.368000pt;}
.h1c{height:32.565997pt;}
.h28{height:33.977120pt;}
.h3c{height:34.136000pt;}
.h12{height:34.272000pt;}
.h3b{height:34.453333pt;}
.h2a{height:35.062500pt;}
.h33{height:35.156926pt;}
.h21{height:35.349700pt;}
.h1f{height:35.400754pt;}
.h19{height:35.484375pt;}
.h10{height:36.144000pt;}
.h11{height:36.480000pt;}
.h2b{height:37.654739pt;}
.h34{height:38.003027pt;}
.h8{height:38.080000pt;}
.h40{height:38.666667pt;}
.h4{height:38.828125pt;}
.h9{height:39.960640pt;}
.ha{height:40.160000pt;}
.he{height:40.533333pt;}
.h5{height:41.319337pt;}
.h3f{height:42.613333pt;}
.h32{height:42.959049pt;}
.h31{height:44.186406pt;}
.h7{height:44.586667pt;}
.h42{height:46.593750pt;}
.h26{height:46.874667pt;}
.h1a{height:47.196333pt;}
.h2e{height:48.296752pt;}
.hd{height:51.136000pt;}
.h2d{height:53.792484pt;}
.h3e{height:54.842667pt;}
.h30{height:55.401134pt;}
.h16{height:59.061333pt;}
.h3a{height:59.533333pt;}
.h3{height:59.658667pt;}
.h41{height:60.802667pt;}
.h22{height:67.818667pt;}
.hc{height:68.181333pt;}
.hf{height:76.704000pt;}
.h1d{height:85.288000pt;}
.h20{height:86.828000pt;}
.h1e{height:86.829333pt;}
.h2{height:93.749333pt;}
.h18{height:119.317333pt;}
.h39{height:126.560000pt;}
.h15{height:127.840000pt;}
.h2c{height:360.238667pt;}
.h1b{height:369.921333pt;}
.h13{height:592.201333pt;}
.h14{height:1054.666667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:12.858667pt;}
.w9{width:22.597333pt;}
.wc{width:27.140000pt;}
.wf{width:32.581333pt;}
.wb{width:36.980000pt;}
.we{width:38.010667pt;}
.w11{width:38.398667pt;}
.wa{width:39.124000pt;}
.wd{width:74.470667pt;}
.w12{width:95.416000pt;}
.w10{width:97.354667pt;}
.w7{width:114.630667pt;}
.w6{width:123.880000pt;}
.w5{width:169.034667pt;}
.w4{width:319.057333pt;}
.w3{width:651.590667pt;}
.w13{width:688.897333pt;}
.w2{width:773.023200pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x71{left:1.907867pt;}
.x19{left:5.041867pt;}
.x10{left:6.354000pt;}
.x4{left:9.463333pt;}
.x8f{left:10.656667pt;}
.x54{left:11.611600pt;}
.x89{left:13.723867pt;}
.x5a{left:14.895200pt;}
.x1b{left:15.826800pt;}
.x90{left:17.357333pt;}
.x55{left:18.806267pt;}
.xd{left:20.678133pt;}
.x5c{left:22.089867pt;}
.x80{left:23.008000pt;}
.x1d{left:24.045867pt;}
.x56{left:26.000933pt;}
.x6b{left:27.351067pt;}
.x1f{left:29.699333pt;}
.x5f{left:32.351733pt;}
.x92{left:33.804933pt;}
.x8d{left:34.803333pt;}
.x82{left:36.892800pt;}
.x61{left:38.517067pt;}
.x21{left:39.976800pt;}
.x84{left:43.593333pt;}
.x63{left:44.682400pt;}
.x93{left:45.858933pt;}
.x8e{left:47.195867pt;}
.x6f{left:48.399600pt;}
.xa{left:50.393600pt;}
.x65{left:51.362400pt;}
.xab{left:52.401333pt;}
.x77{left:54.380000pt;}
.x24{left:55.370800pt;}
.x86{left:56.974000pt;}
.x16{left:60.472400pt;}
.xf{left:61.805733pt;}
.x95{left:62.811067pt;}
.xb4{left:63.901200pt;}
.x1{left:68.031467pt;}
.x11{left:69.364800pt;}
.x18{left:71.056000pt;}
.x70{left:72.963867pt;}
.xb5{left:74.139867pt;}
.xb{left:75.590533pt;}
.xb6{left:77.364262pt;}
.x28{left:78.476800pt;}
.x72{left:79.654000pt;}
.x7a{left:81.614533pt;}
.x12{left:83.149600pt;}
.x88{left:84.779867pt;}
.x1a{left:86.882800pt;}
.x7b{left:87.800400pt;}
.xbf{left:89.175467pt;}
.xc{left:90.708667pt;}
.x8a{left:91.974533pt;}
.x73{left:93.538933pt;}
.x1c{left:95.101867pt;}
.x10d{left:96.935600pt;}
.x2b{left:98.017867pt;}
.x8b{left:99.169200pt;}
.x1e{left:100.755333pt;}
.x2d{left:102.627333pt;}
.x91{left:104.860933pt;}
.x8c{left:105.859333pt;}
.x81{left:107.948800pt;}
.x7d{left:108.957600pt;}
.x74{left:109.986667pt;}
.x20{left:111.032800pt;}
.x83{left:114.649333pt;}
.x2f{left:116.514800pt;}
.x75{left:118.735467pt;}
.x22{left:121.817733pt;}
.x53{left:123.314267pt;}
.x76{left:125.436000pt;}
.x23{left:126.426800pt;}
.x85{left:128.030000pt;}
.x25{left:131.036267pt;}
.x78{left:132.630667pt;}
.x94{left:133.867067pt;}
.xdc{left:134.969333pt;}
.x32{left:137.069867pt;}
.x26{left:139.255200pt;}
.x100{left:140.653067pt;}
.x34{left:141.679200pt;}
.xc0{left:143.202933pt;}
.x79{left:146.515600pt;}
.x36{left:147.824800pt;}
.x27{left:149.532800pt;}
.x8{left:152.440933pt;}
.xec{left:153.986133pt;}
.x96{left:155.430400pt;}
.x29{left:158.289067pt;}
.x101{left:159.669867pt;}
.x97{left:161.595733pt;}
.xb7{left:163.850663pt;}
.x39{left:165.322133pt;}
.x9d{left:167.678667pt;}
.x2a{left:169.073867pt;}
.x9{left:171.338533pt;}
.xba{left:172.537867pt;}
.x2c{left:173.683333pt;}
.xdd{left:174.969333pt;}
.xa4{left:177.817600pt;}
.x3c{left:180.209067pt;}
.x12d{left:183.643333pt;}
.x9e{left:185.909333pt;}
.x2e{left:187.570800pt;}
.x3e{left:189.994533pt;}
.x102{left:192.020133pt;}
.x40{left:194.603867pt;}
.x30{left:197.848267pt;}
.x117{left:199.669867pt;}
.x42{left:203.852133pt;}
.xed{left:205.353333pt;}
.xc1{left:206.920267pt;}
.x31{left:208.125867pt;}
.x33{left:212.735200pt;}
.x44{left:214.129733pt;}
.x9b{left:216.220400pt;}
.x35{left:218.880800pt;}
.xa6{left:223.325467pt;}
.xee{left:224.370267pt;}
.xc2{left:225.937200pt;}
.x37{left:228.666133pt;}
.x7e{left:231.344933pt;}
.x38{left:236.378133pt;}
.x103{left:237.703733pt;}
.xde{left:239.669733pt;}
.x3a{left:240.987467pt;}
.x47{left:242.412000pt;}
.xef{left:243.387067pt;}
.xac{left:245.612267pt;}
.x3b{left:251.265067pt;}
.x49{left:252.689600pt;}
.xf0{left:256.720400pt;}
.xc3{left:258.287333pt;}
.x3d{left:261.050533pt;}
.x4b{left:262.967067pt;}
.x3f{left:265.659867pt;}
.x4d{left:267.084133pt;}
.xf1{left:270.053733pt;}
.xbd{left:271.339200pt;}
.x4f{left:273.229600pt;}
.x41{left:274.908133pt;}
.x7c{left:276.386267pt;}
.x15{left:278.172667pt;}
.xbe{left:279.339867pt;}
.xf2{left:283.387067pt;}
.x43{left:285.185733pt;}
.x52{left:287.087333pt;}
.x10e{left:289.070800pt;}
.xdf{left:291.036933pt;}
.xc4{left:296.321200pt;}
.xaa{left:298.013600pt;}
.x45{left:299.073200pt;}
.x104{left:302.404133pt;}
.x118{left:304.370267pt;}
.xc5{left:309.654533pt;}
.xe{left:310.673867pt;}
.xad{left:311.629333pt;}
.x46{left:313.468000pt;}
.x105{left:315.737467pt;}
.xae{left:318.275559pt;}
.xe0{left:319.488400pt;}
.x10f{left:321.421067pt;}
.x48{left:323.745600pt;}
.x98{left:327.673333pt;}
.xc6{left:328.671467pt;}
.x4a{left:334.023067pt;}
.x119{left:336.720533pt;}
.x4c{left:338.140133pt;}
.xc7{left:342.004800pt;}
.x4e{left:344.285600pt;}
.x7f{left:345.541067pt;}
.x50{left:348.895067pt;}
.x11a{left:350.053867pt;}
.xf3{left:355.737333pt;}
.x51{left:358.143333pt;}
.xa5{left:359.388533pt;}
.xc8{left:361.021733pt;}
.x11b{left:363.387200pt;}
.xb8{left:367.058000pt;}
.xb9{left:369.166017pt;}
.xa0{left:374.801333pt;}
.x9f{left:377.514667pt;}
.xc9{left:380.038533pt;}
.x11c{left:382.404133pt;}
.xf4{left:388.087600pt;}
.xca{left:393.371867pt;}
.x11d{left:395.737467pt;}
.x106{left:399.454933pt;}
.xf5{left:407.104533pt;}
.xcb{left:412.388800pt;}
.x11e{left:414.754400pt;}
.x5{left:419.527600pt;}
.x9c{left:424.555467pt;}
.xcc{left:425.722133pt;}
.x17{left:427.844533pt;}
.x58{left:430.245333pt;}
.x107{left:431.805200pt;}
.x13{left:434.645600pt;}
.x57{left:435.897733pt;}
.xa3{left:439.574667pt;}
.x6{left:442.287867pt;}
.xbb{left:443.453067pt;}
.x59{left:445.140533pt;}
.xb2{left:446.062800pt;}
.x108{left:450.822000pt;}
.x5b{left:452.335200pt;}
.xbc{left:453.543333pt;}
.xcd{left:458.072400pt;}
.x5d{left:459.519600pt;}
.x11f{left:460.437867pt;}
.x5e{left:462.597067pt;}
.xe1{left:464.155200pt;}
.xa8{left:465.057227pt;}
.x60{left:468.762400pt;}
.xa9{left:471.703452pt;}
.x120{left:473.771200pt;}
.x62{left:474.927733pt;}
.x99{left:477.145333pt;}
.x12e{left:478.488133pt;}
.x64{left:481.607733pt;}
.xe2{left:483.172133pt;}
.xb3{left:486.879333pt;}
.xce{left:490.422667pt;}
.xb1{left:493.879586pt;}
.xe3{left:496.505467pt;}
.x121{left:500.437867pt;}
.x110{left:502.189200pt;}
.xb0{left:504.339067pt;}
.xcf{left:509.439467pt;}
.xaf{left:513.408667pt;}
.xe4{left:515.522400pt;}
.x87{left:520.226000pt;}
.xf6{left:523.172133pt;}
.xd0{left:528.456400pt;}
.xa1{left:530.334667pt;}
.xe5{left:534.539200pt;}
.xf7{left:536.505467pt;}
.x122{left:538.471733pt;}
.xd1{left:541.789733pt;}
.x2{left:543.845467pt;}
.x109{left:547.872800pt;}
.xe6{left:553.556133pt;}
.xf8{left:555.522400pt;}
.x123{left:557.488667pt;}
.xa2{left:559.813333pt;}
.xd2{left:560.806667pt;}
.x10a{left:566.889600pt;}
.xf9{left:568.855733pt;}
.x124{left:570.822000pt;}
.xe7{left:572.573067pt;}
.xd3{left:574.140000pt;}
.xd5{left:579.823467pt;}
.xa7{left:582.723867pt;}
.xd4{left:587.473333pt;}
.x125{left:589.838800pt;}
.xe8{left:591.590000pt;}
.x111{left:593.824400pt;}
.x67{left:598.766667pt;}
.xfa{left:601.205867pt;}
.x126{left:603.172133pt;}
.x66{left:604.554400pt;}
.x68{left:611.224000pt;}
.xd6{left:612.173733pt;}
.x69{left:618.408400pt;}
.xfb{left:620.222800pt;}
.x127{left:622.189067pt;}
.x3{left:624.142667pt;}
.x6a{left:626.117733pt;}
.x6c{left:629.195200pt;}
.x9a{left:630.466667pt;}
.x10b{left:631.590133pt;}
.xfc{left:633.556133pt;}
.x128{left:635.522400pt;}
.x6d{left:638.942400pt;}
.x10c{left:644.923467pt;}
.x6e{left:647.166267pt;}
.xe9{left:648.640667pt;}
.xd7{left:650.207600pt;}
.x112{left:658.524800pt;}
.x129{left:662.189067pt;}
.xd8{left:663.540933pt;}
.xfd{left:665.906400pt;}
.xea{left:667.657600pt;}
.x113{left:677.541733pt;}
.x12a{left:681.206000pt;}
.xd9{left:682.557867pt;}
.xfe{left:684.923200pt;}
.xeb{left:686.674533pt;}
.x114{left:690.875067pt;}
.x12b{left:694.539333pt;}
.x116{left:696.558533pt;}
.xff{left:698.256533pt;}
.xda{left:701.574667pt;}
.x115{left:704.208400pt;}
.x12c{left:707.872667pt;}
.xdb{left:714.908000pt;}
.x14{left:774.860400pt;}
.x7{left:778.092933pt;}
}




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