
    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_d1b49b564ac58cf56b3618c2.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1abd555bf9a87a42920e7c4f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.961000;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_2a1191c7165b93b6174fb15c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.712000;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_83de4d079fc821fecb5fed3b.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f59a1f7634fdb1e65355fd61.woff')format("woff");}.ff5{font-family:ff5;line-height:0.958008;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_34865baa0a42d8aeffd64a9c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.031738;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_21f58e7af02572510dd7b065.woff')format("woff");}.ff7{font-family:ff7;line-height:0.759857;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_e004c2b6e2234f5c177ce340.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_4879d07ae02edcbf82b89bad.woff')format("woff");}.ff9{font-family:ff9;line-height:1.088000;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_83de4d079fc821fecb5fed3b.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_7380244615f3040a2c507398.woff')format("woff");}.ffb{font-family:ffb;line-height:0.906000;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_2d3455bb0159b966e1c21e8c.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e3152c3c6b522d0b3e064617.woff')format("woff");}.ffd{font-family:ffd;line-height:1.047000;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_9f89626950532afe738c240f.woff')format("woff");}.ffe{font-family:ffe;line-height:1.088000;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_2cae7d6b45dc5cfc294bf627.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_db3811f4364bbb37bcda54da.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_28284b68cc52da1596f3afbe.woff')format("woff");}.ff11{font-family:ff11;line-height:0.906000;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_0e7b0c04578e36c2af904948.woff')format("woff");}.ff12{font-family:ff12;line-height:0.931641;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_1407e45a551621b372a43b31.woff')format("woff");}.ff13{font-family:ff13;line-height:0.918945;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_dfa2c6e50c8e6a3f8a3c9bc4.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_3419f4dfb2508bb47f34e419.woff')format("woff");}.ff15{font-family:ff15;line-height:1.088000;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_ded3b99219ef94e081a210ea.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_aaeffdc3a94d3195aca6513c.woff')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_2cae22f81f1ae946bf9ff446.woff')format("woff");}.ff18{font-family:ff18;line-height:0.906000;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_2fc5b2ee67dd11b72858a877.woff')format("woff");}.ff19{font-family:ff19;line-height:0.881836;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_cefdef76c3d6f05a457dc9ee.woff')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_3059c987705e425b5b921076.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.088000;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_c7dad69e26ac4399608be233.woff')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_1407a8bc13d13fa0d144ee3b.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_b98a06873596be1b2a3c708e.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.906000;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_ae4d3ebd9146959853ddad52.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.881836;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_c99aaaf11558f4d62b98306c.woff')format("woff");}.ff20{font-family:ff20;line-height:0.919922;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_20fd9b754e9af894cb66f73a.woff')format("woff");}.ff21{font-family:ff21;line-height:0.924805;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_76e423d4159520e75d1f2a49.woff')format("woff");}.ff22{font-family:ff22;line-height:0.704102;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_ac54fae3aa4d55249a22a462.woff')format("woff");}.ff23{font-family:ff23;line-height:1.074219;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_17fbe41b79f5700d0e8ead60.woff')format("woff");}.ff24{font-family:ff24;line-height:1.078613;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_fcbbc8b2303006149945df00.woff')format("woff");}.ff25{font-family:ff25;line-height:0.911133;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_fcbbc8b2303006149945df00.woff')format("woff");}.ff26{font-family:ff26;line-height:0.911133;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_e3506c6e5c29aea73111d9a6.woff')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_20747f8dc52e60614ee8f71a.woff')format("woff");}.ff28{font-family:ff28;line-height:0.906738;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_227659f4f8fc1864d27fdb72.woff')format("woff");}.ff29{font-family:ff29;line-height:0.743652;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_72e3641f2710ab0e7db80703.woff')format("woff");}.ff2a{font-family:ff2a;line-height:1.074219;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_349b724fe3e1b9762ef2602a.woff')format("woff");}.ff2b{font-family:ff2b;line-height:1.078613;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_e46d9ac6e8a06b78bd03bf75.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.911133;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_2cb92e83856fb38d5e12e715.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_1c9493c2079398cbbb3aed4b.woff')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_2a69404b771acd846b285465.woff')format("woff");}.ff2f{font-family:ff2f;line-height:1.074219;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_46f7a972541807c0fafa26fe.woff')format("woff");}.ff30{font-family:ff30;line-height:1.078613;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_1da141a888212ffb1c05da17.woff')format("woff");}.ff31{font-family:ff31;line-height:0.911133;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:ff32;src:url('chunks/assets/font_697db4c7c2f06353d8f58770.woff')format("woff");}.ff32{font-family:ff32;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:ff33;src:url('chunks/assets/font_9a463473943f077ddaa04018.woff')format("woff");}.ff33{font-family:ff33;line-height:0.906738;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:ff34;src:url('chunks/assets/font_692c12b84bf34a3738282ccc.woff')format("woff");}.ff34{font-family:ff34;line-height:1.074219;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:ff35;src:url('chunks/assets/font_9c4b690f2b595a994201ab68.woff')format("woff");}.ff35{font-family:ff35;line-height:1.078613;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:ff36;src:url('chunks/assets/font_e5efa7b98fec7614cf24d28a.woff')format("woff");}.ff36{font-family:ff36;line-height:0.911133;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:ff37;src:url('chunks/assets/font_4f91d9a8701bd22ef5b84ec9.woff')format("woff");}.ff37{font-family:ff37;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:ff38;src:url('chunks/assets/font_89b4901b6c785d6869f9e61f.woff')format("woff");}.ff38{font-family:ff38;line-height:0.916992;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:ff39;src:url('chunks/assets/font_29abef520372778551ecc7ba.woff')format("woff");}.ff39{font-family:ff39;line-height:0.919922;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:ff3a;src:url('chunks/assets/font_2c7f1394c43b341c7b9b26ee.woff')format("woff");}.ff3a{font-family:ff3a;line-height:1.078613;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:ff3b;src:url('chunks/assets/font_92aa6bf916cc1fdfac4ef60e.woff')format("woff");}.ff3b{font-family:ff3b;line-height:0.911133;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:ff3c;src:url('chunks/assets/font_7c29d66b7b77a92c55888d46.woff')format("woff");}.ff3c{font-family:ff3c;line-height:0.919922;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:ff3d;src:url('chunks/assets/font_68754cbc5ab998bbcd270da6.woff')format("woff");}.ff3d{font-family:ff3d;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:ff3e;src:url('chunks/assets/font_f9981c77e6abbec49478e28f.woff')format("woff");}.ff3e{font-family:ff3e;line-height:0.919922;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:ff3f;src:url('chunks/assets/font_2d264c8c5f8434f63464a130.woff')format("woff");}.ff3f{font-family:ff3f;line-height:1.078613;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:ff40;src:url('chunks/assets/font_234332d9010665167471762d.woff')format("woff");}.ff40{font-family:ff40;line-height:0.911133;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:ff41;src:url('chunks/assets/font_5cb298c278210ba4fd3c7ed5.woff')format("woff");}.ff41{font-family:ff41;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:ff42;src:url('chunks/assets/font_8a4e10ce95aa4d2e0afe1f0f.woff')format("woff");}.ff42{font-family:ff42;line-height:0.909668;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:ff43;src:url('chunks/assets/font_72be43680f1c3f98fda190e0.woff')format("woff");}.ff43{font-family:ff43;line-height:1.074219;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:ff44;src:url('chunks/assets/font_40701c29a3aa2000ae8f7bab.woff')format("woff");}.ff44{font-family:ff44;line-height:1.078613;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:ff45;src:url('chunks/assets/font_24184f77946d1a4ba1ca830e.woff')format("woff");}.ff45{font-family:ff45;line-height:0.911133;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:ff46;src:url('chunks/assets/font_2a9aa264f70a1b62204fe115.woff')format("woff");}.ff46{font-family:ff46;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:ff47;src:url('chunks/assets/font_60252548a86bdbd44b6bf77a.woff')format("woff");}.ff47{font-family:ff47;line-height:0.906738;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:ff48;src:url('chunks/assets/font_c2d5689c5688ddc671cd7ca8.woff')format("woff");}.ff48{font-family:ff48;line-height:0.919922;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:ff49;src:url('chunks/assets/font_cfe463d22e4a248c33cbff27.woff')format("woff");}.ff49{font-family:ff49;line-height:1.078613;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:ff4a;src:url('chunks/assets/font_b980eac756b1fd01e98e9134.woff')format("woff");}.ff4a{font-family:ff4a;line-height:0.911133;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:ff4b;src:url('chunks/assets/font_32e4977cc191dc8457411639.woff')format("woff");}.ff4b{font-family:ff4b;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:ff4c;src:url('chunks/assets/font_ff56b84ba1a4e57f2db3a3d1.woff')format("woff");}.ff4c{font-family:ff4c;line-height:0.730778;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:ff4d;src:url('chunks/assets/font_95d8c59e27c450b68e2ec5c9.woff')format("woff");}.ff4d{font-family:ff4d;line-height:1.050692;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:ff4e;src:url('chunks/assets/font_e7d8f39865c2cb1e07d2705e.woff')format("woff");}.ff4e{font-family:ff4e;line-height:0.968000;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:ff4f;src:url('chunks/assets/font_bea318706c489c365c145bc9.woff')format("woff");}.ff4f{font-family:ff4f;line-height:1.012695;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:ff50;src:url('chunks/assets/font_cb466d6aaa376d48f544add5.woff')format("woff");}.ff50{font-family:ff50;line-height:0.904000;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:ff51;src:url('chunks/assets/font_a82d9f546b3af4b67762bc0e.woff')format("woff");}.ff51{font-family:ff51;line-height:0.906738;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:ff52;src:url('chunks/assets/font_7164d0a11f7874f6b7abe455.woff')format("woff");}.ff52{font-family:ff52;line-height:1.074219;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:ff53;src:url('chunks/assets/font_62478e75b103a7a891dee596.woff')format("woff");}.ff53{font-family:ff53;line-height:1.078613;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:ff54;src:url('chunks/assets/font_e634fcb8c4bc13573aa6f572.woff')format("woff");}.ff54{font-family:ff54;line-height:0.911133;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:ff55;src:url('chunks/assets/font_a53988bd2eaae76e720838f0.woff')format("woff");}.ff55{font-family:ff55;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:ff56;src:url('chunks/assets/font_9cc30f4767bb55e76df03afb.woff')format("woff");}.ff56{font-family:ff56;line-height:0.708008;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:ff57;src:url('chunks/assets/font_f51ad6465dbaf2a4b49a10e2.woff')format("woff");}.ff57{font-family:ff57;line-height:0.919922;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:ff58;src:url('chunks/assets/font_272153012608aa33d7a3fa7c.woff')format("woff");}.ff58{font-family:ff58;line-height:1.078613;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:ff59;src:url('chunks/assets/font_b390fded96b7355d6faac4a2.woff')format("woff");}.ff59{font-family:ff59;line-height:0.911133;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:ff5a;src:url('chunks/assets/font_d07ead8c1f9d2f542ce8d953.woff')format("woff");}.ff5a{font-family:ff5a;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:ff5b;src:url('chunks/assets/font_700d220cfa0efdcded171aa6.woff')format("woff");}.ff5b{font-family:ff5b;line-height:0.916992;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:ff5c;src:url('chunks/assets/font_33cb9c075ca370851ec73cdd.woff')format("woff");}.ff5c{font-family:ff5c;line-height:0.939941;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:ff5d;src:url('chunks/assets/font_f71b669ada2d57b2b99bbc78.woff')format("woff");}.ff5d{font-family:ff5d;line-height:1.078613;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:ff5e;src:url('chunks/assets/font_52e73ea9fc865998cca58a72.woff')format("woff");}.ff5e{font-family:ff5e;line-height:0.911133;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:ff5f;src:url('chunks/assets/font_355e6cc1eec5176bce49527b.woff')format("woff");}.ff5f{font-family:ff5f;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:ff60;src:url('chunks/assets/font_d64844b36880b9d13233f8c4.woff')format("woff");}.ff60{font-family:ff60;line-height:0.906738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.176777,0.176777,-0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,0.176777,-0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,0.176777,-0.176777,0.176777,0,0);}
.m3{transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-ms-transform:matrix(0.241481,0.000000,-0.064705,0.241481,0,0);-webkit-transform:matrix(0.241481,0.000000,-0.064705,0.241481,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:13.800000px;}
.v5{vertical-align:16.200000px;}
.v1{vertical-align:40.200000px;}
.v6{vertical-align:41.400000px;}
.v3{vertical-align:44.400000px;}
.v2{vertical-align:46.200000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.228000px;}
.lsa{letter-spacing:0.432000px;}
.ls4{letter-spacing:31.776000px;}
.ls5{letter-spacing:36.288000px;}
.ls1{letter-spacing:50.520000px;}
.ls6{letter-spacing:50.832000px;}
.ls2{letter-spacing:51.120000px;}
.lsb{letter-spacing:73.707000px;}
.ls3{letter-spacing:73.920000px;}
.lsc{letter-spacing:78.180000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-103.680000px;}
.ws4{word-spacing:-43.200000px;}
.ws9{word-spacing:-42.240000px;}
.ws13{word-spacing:-38.400000px;}
.ws12{word-spacing:-33.600000px;}
.ws35{word-spacing:-33.000000px;}
.wsa{word-spacing:-30.720000px;}
.wsd{word-spacing:-30.240000px;}
.ws2b{word-spacing:-30.000000px;}
.ws36{word-spacing:-27.000000px;}
.ws5{word-spacing:-26.880000px;}
.ws2c{word-spacing:-24.000000px;}
.ws1{word-spacing:-23.520000px;}
.ws1d{word-spacing:-21.840000px;}
.ws2a{word-spacing:-21.000000px;}
.ws2f{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.800000px;}
.ws2e{word-spacing:-15.000000px;}
.ws14{word-spacing:-13.440000px;}
.ws8{word-spacing:-12.744000px;}
.ws7{word-spacing:-12.360000px;}
.ws6{word-spacing:-11.472000px;}
.ws0{word-spacing:-0.084000px;}
.ws3{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws38{word-spacing:12.000000px;}
.wse{word-spacing:97.872000px;}
.ws19{word-spacing:155.712000px;}
.ws1a{word-spacing:159.048000px;}
.ws1b{word-spacing:167.808000px;}
.ws1c{word-spacing:172.944000px;}
.ws15{word-spacing:173.520000px;}
.ws17{word-spacing:190.608000px;}
.ws18{word-spacing:214.440000px;}
.ws37{word-spacing:220.848000px;}
.ws16{word-spacing:229.752000px;}
.ws30{word-spacing:240.792000px;}
.wsf{word-spacing:249.024000px;}
.ws10{word-spacing:257.424000px;}
.ws1e{word-spacing:261.828000px;}
.ws1f{word-spacing:269.268000px;}
.ws21{word-spacing:290.790000px;}
.ws26{word-spacing:301.788000px;}
.ws22{word-spacing:301.980000px;}
.ws24{word-spacing:305.868000px;}
.ws28{word-spacing:309.138000px;}
.ws29{word-spacing:327.162000px;}
.ws20{word-spacing:340.578000px;}
.ws23{word-spacing:349.002000px;}
.ws32{word-spacing:355.344000px;}
.ws31{word-spacing:363.144000px;}
.ws11{word-spacing:393.744000px;}
.ws2d{word-spacing:529.344000px;}
.ws25{word-spacing:715.722000px;}
.ws27{word-spacing:1098.162000px;}
.ws33{word-spacing:1856.568000px;}
.ws34{word-spacing:2466.096000px;}
._fa{margin-left:-2745.648000px;}
._87{margin-left:-2741.016000px;}
._c{margin-left:-2696.688000px;}
._e2{margin-left:-2654.328000px;}
._52{margin-left:-2611.020000px;}
._e0{margin-left:-2552.856000px;}
._e4{margin-left:-2389.488000px;}
._cc{margin-left:-2211.384000px;}
._d3{margin-left:-2008.464000px;}
._c0{margin-left:-1998.264000px;}
._9c{margin-left:-1963.704000px;}
._ce{margin-left:-1918.584000px;}
._c6{margin-left:-1884.408000px;}
._e{margin-left:-1756.908000px;}
._c2{margin-left:-1727.160000px;}
._56{margin-left:-1538.316000px;}
._5e{margin-left:-1521.912000px;}
._4a{margin-left:-1445.196000px;}
._ea{margin-left:-1443.864000px;}
._8b{margin-left:-1431.960000px;}
._98{margin-left:-1393.176000px;}
._b0{margin-left:-1373.304000px;}
._2c{margin-left:-1369.176000px;}
._ca{margin-left:-1361.304000px;}
._71{margin-left:-1284.600000px;}
._e6{margin-left:-1252.440000px;}
._4e{margin-left:-1155.120000px;}
._85{margin-left:-1135.032000px;}
._35{margin-left:-1114.836000px;}
._81{margin-left:-1068.888000px;}
._29{margin-left:-1055.988000px;}
._24{margin-left:-1042.164000px;}
._ec{margin-left:-1034.232000px;}
._1c{margin-left:-1021.200000px;}
._22{margin-left:-1013.748000px;}
._1e{margin-left:-1005.972000px;}
._a7{margin-left:-1004.664000px;}
._90{margin-left:-996.696000px;}
._54{margin-left:-977.844000px;}
._b4{margin-left:-973.728000px;}
._4c{margin-left:-966.096000px;}
._16{margin-left:-926.496000px;}
._d0{margin-left:-899.136000px;}
._50{margin-left:-884.496000px;}
._ab{margin-left:-865.848000px;}
._a9{margin-left:-863.352000px;}
._e8{margin-left:-842.040000px;}
._20{margin-left:-836.052000px;}
._84{margin-left:-831.288000px;}
._f4{margin-left:-823.704000px;}
._75{margin-left:-775.896000px;}
._ad{margin-left:-735.480000px;}
._11{margin-left:-729.048000px;}
._f8{margin-left:-724.920000px;}
._1a{margin-left:-722.376000px;}
._a5{margin-left:-714.072000px;}
._9a{margin-left:-700.632000px;}
._b8{margin-left:-697.896000px;}
._fc{margin-left:-690.744000px;}
._2f{margin-left:-681.624000px;}
._7d{margin-left:-679.404000px;}
._a2{margin-left:-648.504000px;}
._f2{margin-left:-645.240000px;}
._f6{margin-left:-634.392000px;}
._18{margin-left:-631.716000px;}
._c8{margin-left:-613.272000px;}
._ba{margin-left:-610.836000px;}
._db{margin-left:-597.144000px;}
._8d{margin-left:-572.388000px;}
._a0{margin-left:-547.032000px;}
._89{margin-left:-530.520000px;}
._f0{margin-left:-508.920000px;}
._d9{margin-left:-507.168000px;}
._d7{margin-left:-493.464000px;}
._be{margin-left:-488.280000px;}
._31{margin-left:-478.968000px;}
._46{margin-left:-474.552000px;}
._94{margin-left:-464.376000px;}
._26{margin-left:-462.612000px;}
._44{margin-left:-460.440000px;}
._9e{margin-left:-458.616000px;}
._2d{margin-left:-454.548000px;}
._b6{margin-left:-433.656000px;}
._96{margin-left:-427.128000px;}
._77{margin-left:-400.152000px;}
._48{margin-left:-394.968000px;}
._33{margin-left:-384.120000px;}
._bc{margin-left:-363.000000px;}
._92{margin-left:-357.336000px;}
._c4{margin-left:-355.032000px;}
._73{margin-left:-341.880000px;}
._ee{margin-left:-301.656000px;}
._7f{margin-left:-261.528000px;}
._d5{margin-left:-192.408000px;}
._79{margin-left:-181.752000px;}
._43{margin-left:-105.036000px;}
._b3{margin-left:-12.276000px;}
._8{margin-left:-11.220000px;}
._5{margin-left:-9.612000px;}
._3{margin-left:-8.256000px;}
._70{margin-left:-7.008000px;}
._10{margin-left:-5.760000px;}
._9{margin-left:-4.632000px;}
._a{margin-left:-3.432000px;}
._4{margin-left:-2.340000px;}
._2{margin-left:-1.248000px;}
._0{width:1.152000px;}
._1{width:2.688000px;}
._5d{width:4.344000px;}
._b2{width:5.400000px;}
._b{width:6.708000px;}
._14{width:8.988000px;}
._7{width:10.104000px;}
._6{width:11.544000px;}
._13{width:12.888000px;}
._15{width:13.908000px;}
._2b{width:80.640000px;}
._3b{width:127.056000px;}
._7a{width:133.152000px;}
._7b{width:137.112000px;}
._d6{width:143.904000px;}
._5c{width:151.662000px;}
._3e{width:153.528000px;}
._65{width:163.122000px;}
._3d{width:167.748000px;}
._67{width:172.254000px;}
._8f{width:190.548000px;}
._68{width:205.554000px;}
._3c{width:208.416000px;}
._80{width:213.504000px;}
._57{width:217.320000px;}
._69{width:247.392000px;}
._ef{width:253.152000px;}
._a4{width:263.340000px;}
._42{width:268.476000px;}
._6f{width:271.302000px;}
._6d{width:276.630000px;}
._74{width:293.280000px;}
._40{width:295.236000px;}
._af{width:303.504000px;}
._c5{width:306.528000px;}
._93{width:309.504000px;}
._bd{width:314.880000px;}
._39{width:320.616000px;}
._34{width:330.048000px;}
._38{width:334.440000px;}
._37{width:337.344000px;}
._49{width:340.800000px;}
._66{width:342.702000px;}
._6e{width:347.148000px;}
._78{width:352.128000px;}
._6b{width:364.770000px;}
._97{width:379.104000px;}
._b7{width:385.728000px;}
._2e{width:400.800000px;}
._45{width:406.272000px;}
._27{width:408.672000px;}
._9f{width:410.304000px;}
._95{width:416.352000px;}
._47{width:420.000000px;}
._32{width:424.800000px;}
._bf{width:439.680000px;}
._df{width:442.668000px;}
._d8{width:445.152000px;}
._41{width:448.704000px;}
._6a{width:450.792000px;}
._da{width:460.128000px;}
._f1{width:461.280000px;}
._8a{width:482.304000px;}
._5b{width:494.088000px;}
._a1{width:498.528000px;}
._3a{width:501.840000px;}
._5a{width:520.374000px;}
._8e{width:524.928000px;}
._dc{width:549.504000px;}
._bb{width:563.904000px;}
._c9{width:565.152000px;}
._3f{width:567.552000px;}
._6c{width:573.468000px;}
._f7{width:586.752000px;}
._19{width:591.768000px;}
._f3{width:597.504000px;}
._a3{width:601.152000px;}
._59{width:603.030000px;}
._dd{width:622.008000px;}
._de{width:625.632000px;}
._30{width:627.072000px;}
._7e{width:631.680000px;}
._d2{width:633.888000px;}
._fd{width:642.528000px;}
._b9{width:650.880000px;}
._9b{width:653.280000px;}
._a6{width:666.528000px;}
._12{width:668.448000px;}
._64{width:671.856000px;}
._63{width:674.784000px;}
._f9{width:677.280000px;}
._1b{width:681.192000px;}
._ae{width:687.552000px;}
._58{width:723.930000px;}
._76{width:727.680000px;}
._f5{width:775.680000px;}
._21{width:783.072000px;}
._e9{width:794.304000px;}
._aa{width:815.328000px;}
._ac{width:818.304000px;}
._51{width:831.072000px;}
._d1{width:851.328000px;}
._17{width:885.744000px;}
._7c{width:899.952000px;}
._4d{width:912.672000px;}
._55{width:924.000000px;}
._b5{width:926.304000px;}
._91{width:949.152000px;}
._1f{width:953.472000px;}
._a8{width:956.928000px;}
._62{width:958.128000px;}
._23{width:960.672000px;}
._1d{width:968.448000px;}
._ed{width:986.304000px;}
._25{width:989.472000px;}
._83{width:993.948000px;}
._2a{width:1003.200000px;}
._82{width:1021.152000px;}
._28{width:1041.396000px;}
._36{width:1061.472000px;}
._86{width:1087.680000px;}
._4f{width:1101.600000px;}
._e7{width:1204.704000px;}
._72{width:1237.152000px;}
._cb{width:1313.952000px;}
._b1{width:1326.528000px;}
._60{width:1334.760000px;}
._99{width:1345.728000px;}
._8c{width:1384.128000px;}
._4b{width:1393.248000px;}
._eb{width:1396.704000px;}
._61{width:1443.120000px;}
._5f{width:1474.080000px;}
._c3{width:1679.904000px;}
._f{width:1704.672000px;}
._c7{width:1838.304000px;}
._cf{width:1871.328000px;}
._9d{width:1916.352000px;}
._c1{width:1951.104000px;}
._d4{width:1961.280000px;}
._cd{width:2164.128000px;}
._e5{width:2342.880000px;}
._e1{width:2506.080000px;}
._53{width:2558.400000px;}
._e3{width:2607.552000px;}
._d{width:2645.472000px;}
._88{width:2694.528000px;}
._fb{width:2699.328000px;}
.fc5{color:rgb(21,132,102);}
.fc4{color:rgb(201,33,30);}
.fc3{color:rgb(89,131,176);}
.fc1{color:rgb(0,0,128);}
.fc2{color:rgb(178,178,178);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:36.000000px;}
.fsa{font-size:48.000000px;}
.fs3{font-size:51.000000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fsb{font-size:78.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fsc{font-size:96.600000px;}
.fsd{font-size:99.386513px;}
.fs6{font-size:108.000000px;}
.fs9{font-size:120.000000px;}
.fs7{font-size:132.000000px;}
.fs12{font-size:144.000000px;}
.fs11{font-size:156.000000px;}
.fs10{font-size:168.000000px;}
.fse{font-size:180.000000px;}
.fs8{font-size:324.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:0.042000px;}
.y1a5{bottom:0.081000px;}
.yd{bottom:0.156405px;}
.y10c{bottom:0.231315px;}
.y2{bottom:1.500000px;}
.yc{bottom:67.089000px;}
.y109{bottom:67.239000px;}
.y174{bottom:97.581000px;}
.y180{bottom:99.231000px;}
.y1d9{bottom:100.431000px;}
.y1e8{bottom:100.581000px;}
.y181{bottom:102.081000px;}
.y76{bottom:103.131000px;}
.ydb{bottom:103.431000px;}
.yc2{bottom:103.581000px;}
.y87{bottom:103.731000px;}
.yc0{bottom:104.781000px;}
.ycd{bottom:105.381000px;}
.y185{bottom:107.931000px;}
.y1d7{bottom:111.681000px;}
.y193{bottom:113.031000px;}
.y1d8{bottom:113.331000px;}
.y17f{bottom:113.481000px;}
.y1ad{bottom:114.081000px;}
.y1d0{bottom:114.531000px;}
.ycf{bottom:114.681000px;}
.y71{bottom:114.981000px;}
.y1bb{bottom:115.131000px;}
.y1b9{bottom:115.431000px;}
.y74{bottom:115.989000px;}
.y212{bottom:117.081000px;}
.y213{bottom:117.231000px;}
.y8a{bottom:117.489000px;}
.y1aa{bottom:117.789000px;}
.y184{bottom:118.581000px;}
.y18e{bottom:118.731000px;}
.y192{bottom:119.331000px;}
.y6c{bottom:120.339000px;}
.y81{bottom:120.639000px;}
.y186{bottom:120.981000px;}
.y75{bottom:121.131000px;}
.yc1{bottom:121.431000px;}
.y16a{bottom:121.881000px;}
.y1fc{bottom:121.989000px;}
.ybf{bottom:122.781000px;}
.ycc{bottom:123.231000px;}
.y18d{bottom:123.381000px;}
.y17a{bottom:123.489000px;}
.y214{bottom:123.981000px;}
.y63{bottom:124.839000px;}
.y1f4{bottom:125.631000px;}
.y1f{bottom:126.339000px;}
.y190{bottom:127.881000px;}
.y7a{bottom:127.989000px;}
.yce{bottom:129.081000px;}
.y6f{bottom:129.189000px;}
.y1b6{bottom:130.689000px;}
.ydd{bottom:130.731000px;}
.y182{bottom:131.031000px;}
.y15f{bottom:131.439000px;}
.y1ac{bottom:131.481000px;}
.yd5{bottom:132.039000px;}
.y19a{bottom:133.281000px;}
.y69{bottom:134.889000px;}
.y13a{bottom:135.039000px;}
.y1a3{bottom:136.689000px;}
.y217{bottom:136.839000px;}
.ya0{bottom:137.139000px;}
.y1ef{bottom:137.439000px;}
.y14a{bottom:137.589000px;}
.y51{bottom:138.489000px;}
.y16d{bottom:138.789000px;}
.yfa{bottom:138.939000px;}
.yd7{bottom:139.989000px;}
.yed{bottom:140.139000px;}
.yda{bottom:140.481000px;}
.ybe{bottom:140.631000px;}
.y1f5{bottom:140.781000px;}
.y15b{bottom:141.489000px;}
.y34{bottom:141.639000px;}
.y211{bottom:141.789000px;}
.yae{bottom:142.389000px;}
.ybd{bottom:144.039000px;}
.y1e2{bottom:144.939000px;}
.y159{bottom:145.539000px;}
.y16e{bottom:146.031000px;}
.y1df{bottom:147.339000px;}
.ydc{bottom:148.731000px;}
.y1e{bottom:148.989000px;}
.y19e{bottom:149.289000px;}
.y19d{bottom:149.439000px;}
.y80{bottom:149.589000px;}
.y83{bottom:150.489000px;}
.y7d{bottom:151.389000px;}
.yec{bottom:151.839000px;}
.y15e{bottom:151.989000px;}
.y1a4{bottom:152.289000px;}
.y6d{bottom:153.339000px;}
.y62{bottom:153.639000px;}
.y6e{bottom:153.939000px;}
.y16f{bottom:154.389000px;}
.y191{bottom:154.731000px;}
.ye0{bottom:155.289000px;}
.y139{bottom:155.739000px;}
.y67{bottom:155.889000px;}
.yab{bottom:157.239000px;}
.y1d3{bottom:157.839000px;}
.yd9{bottom:158.481000px;}
.y129{bottom:159.039000px;}
.y4c{bottom:159.489000px;}
.y173{bottom:159.789000px;}
.y163{bottom:159.939000px;}
.y5e{bottom:160.989000px;}
.y8b{bottom:162.981000px;}
.y68{bottom:163.839000px;}
.y1ee{bottom:165.189000px;}
.y33{bottom:165.489000px;}
.y9f{bottom:165.939000px;}
.yb9{bottom:168.339000px;}
.yf9{bottom:168.489000px;}
.y1b5{bottom:168.939000px;}
.yb{bottom:169.539000px;}
.yd4{bottom:169.689000px;}
.y1ba{bottom:170.289000px;}
.y183{bottom:170.439000px;}
.y15a{bottom:170.739000px;}
.y96{bottom:171.189000px;}
.y4f{bottom:171.489000px;}
.y1d{bottom:171.789000px;}
.y210{bottom:173.439000px;}
.y78{bottom:174.339000px;}
.y19b{bottom:174.789000px;}
.y149{bottom:175.839000px;}
.y1e1{bottom:176.589000px;}
.yb4{bottom:176.889000px;}
.ybc{bottom:177.039000px;}
.y108{bottom:177.189000px;}
.y7f{bottom:178.389000px;}
.y1da{bottom:178.839000px;}
.y216{bottom:179.139000px;}
.y1c2{bottom:179.589000px;}
.yf8{bottom:180.189000px;}
.y1fd{bottom:180.789000px;}
.y160{bottom:180.831000px;}
.y16c{bottom:180.939000px;}
.y1fb{bottom:181.539000px;}
.y49{bottom:181.989000px;}
.y61{bottom:182.589000px;}
.yd8{bottom:183.381000px;}
.y86{bottom:183.489000px;}
.ye1{bottom:183.939000px;}
.y7c{bottom:184.389000px;}
.y66{bottom:184.839000px;}
.y91{bottom:185.589000px;}
.y179{bottom:186.939000px;}
.y18f{bottom:187.281000px;}
.y198{bottom:187.539000px;}
.y3a{bottom:188.889000px;}
.y32{bottom:189.189000px;}
.y56{bottom:189.489000px;}
.y1b8{bottom:190.989000px;}
.y101{bottom:191.139000px;}
.y1ae{bottom:191.439000px;}
.y168{bottom:191.739000px;}
.y54{bottom:192.489000px;}
.y1ed{bottom:192.939000px;}
.y4a{bottom:193.989000px;}
.y1c{bottom:194.439000px;}
.y9e{bottom:194.589000px;}
.ya{bottom:194.739000px;}
.y208{bottom:194.889000px;}
.yea{bottom:195.789000px;}
.y122{bottom:196.539000px;}
.y1b4{bottom:196.839000px;}
.yad{bottom:199.839000px;}
.y95{bottom:199.989000px;}
.y14d{bottom:200.439000px;}
.y6b{bottom:200.889000px;}
.y138{bottom:201.939000px;}
.y143{bottom:202.239000px;}
.y73{bottom:202.989000px;}
.y148{bottom:203.589000px;}
.y5d{bottom:203.739000px;}
.y140{bottom:203.889000px;}
.y103{bottom:204.189000px;}
.y50{bottom:204.489000px;}
.y1be{bottom:206.139000px;}
.y18c{bottom:206.289000px;}
.yb8{bottom:207.039000px;}
.y7e{bottom:207.339000px;}
.yd3{bottom:207.489000px;}
.y1cc{bottom:208.389000px;}
.yac{bottom:208.539000px;}
.y1fa{bottom:209.289000px;}
.y166{bottom:209.589000px;}
.y1d6{bottom:210.489000px;}
.y60{bottom:211.389000px;}
.y1f8{bottom:212.439000px;}
.y16b{bottom:212.739000px;}
.y31{bottom:213.039000px;}
.y171{bottom:214.239000px;}
.y90{bottom:214.389000px;}
.yaa{bottom:214.689000px;}
.y70{bottom:214.989000px;}
.yb3{bottom:215.739000px;}
.y20a{bottom:215.889000px;}
.y1b{bottom:217.239000px;}
.y79{bottom:217.839000px;}
.y1e4{bottom:218.589000px;}
.y178{bottom:218.739000px;}
.y1e0{bottom:218.889000px;}
.ye8{bottom:219.039000px;}
.y9{bottom:219.789000px;}
.y1ec{bottom:220.689000px;}
.y1a2{bottom:221.139000px;}
.y17e{bottom:221.289000px;}
.y128{bottom:222.639000px;}
.y151{bottom:223.239000px;}
.y9d{bottom:223.389000px;}
.y39{bottom:223.689000px;}
.yf7{bottom:224.139000px;}
.y4b{bottom:225.489000px;}
.yc5{bottom:226.689000px;}
.y77{bottom:226.989000px;}
.y7b{bottom:227.439000px;}
.y170{bottom:228.039000px;}
.y94{bottom:228.639000px;}
.y1ce{bottom:229.539000px;}
.y6a{bottom:229.839000px;}
.yeb{bottom:230.739000px;}
.y13f{bottom:231.489000px;}
.y137{bottom:231.639000px;}
.y1d2{bottom:231.789000px;}
.y1e7{bottom:232.389000px;}
.y121{bottom:233.139000px;}
.y172{bottom:233.739000px;}
.y127{bottom:233.889000px;}
.y1b3{bottom:235.089000px;}
.y72{bottom:235.989000px;}
.y30{bottom:236.739000px;}
.y1f9{bottom:237.039000px;}
.y165{bottom:237.189000px;}
.ya4{bottom:237.339000px;}
.y52{bottom:237.489000px;}
.y18b{bottom:237.939000px;}
.ybb{bottom:239.439000px;}
.y1a{bottom:239.889000px;}
.y1dc{bottom:240.039000px;}
.y5f{bottom:240.339000px;}
.y147{bottom:241.839000px;}
.y1d4{bottom:242.289000px;}
.ye7{bottom:242.439000px;}
.y8f{bottom:243.039000px;}
.ya9{bottom:243.489000px;}
.y27{bottom:244.239000px;}
.y162{bottom:244.389000px;}
.y8{bottom:244.989000px;}
.yd2{bottom:245.139000px;}
.y1c1{bottom:245.589000px;}
.yb7{bottom:245.889000px;}
.yf6{bottom:247.539000px;}
.y209{bottom:247.689000px;}
.y53{bottom:247.989000px;}
.y1eb{bottom:248.439000px;}
.y1f7{bottom:249.639000px;}
.y177{bottom:250.389000px;}
.y1cb{bottom:250.539000px;}
.y1a1{bottom:252.789000px;}
.y215{bottom:253.089000px;}
.y107{bottom:253.239000px;}
.y1a9{bottom:254.400000px;}
.yb2{bottom:254.439000px;}
.y158{bottom:254.889000px;}
.y155{bottom:255.789000px;}
.yd6{bottom:256.539000px;}
.y82{bottom:257.289000px;}
.y93{bottom:257.439000px;}
.y20f{bottom:257.889000px;}
.y48{bottom:258.489000px;}
.y58{bottom:258.789000px;}
.y150{bottom:259.239000px;}
.y2f{bottom:260.589000px;}
.yc6{bottom:261.339000px;}
.y100{bottom:261.789000px;}
.y1bd{bottom:262.239000px;}
.y1c8{bottom:262.689000px;}
.y119{bottom:263.289000px;}
.y17d{bottom:263.589000px;}
.y1a7{bottom:264.750000px;}
.y113{bottom:264.789000px;}
.y13e{bottom:265.389000px;}
.ye9{bottom:265.689000px;}
.ya3{bottom:265.989000px;}
.y1a0{bottom:266.439000px;}
.y38{bottom:266.739000px;}
.ycb{bottom:267.039000px;}
.y26{bottom:268.089000px;}
.y65{bottom:268.989000px;}
.y146{bottom:269.589000px;}
.y120{bottom:269.739000px;}
.y46{bottom:270.489000px;}
.y8e{bottom:271.839000px;}
.ya8{bottom:272.139000px;}
.y11c{bottom:272.889000px;}
.y19{bottom:273.189000px;}
.y1b2{bottom:273.339000px;}
.y1c0{bottom:273.489000px;}
.y5c{bottom:273.639000px;}
.y1d1{bottom:273.939000px;}
.y1a6{bottom:275.100000px;}
.y15d{bottom:275.889000px;}
.y142{bottom:276.189000px;}
.y126{bottom:276.489000px;}
.yba{bottom:277.089000px;}
.y1f2{bottom:278.439000px;}
.y207{bottom:279.339000px;}
.yf5{bottom:279.789000px;}
.y116{bottom:279.939000px;}
.y9c{bottom:280.839000px;}
.y45{bottom:280.989000px;}
.y1e6{bottom:281.739000px;}
.y176{bottom:282.189000px;}
.y1db{bottom:282.339000px;}
.yd1{bottom:282.939000px;}
.y2e{bottom:284.289000px;}
.y1d5{bottom:284.439000px;}
.yb6{bottom:284.589000px;}
.y40{bottom:286.089000px;}
.yde{bottom:286.539000px;}
.y161{bottom:286.689000px;}
.y55{bottom:287.139000px;}
.y1de{bottom:289.239000px;}
.yff{bottom:289.539000px;}
.y1c7{bottom:290.289000px;}
.y136{bottom:291.039000px;}
.y47{bottom:291.489000px;}
.y25{bottom:291.789000px;}
.y112{bottom:292.389000px;}
.y14c{bottom:292.839000px;}
.yb1{bottom:293.289000px;}
.yc7{bottom:294.339000px;}
.y1e3{bottom:294.639000px;}
.y1cf{bottom:294.939000px;}
.y17c{bottom:295.239000px;}
.y106{bottom:295.539000px;}
.y1a8{bottom:295.800000px;}
.y18{bottom:295.839000px;}
.y157{bottom:297.189000px;}
.y169{bottom:297.489000px;}
.ye6{bottom:298.089000px;}
.y37{bottom:298.989000px;}
.y13d{bottom:299.139000px;}
.yca{bottom:300.039000px;}
.y20e{bottom:300.189000px;}
.y8d{bottom:300.489000px;}
.ya7{bottom:300.939000px;}
.y1b1{bottom:301.239000px;}
.y18a{bottom:301.389000px;}
.y102{bottom:301.839000px;}
.y64{bottom:301.989000px;}
.yf4{bottom:303.189000px;}
.y1ea{bottom:303.939000px;}
.y197{bottom:305.289000px;}
.y19c{bottom:305.739000px;}
.y11f{bottom:306.339000px;}
.y15c{bottom:307.689000px;}
.y125{bottom:307.839000px;}
.y2d{bottom:308.139000px;}
.y5b{bottom:308.589000px;}
.y9b{bottom:309.489000px;}
.y154{bottom:310.239000px;}
.yc4{bottom:310.989000px;}
.y206{bottom:311.139000px;}
.y1bf{bottom:311.739000px;}
.y1b7{bottom:313.089000px;}
.y7{bottom:313.539000px;}
.y115{bottom:313.839000px;}
.y43{bottom:313.989000px;}
.y3f{bottom:314.739000px;}
.y92{bottom:314.889000px;}
.y1f3{bottom:315.339000px;}
.y24{bottom:315.639000px;}
.y12e{bottom:316.239000px;}
.yfe{bottom:317.289000px;}
.y1c6{bottom:317.889000px;}
.y141{bottom:318.339000px;}
.y17{bottom:318.639000px;}
.y111{bottom:319.989000px;}
.yd0{bottom:320.589000px;}
.y135{bottom:320.739000px;}
.ye5{bottom:321.339000px;}
.y175{bottom:321.831000px;}
.y85{bottom:322.239000px;}
.yc8{bottom:322.539000px;}
.ya2{bottom:323.439000px;}
.y44{bottom:324.489000px;}
.y1f6{bottom:325.689000px;}
.y13c{bottom:326.739000px;}
.y57{bottom:328.689000px;}
.y156{bottom:328.839000px;}
.ydf{bottom:329.589000px;}
.y105{bottom:330.039000px;}
.y133{bottom:331.089000px;}
.y36{bottom:331.389000px;}
.y1e9{bottom:331.689000px;}
.y2c{bottom:331.839000px;}
.yb0{bottom:331.989000px;}
.ye3{bottom:333.039000px;}
.y189{bottom:333.189000px;}
.y153{bottom:334.539000px;}
.y4e{bottom:334.989000px;}
.yf3{bottom:335.439000px;}
.y145{bottom:335.589000px;}
.y196{bottom:336.339000px;}
.y5a{bottom:337.239000px;}
.y17b{bottom:337.539000px;}
.y9a{bottom:338.289000px;}
.y118{bottom:339.339000px;}
.y1b0{bottom:339.489000px;}
.y152{bottom:340.389000px;}
.y11b{bottom:340.839000px;}
.y164{bottom:340.989000px;}
.y16{bottom:341.289000px;}
.y114{bottom:341.439000px;}
.y1f1{bottom:342.189000px;}
.y20d{bottom:342.339000px;}
.y205{bottom:342.789000px;}
.y11e{bottom:342.939000px;}
.y3e{bottom:343.539000px;}
.y194{bottom:343.839000px;}
.ye4{bottom:344.739000px;}
.yfd{bottom:345.039000px;}
.y1c5{bottom:345.489000px;}
.yf2{bottom:347.139000px;}
.y1dd{bottom:347.289000px;}
.y110{bottom:347.589000px;}
.y12d{bottom:348.039000px;}
.y201{bottom:351.489000px;}
.y132{bottom:351.789000px;}
.y1e5{bottom:352.089000px;}
.y1f0{bottom:352.239000px;}
.y8c{bottom:352.539000px;}
.y14b{bottom:354.939000px;}
.y2b{bottom:355.689000px;}
.y1cd{bottom:356.289000px;}
.y42{bottom:357.489000px;}
.y167{bottom:357.789000px;}
.ya6{bottom:358.389000px;}
.y41{bottom:359.589000px;}
.y13b{bottom:360.639000px;}
.ya1{bottom:361.239000px;}
.yb5{bottom:362.139000px;}
.y84{bottom:363.189000px;}
.y144{bottom:363.339000px;}
.y35{bottom:363.639000px;}
.y15{bottom:364.089000px;}
.y104{bottom:364.539000px;}
.y188{bottom:364.839000px;}
.y59{bottom:366.039000px;}
.y1ca{bottom:366.789000px;}
.y99{bottom:366.939000px;}
.y1af{bottom:367.239000px;}
.y195{bottom:367.389000px;}
.y4d{bottom:367.989000px;}
.y14f{bottom:369.039000px;}
.y199{bottom:369.189000px;}
.y124{bottom:370.689000px;}
.yaf{bottom:370.839000px;}
.y117{bottom:371.139000px;}
.y3d{bottom:372.189000px;}
.y131{bottom:372.489000px;}
.yfc{bottom:372.789000px;}
.y1c4{bottom:373.089000px;}
.y204{bottom:374.589000px;}
.y89{bottom:374.889000px;}
.y10f{bottom:375.189000px;}
.yc9{bottom:376.539000px;}
.y1bc{bottom:377.739000px;}
.y6{bottom:379.389000px;}
.y12c{bottom:379.689000px;}
.y12f{bottom:382.839000px;}
.y200{bottom:383.139000px;}
.y19f{bottom:383.739000px;}
.y20c{bottom:384.639000px;}
.y14{bottom:386.739000px;}
.y11d{bottom:388.839000px;}
.yf1{bottom:391.089000px;}
.y23{bottom:392.589000px;}
.y130{bottom:393.189000px;}
.yc3{bottom:395.289000px;}
.ya5{bottom:396.039000px;}
.y1c9{bottom:398.439000px;}
.y14e{bottom:400.089000px;}
.ye2{bottom:400.389000px;}
.y1c3{bottom:400.689000px;}
.y3c{bottom:400.989000px;}
.yfb{bottom:401.289000px;}
.y123{bottom:402.189000px;}
.y11a{bottom:402.639000px;}
.y10e{bottom:402.789000px;}
.y2a{bottom:403.239000px;}
.y134{bottom:403.539000px;}
.y88{bottom:403.839000px;}
.y98{bottom:404.739000px;}
.y1ab{bottom:405.639000px;}
.y203{bottom:406.239000px;}
.y5{bottom:408.039000px;}
.y13{bottom:409.539000px;}
.y12b{bottom:411.489000px;}
.yef{bottom:414.489000px;}
.y1ff{bottom:414.939000px;}
.y187{bottom:415.989000px;}
.y22{bottom:419.889000px;}
.y20b{bottom:426.789000px;}
.y29{bottom:426.939000px;}
.y12{bottom:432.189000px;}
.y4{bottom:436.839000px;}
.yf0{bottom:437.739000px;}
.y21{bottom:447.189000px;}
.y28{bottom:450.789000px;}
.y3b{bottom:453.639000px;}
.y10d{bottom:453.939000px;}
.y11{bottom:454.989000px;}
.y202{bottom:456.789000px;}
.y97{bottom:462.189000px;}
.y12a{bottom:462.639000px;}
.y1fe{bottom:465.339000px;}
.yee{bottom:470.139000px;}
.y20{bottom:474.489000px;}
.y10{bottom:477.639000px;}
.y1{bottom:515.181000px;}
.y10a{bottom:604.200000px;}
.ye{bottom:606.300000px;}
.y10b{bottom:607.800000px;}
.yf{bottom:609.600000px;}
.h3c{height:24.978516px;}
.h49{height:33.304688px;}
.h40{height:33.796875px;}
.h1e{height:34.368000px;}
.ha{height:36.465000px;}
.h2a{height:37.546875px;}
.h44{height:38.021484px;}
.h8{height:38.610000px;}
.h52{height:39.102539px;}
.h31{height:41.630859px;}
.h41{height:42.246094px;}
.h18{height:42.960000px;}
.h16{height:46.170000px;}
.h29{height:46.353516px;}
.hb{height:48.134766px;}
.h3a{height:50.695312px;}
.h1a{height:51.480000px;}
.h39{height:51.503906px;}
.h2{height:53.925000px;}
.h20{height:55.770000px;}
.h21{height:55.848000px;}
.hc{height:57.761719px;}
.h25{height:59.144531px;}
.h6{height:60.060000px;}
.h51{height:60.826172px;}
.h17{height:61.560000px;}
.h32{height:61.769531px;}
.h33{height:61.804688px;}
.h7{height:63.672000px;}
.h4a{height:63.984375px;}
.h3d{height:65.303906px;}
.h34{height:66.241499px;}
.h2d{height:66.916992px;}
.h2e{height:66.955078px;}
.h24{height:67.593750px;}
.h3e{height:67.703906px;}
.h3{height:68.640000px;}
.h10{height:68.736000px;}
.h1f{height:69.030000px;}
.h50{height:69.515625px;}
.h19{height:71.250000px;}
.h15{height:71.820000px;}
.h4d{height:71.928000px;}
.h47{height:72.064453px;}
.h28{height:72.105469px;}
.h5{height:72.768000px;}
.h4e{height:72.960000px;}
.hf{height:77.220000px;}
.h13{height:82.080000px;}
.h3f{height:82.359375px;}
.h26{height:82.406250px;}
.h2c{height:82.921289px;}
.h1b{height:83.160000px;}
.h4b{height:84.492188px;}
.h11{height:84.960000px;}
.h1c{height:85.800000px;}
.h46{height:92.095312px;}
.h4f{height:92.136000px;}
.h14{height:92.340000px;}
.h43{height:92.654297px;}
.h37{height:92.707031px;}
.hd{height:95.580000px;}
.h22{height:101.970000px;}
.h23{height:102.570000px;}
.h27{height:102.949219px;}
.h35{height:103.007812px;}
.h1d{height:106.200000px;}
.h48{height:109.839844px;}
.h2f{height:111.355078px;}
.h30{height:111.955078px;}
.h2b{height:113.244141px;}
.h38{height:113.308594px;}
.he{height:116.820000px;}
.h4c{height:123.609375px;}
.h42{height:144.210938px;}
.h3b{height:154.511719px;}
.h36{height:277.962891px;}
.h12{height:286.740000px;}
.h9{height:629.250000px;}
.h45{height:629.548500px;}
.h4{height:629.587500px;}
.h0{height:629.631496px;}
.h1{height:630.000000px;}
.w4{width:892.912500px;}
.w2{width:893.098500px;}
.w3{width:893.125500px;}
.w0{width:893.168503px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:75.900000px;}
.x4d{left:78.150000px;}
.xc{left:79.650000px;}
.x19{left:81.750000px;}
.xd1{left:82.950000px;}
.x20{left:84.150000px;}
.x31{left:86.100000px;}
.x4e{left:87.150000px;}
.x2c{left:89.100000px;}
.x40{left:90.450000px;}
.x2e{left:91.650000px;}
.x1e{left:92.700000px;}
.x23{left:94.350000px;}
.x10{left:95.700000px;}
.x7{left:96.750000px;}
.xa8{left:97.800000px;}
.x43{left:99.300000px;}
.x3f{left:100.500000px;}
.x4b{left:101.700000px;}
.x29{left:102.750000px;}
.x48{left:103.800000px;}
.x11{left:105.000000px;}
.xd{left:106.650000px;}
.x2b{left:107.850000px;}
.x50{left:109.050000px;}
.x99{left:110.100000px;}
.x69{left:111.300000px;}
.x45{left:112.350000px;}
.x37{left:113.550000px;}
.x4c{left:115.200000px;}
.x81{left:116.550000px;}
.x5f{left:117.600000px;}
.x6{left:119.400000px;}
.x52{left:122.700000px;}
.x3{left:124.650000px;}
.x3d{left:126.600000px;}
.xb3{left:127.950000px;}
.x15{left:129.000000px;}
.x63{left:130.350000px;}
.x2{left:132.450000px;}
.x36{left:133.500000px;}
.x46{left:135.150000px;}
.xd3{left:137.250000px;}
.x54{left:140.400000px;}
.xbb{left:141.750000px;}
.x17{left:142.800000px;}
.x64{left:145.500000px;}
.xec{left:147.000000px;}
.xd5{left:148.350000px;}
.x75{left:149.550000px;}
.x56{left:152.550000px;}
.x95{left:154.800000px;}
.x57{left:156.000000px;}
.xee{left:157.650000px;}
.x24{left:158.850000px;}
.x16{left:160.650000px;}
.xdf{left:162.000000px;}
.x6c{left:164.550000px;}
.x51{left:166.350000px;}
.xda{left:168.150000px;}
.x1c{left:170.700000px;}
.xe{left:172.050000px;}
.x7f{left:173.250000px;}
.xdd{left:174.600000px;}
.x5e{left:176.400000px;}
.xe6{left:179.550000px;}
.x60{left:181.050000px;}
.xb7{left:182.400000px;}
.x88{left:184.350000px;}
.xa6{left:186.600000px;}
.x76{left:189.900000px;}
.xb6{left:193.050000px;}
.x62{left:194.100000px;}
.xa9{left:196.500000px;}
.xf{left:198.450000px;}
.x4a{left:199.950000px;}
.x96{left:201.000000px;}
.xaa{left:203.100000px;}
.x2a{left:205.050000px;}
.x6d{left:207.750000px;}
.x6b{left:211.350000px;}
.xe7{left:212.700000px;}
.xce{left:214.200000px;}
.xb5{left:215.700000px;}
.x5c{left:216.750000px;}
.x9{left:218.400000px;}
.xb4{left:220.200000px;}
.x38{left:224.400000px;}
.x9b{left:226.800000px;}
.xe4{left:228.300000px;}
.x5b{left:229.350000px;}
.xbf{left:230.700000px;}
.x8{left:233.100000px;}
.xb8{left:234.300000px;}
.x58{left:235.500000px;}
.x4{left:238.200000px;}
.x9a{left:239.400000px;}
.x34{left:240.600000px;}
.x9c{left:243.600000px;}
.x35{left:244.650000px;}
.xa5{left:245.850000px;}
.xd4{left:248.550000px;}
.x33{left:250.800000px;}
.x12{left:253.950000px;}
.xea{left:255.000000px;}
.x8e{left:257.250000px;}
.xd0{left:258.750000px;}
.x9d{left:263.400000px;}
.x8f{left:265.650000px;}
.x28{left:267.450000px;}
.x30{left:269.700000px;}
.xcc{left:272.850000px;}
.x47{left:275.550000px;}
.x18{left:277.050000px;}
.x1d{left:279.600000px;}
.x1b{left:280.650000px;}
.xc1{left:282.300000px;}
.x25{left:284.400000px;}
.x3a{left:286.050000px;}
.x49{left:287.550000px;}
.x26{left:289.200000px;}
.x61{left:294.150000px;}
.xca{left:295.500000px;}
.xba{left:296.550000px;}
.x1a{left:298.950000px;}
.x42{left:301.050000px;}
.xdb{left:302.700000px;}
.x1f{left:303.750000px;}
.x22{left:305.100000px;}
.xc9{left:306.150000px;}
.xe9{left:307.350000px;}
.x5{left:309.300000px;}
.xe8{left:310.350000px;}
.x2d{left:313.500000px;}
.x3b{left:315.000000px;}
.x68{left:316.500000px;}
.x67{left:318.750000px;}
.x2f{left:321.900000px;}
.x39{left:322.950000px;}
.x6a{left:324.300000px;}
.x27{left:325.800000px;}
.xc2{left:328.350000px;}
.xc8{left:330.300000px;}
.x32{left:331.650000px;}
.x59{left:334.200000px;}
.x14{left:336.000000px;}
.xed{left:338.400000px;}
.xeb{left:340.800000px;}
.xa2{left:344.100000px;}
.xcf{left:347.400000px;}
.xcd{left:348.450000px;}
.x53{left:349.500000px;}
.x41{left:351.450000px;}
.xbe{left:353.250000px;}
.x7a{left:359.100000px;}
.x5a{left:360.750000px;}
.x8c{left:363.300000px;}
.xe1{left:366.000000px;}
.xde{left:368.100000px;}
.xbd{left:369.150000px;}
.x44{left:370.200000px;}
.xbc{left:371.850000px;}
.x21{left:373.050000px;}
.xb9{left:374.550000px;}
.x66{left:376.500000px;}
.x3c{left:377.850000px;}
.x55{left:379.350000px;}
.xe5{left:380.550000px;}
.x13{left:381.900000px;}
.xe3{left:384.150000px;}
.xcb{left:385.500000px;}
.x65{left:386.700000px;}
.x74{left:391.200000px;}
.xa7{left:392.400000px;}
.xd2{left:395.550000px;}
.xab{left:396.600000px;}
.x3e{left:398.100000px;}
.x8b{left:399.900000px;}
.x4f{left:401.400000px;}
.xc4{left:403.200000px;}
.xac{left:405.750000px;}
.xa1{left:407.700000px;}
.xa3{left:408.750000px;}
.xa4{left:410.850000px;}
.x5d{left:412.500000px;}
.xe2{left:413.850000px;}
.x7e{left:418.050000px;}
.x8d{left:422.400000px;}
.xdc{left:424.800000px;}
.xe0{left:429.750000px;}
.x97{left:446.850000px;}
.x70{left:451.050000px;}
.x93{left:452.250000px;}
.xd6{left:462.600000px;}
.x94{left:465.450000px;}
.x85{left:470.550000px;}
.x91{left:475.350000px;}
.x6f{left:478.350000px;}
.x7c{left:481.200000px;}
.xc3{left:483.150000px;}
.x73{left:485.550000px;}
.xc0{left:490.650000px;}
.x83{left:502.500000px;}
.xc7{left:510.000000px;}
.xc6{left:515.550000px;}
.xad{left:519.000000px;}
.x79{left:522.150000px;}
.x98{left:523.350000px;}
.x82{left:526.950000px;}
.xc5{left:536.550000px;}
.x92{left:543.000000px;}
.x80{left:547.800000px;}
.x8a{left:555.300000px;}
.x86{left:557.100000px;}
.x90{left:562.800000px;}
.x6e{left:564.450000px;}
.x77{left:571.200000px;}
.x87{left:574.800000px;}
.x72{left:587.700000px;}
.x89{left:592.500000px;}
.x7b{left:596.250000px;}
.x7d{left:598.800000px;}
.x78{left:601.050000px;}
.x84{left:611.850000px;}
.xaf{left:615.150000px;}
.x71{left:619.650000px;}
.xb0{left:625.500000px;}
.xae{left:630.300000px;}
.xd7{left:646.800000px;}
.x9e{left:648.450000px;}
.x9f{left:650.250000px;}
.xd8{left:651.750000px;}
.xa0{left:655.200000px;}
.xd9{left:658.650000px;}
.xb1{left:716.100000px;}
.xb2{left:724.950000px;}
.xb{left:778.050000px;}
.xa{left:802.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:12.266667pt;}
.v5{vertical-align:14.400000pt;}
.v1{vertical-align:35.733333pt;}
.v6{vertical-align:36.800000pt;}
.v3{vertical-align:39.466667pt;}
.v2{vertical-align:41.066667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.202667pt;}
.lsa{letter-spacing:0.384000pt;}
.ls4{letter-spacing:28.245333pt;}
.ls5{letter-spacing:32.256000pt;}
.ls1{letter-spacing:44.906667pt;}
.ls6{letter-spacing:45.184000pt;}
.ls2{letter-spacing:45.440000pt;}
.lsb{letter-spacing:65.517333pt;}
.ls3{letter-spacing:65.706667pt;}
.lsc{letter-spacing:69.493333pt;}
.wsb{word-spacing:-92.160000pt;}
.ws4{word-spacing:-38.400000pt;}
.ws9{word-spacing:-37.546667pt;}
.ws13{word-spacing:-34.133333pt;}
.ws12{word-spacing:-29.866667pt;}
.ws35{word-spacing:-29.333333pt;}
.wsa{word-spacing:-27.306667pt;}
.wsd{word-spacing:-26.880000pt;}
.ws2b{word-spacing:-26.666667pt;}
.ws36{word-spacing:-24.000000pt;}
.ws5{word-spacing:-23.893333pt;}
.ws2c{word-spacing:-21.333333pt;}
.ws1{word-spacing:-20.906667pt;}
.ws1d{word-spacing:-19.413333pt;}
.ws2a{word-spacing:-18.666667pt;}
.ws2f{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.933333pt;}
.ws2e{word-spacing:-13.333333pt;}
.ws14{word-spacing:-11.946667pt;}
.ws8{word-spacing:-11.328000pt;}
.ws7{word-spacing:-10.986667pt;}
.ws6{word-spacing:-10.197333pt;}
.ws0{word-spacing:-0.074667pt;}
.ws3{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws38{word-spacing:10.666667pt;}
.wse{word-spacing:86.997333pt;}
.ws19{word-spacing:138.410667pt;}
.ws1a{word-spacing:141.376000pt;}
.ws1b{word-spacing:149.162667pt;}
.ws1c{word-spacing:153.728000pt;}
.ws15{word-spacing:154.240000pt;}
.ws17{word-spacing:169.429333pt;}
.ws18{word-spacing:190.613333pt;}
.ws37{word-spacing:196.309333pt;}
.ws16{word-spacing:204.224000pt;}
.ws30{word-spacing:214.037333pt;}
.wsf{word-spacing:221.354667pt;}
.ws10{word-spacing:228.821333pt;}
.ws1e{word-spacing:232.736000pt;}
.ws1f{word-spacing:239.349333pt;}
.ws21{word-spacing:258.480000pt;}
.ws26{word-spacing:268.256000pt;}
.ws22{word-spacing:268.426667pt;}
.ws24{word-spacing:271.882667pt;}
.ws28{word-spacing:274.789333pt;}
.ws29{word-spacing:290.810667pt;}
.ws20{word-spacing:302.736000pt;}
.ws23{word-spacing:310.224000pt;}
.ws32{word-spacing:315.861333pt;}
.ws31{word-spacing:322.794667pt;}
.ws11{word-spacing:349.994667pt;}
.ws2d{word-spacing:470.528000pt;}
.ws25{word-spacing:636.197333pt;}
.ws27{word-spacing:976.144000pt;}
.ws33{word-spacing:1650.282667pt;}
.ws34{word-spacing:2192.085333pt;}
._fa{margin-left:-2440.576000pt;}
._87{margin-left:-2436.458667pt;}
._c{margin-left:-2397.056000pt;}
._e2{margin-left:-2359.402667pt;}
._52{margin-left:-2320.906667pt;}
._e0{margin-left:-2269.205333pt;}
._e4{margin-left:-2123.989333pt;}
._cc{margin-left:-1965.674667pt;}
._d3{margin-left:-1785.301333pt;}
._c0{margin-left:-1776.234667pt;}
._9c{margin-left:-1745.514667pt;}
._ce{margin-left:-1705.408000pt;}
._c6{margin-left:-1675.029333pt;}
._e{margin-left:-1561.696000pt;}
._c2{margin-left:-1535.253333pt;}
._56{margin-left:-1367.392000pt;}
._5e{margin-left:-1352.810667pt;}
._4a{margin-left:-1284.618667pt;}
._ea{margin-left:-1283.434667pt;}
._8b{margin-left:-1272.853333pt;}
._98{margin-left:-1238.378667pt;}
._b0{margin-left:-1220.714667pt;}
._2c{margin-left:-1217.045333pt;}
._ca{margin-left:-1210.048000pt;}
._71{margin-left:-1141.866667pt;}
._e6{margin-left:-1113.280000pt;}
._4e{margin-left:-1026.773333pt;}
._85{margin-left:-1008.917333pt;}
._35{margin-left:-990.965333pt;}
._81{margin-left:-950.122667pt;}
._29{margin-left:-938.656000pt;}
._24{margin-left:-926.368000pt;}
._ec{margin-left:-919.317333pt;}
._1c{margin-left:-907.733333pt;}
._22{margin-left:-901.109333pt;}
._1e{margin-left:-894.197333pt;}
._a7{margin-left:-893.034667pt;}
._90{margin-left:-885.952000pt;}
._54{margin-left:-869.194667pt;}
._b4{margin-left:-865.536000pt;}
._4c{margin-left:-858.752000pt;}
._16{margin-left:-823.552000pt;}
._d0{margin-left:-799.232000pt;}
._50{margin-left:-786.218667pt;}
._ab{margin-left:-769.642667pt;}
._a9{margin-left:-767.424000pt;}
._e8{margin-left:-748.480000pt;}
._20{margin-left:-743.157333pt;}
._84{margin-left:-738.922667pt;}
._f4{margin-left:-732.181333pt;}
._75{margin-left:-689.685333pt;}
._ad{margin-left:-653.760000pt;}
._11{margin-left:-648.042667pt;}
._f8{margin-left:-644.373333pt;}
._1a{margin-left:-642.112000pt;}
._a5{margin-left:-634.730667pt;}
._9a{margin-left:-622.784000pt;}
._b8{margin-left:-620.352000pt;}
._fc{margin-left:-613.994667pt;}
._2f{margin-left:-605.888000pt;}
._7d{margin-left:-603.914667pt;}
._a2{margin-left:-576.448000pt;}
._f2{margin-left:-573.546667pt;}
._f6{margin-left:-563.904000pt;}
._18{margin-left:-561.525333pt;}
._c8{margin-left:-545.130667pt;}
._ba{margin-left:-542.965333pt;}
._db{margin-left:-530.794667pt;}
._8d{margin-left:-508.789333pt;}
._a0{margin-left:-486.250667pt;}
._89{margin-left:-471.573333pt;}
._f0{margin-left:-452.373333pt;}
._d9{margin-left:-450.816000pt;}
._d7{margin-left:-438.634667pt;}
._be{margin-left:-434.026667pt;}
._31{margin-left:-425.749333pt;}
._46{margin-left:-421.824000pt;}
._94{margin-left:-412.778667pt;}
._26{margin-left:-411.210667pt;}
._44{margin-left:-409.280000pt;}
._9e{margin-left:-407.658667pt;}
._2d{margin-left:-404.042667pt;}
._b6{margin-left:-385.472000pt;}
._96{margin-left:-379.669333pt;}
._77{margin-left:-355.690667pt;}
._48{margin-left:-351.082667pt;}
._33{margin-left:-341.440000pt;}
._bc{margin-left:-322.666667pt;}
._92{margin-left:-317.632000pt;}
._c4{margin-left:-315.584000pt;}
._73{margin-left:-303.893333pt;}
._ee{margin-left:-268.138667pt;}
._7f{margin-left:-232.469333pt;}
._d5{margin-left:-171.029333pt;}
._79{margin-left:-161.557333pt;}
._43{margin-left:-93.365333pt;}
._b3{margin-left:-10.912000pt;}
._8{margin-left:-9.973333pt;}
._5{margin-left:-8.544000pt;}
._3{margin-left:-7.338667pt;}
._70{margin-left:-6.229333pt;}
._10{margin-left:-5.120000pt;}
._9{margin-left:-4.117333pt;}
._a{margin-left:-3.050667pt;}
._4{margin-left:-2.080000pt;}
._2{margin-left:-1.109333pt;}
._0{width:1.024000pt;}
._1{width:2.389333pt;}
._5d{width:3.861333pt;}
._b2{width:4.800000pt;}
._b{width:5.962667pt;}
._14{width:7.989333pt;}
._7{width:8.981333pt;}
._6{width:10.261333pt;}
._13{width:11.456000pt;}
._15{width:12.362667pt;}
._2b{width:71.680000pt;}
._3b{width:112.938667pt;}
._7a{width:118.357333pt;}
._7b{width:121.877333pt;}
._d6{width:127.914667pt;}
._5c{width:134.810667pt;}
._3e{width:136.469333pt;}
._65{width:144.997333pt;}
._3d{width:149.109333pt;}
._67{width:153.114667pt;}
._8f{width:169.376000pt;}
._68{width:182.714667pt;}
._3c{width:185.258667pt;}
._80{width:189.781333pt;}
._57{width:193.173333pt;}
._69{width:219.904000pt;}
._ef{width:225.024000pt;}
._a4{width:234.080000pt;}
._42{width:238.645333pt;}
._6f{width:241.157333pt;}
._6d{width:245.893333pt;}
._74{width:260.693333pt;}
._40{width:262.432000pt;}
._af{width:269.781333pt;}
._c5{width:272.469333pt;}
._93{width:275.114667pt;}
._bd{width:279.893333pt;}
._39{width:284.992000pt;}
._34{width:293.376000pt;}
._38{width:297.280000pt;}
._37{width:299.861333pt;}
._49{width:302.933333pt;}
._66{width:304.624000pt;}
._6e{width:308.576000pt;}
._78{width:313.002667pt;}
._6b{width:324.240000pt;}
._97{width:336.981333pt;}
._b7{width:342.869333pt;}
._2e{width:356.266667pt;}
._45{width:361.130667pt;}
._27{width:363.264000pt;}
._9f{width:364.714667pt;}
._95{width:370.090667pt;}
._47{width:373.333333pt;}
._32{width:377.600000pt;}
._bf{width:390.826667pt;}
._df{width:393.482667pt;}
._d8{width:395.690667pt;}
._41{width:398.848000pt;}
._6a{width:400.704000pt;}
._da{width:409.002667pt;}
._f1{width:410.026667pt;}
._8a{width:428.714667pt;}
._5b{width:439.189333pt;}
._a1{width:443.136000pt;}
._3a{width:446.080000pt;}
._5a{width:462.554667pt;}
._8e{width:466.602667pt;}
._dc{width:488.448000pt;}
._bb{width:501.248000pt;}
._c9{width:502.357333pt;}
._3f{width:504.490667pt;}
._6c{width:509.749333pt;}
._f7{width:521.557333pt;}
._19{width:526.016000pt;}
._f3{width:531.114667pt;}
._a3{width:534.357333pt;}
._59{width:536.026667pt;}
._dd{width:552.896000pt;}
._de{width:556.117333pt;}
._30{width:557.397333pt;}
._7e{width:561.493333pt;}
._d2{width:563.456000pt;}
._fd{width:571.136000pt;}
._b9{width:578.560000pt;}
._9b{width:580.693333pt;}
._a6{width:592.469333pt;}
._12{width:594.176000pt;}
._64{width:597.205333pt;}
._63{width:599.808000pt;}
._f9{width:602.026667pt;}
._1b{width:605.504000pt;}
._ae{width:611.157333pt;}
._58{width:643.493333pt;}
._76{width:646.826667pt;}
._f5{width:689.493333pt;}
._21{width:696.064000pt;}
._e9{width:706.048000pt;}
._aa{width:724.736000pt;}
._ac{width:727.381333pt;}
._51{width:738.730667pt;}
._d1{width:756.736000pt;}
._17{width:787.328000pt;}
._7c{width:799.957333pt;}
._4d{width:811.264000pt;}
._55{width:821.333333pt;}
._b5{width:823.381333pt;}
._91{width:843.690667pt;}
._1f{width:847.530667pt;}
._a8{width:850.602667pt;}
._62{width:851.669333pt;}
._23{width:853.930667pt;}
._1d{width:860.842667pt;}
._ed{width:876.714667pt;}
._25{width:879.530667pt;}
._83{width:883.509333pt;}
._2a{width:891.733333pt;}
._82{width:907.690667pt;}
._28{width:925.685333pt;}
._36{width:943.530667pt;}
._86{width:966.826667pt;}
._4f{width:979.200000pt;}
._e7{width:1070.848000pt;}
._72{width:1099.690667pt;}
._cb{width:1167.957333pt;}
._b1{width:1179.136000pt;}
._60{width:1186.453333pt;}
._99{width:1196.202667pt;}
._8c{width:1230.336000pt;}
._4b{width:1238.442667pt;}
._eb{width:1241.514667pt;}
._61{width:1282.773333pt;}
._5f{width:1310.293333pt;}
._c3{width:1493.248000pt;}
._f{width:1515.264000pt;}
._c7{width:1634.048000pt;}
._cf{width:1663.402667pt;}
._9d{width:1703.424000pt;}
._c1{width:1734.314667pt;}
._d4{width:1743.360000pt;}
._cd{width:1923.669333pt;}
._e5{width:2082.560000pt;}
._e1{width:2227.626667pt;}
._53{width:2274.133333pt;}
._e3{width:2317.824000pt;}
._d{width:2351.530667pt;}
._88{width:2395.136000pt;}
._fb{width:2399.402667pt;}
.fsf{font-size:32.000000pt;}
.fsa{font-size:42.666667pt;}
.fs3{font-size:45.333333pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fsb{font-size:69.333333pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fsc{font-size:85.866667pt;}
.fsd{font-size:88.343567pt;}
.fs6{font-size:96.000000pt;}
.fs9{font-size:106.666667pt;}
.fs7{font-size:117.333333pt;}
.fs12{font-size:128.000000pt;}
.fs11{font-size:138.666667pt;}
.fs10{font-size:149.333333pt;}
.fse{font-size:160.000000pt;}
.fs8{font-size:288.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:0.037333pt;}
.y1a5{bottom:0.072000pt;}
.yd{bottom:0.139027pt;}
.y10c{bottom:0.205613pt;}
.y2{bottom:1.333333pt;}
.yc{bottom:59.634667pt;}
.y109{bottom:59.768000pt;}
.y174{bottom:86.738667pt;}
.y180{bottom:88.205333pt;}
.y1d9{bottom:89.272000pt;}
.y1e8{bottom:89.405333pt;}
.y181{bottom:90.738667pt;}
.y76{bottom:91.672000pt;}
.ydb{bottom:91.938667pt;}
.yc2{bottom:92.072000pt;}
.y87{bottom:92.205333pt;}
.yc0{bottom:93.138667pt;}
.ycd{bottom:93.672000pt;}
.y185{bottom:95.938667pt;}
.y1d7{bottom:99.272000pt;}
.y193{bottom:100.472000pt;}
.y1d8{bottom:100.738667pt;}
.y17f{bottom:100.872000pt;}
.y1ad{bottom:101.405333pt;}
.y1d0{bottom:101.805333pt;}
.ycf{bottom:101.938667pt;}
.y71{bottom:102.205333pt;}
.y1bb{bottom:102.338667pt;}
.y1b9{bottom:102.605333pt;}
.y74{bottom:103.101333pt;}
.y212{bottom:104.072000pt;}
.y213{bottom:104.205333pt;}
.y8a{bottom:104.434667pt;}
.y1aa{bottom:104.701333pt;}
.y184{bottom:105.405333pt;}
.y18e{bottom:105.538667pt;}
.y192{bottom:106.072000pt;}
.y6c{bottom:106.968000pt;}
.y81{bottom:107.234667pt;}
.y186{bottom:107.538667pt;}
.y75{bottom:107.672000pt;}
.yc1{bottom:107.938667pt;}
.y16a{bottom:108.338667pt;}
.y1fc{bottom:108.434667pt;}
.ybf{bottom:109.138667pt;}
.ycc{bottom:109.538667pt;}
.y18d{bottom:109.672000pt;}
.y17a{bottom:109.768000pt;}
.y214{bottom:110.205333pt;}
.y63{bottom:110.968000pt;}
.y1f4{bottom:111.672000pt;}
.y1f{bottom:112.301333pt;}
.y190{bottom:113.672000pt;}
.y7a{bottom:113.768000pt;}
.yce{bottom:114.738667pt;}
.y6f{bottom:114.834667pt;}
.y1b6{bottom:116.168000pt;}
.ydd{bottom:116.205333pt;}
.y182{bottom:116.472000pt;}
.y15f{bottom:116.834667pt;}
.y1ac{bottom:116.872000pt;}
.yd5{bottom:117.368000pt;}
.y19a{bottom:118.472000pt;}
.y69{bottom:119.901333pt;}
.y13a{bottom:120.034667pt;}
.y1a3{bottom:121.501333pt;}
.y217{bottom:121.634667pt;}
.ya0{bottom:121.901333pt;}
.y1ef{bottom:122.168000pt;}
.y14a{bottom:122.301333pt;}
.y51{bottom:123.101333pt;}
.y16d{bottom:123.368000pt;}
.yfa{bottom:123.501333pt;}
.yd7{bottom:124.434667pt;}
.yed{bottom:124.568000pt;}
.yda{bottom:124.872000pt;}
.ybe{bottom:125.005333pt;}
.y1f5{bottom:125.138667pt;}
.y15b{bottom:125.768000pt;}
.y34{bottom:125.901333pt;}
.y211{bottom:126.034667pt;}
.yae{bottom:126.568000pt;}
.ybd{bottom:128.034667pt;}
.y1e2{bottom:128.834667pt;}
.y159{bottom:129.368000pt;}
.y16e{bottom:129.805333pt;}
.y1df{bottom:130.968000pt;}
.ydc{bottom:132.205333pt;}
.y1e{bottom:132.434667pt;}
.y19e{bottom:132.701333pt;}
.y19d{bottom:132.834667pt;}
.y80{bottom:132.968000pt;}
.y83{bottom:133.768000pt;}
.y7d{bottom:134.568000pt;}
.yec{bottom:134.968000pt;}
.y15e{bottom:135.101333pt;}
.y1a4{bottom:135.368000pt;}
.y6d{bottom:136.301333pt;}
.y62{bottom:136.568000pt;}
.y6e{bottom:136.834667pt;}
.y16f{bottom:137.234667pt;}
.y191{bottom:137.538667pt;}
.ye0{bottom:138.034667pt;}
.y139{bottom:138.434667pt;}
.y67{bottom:138.568000pt;}
.yab{bottom:139.768000pt;}
.y1d3{bottom:140.301333pt;}
.yd9{bottom:140.872000pt;}
.y129{bottom:141.368000pt;}
.y4c{bottom:141.768000pt;}
.y173{bottom:142.034667pt;}
.y163{bottom:142.168000pt;}
.y5e{bottom:143.101333pt;}
.y8b{bottom:144.872000pt;}
.y68{bottom:145.634667pt;}
.y1ee{bottom:146.834667pt;}
.y33{bottom:147.101333pt;}
.y9f{bottom:147.501333pt;}
.yb9{bottom:149.634667pt;}
.yf9{bottom:149.768000pt;}
.y1b5{bottom:150.168000pt;}
.yb{bottom:150.701333pt;}
.yd4{bottom:150.834667pt;}
.y1ba{bottom:151.368000pt;}
.y183{bottom:151.501333pt;}
.y15a{bottom:151.768000pt;}
.y96{bottom:152.168000pt;}
.y4f{bottom:152.434667pt;}
.y1d{bottom:152.701333pt;}
.y210{bottom:154.168000pt;}
.y78{bottom:154.968000pt;}
.y19b{bottom:155.368000pt;}
.y149{bottom:156.301333pt;}
.y1e1{bottom:156.968000pt;}
.yb4{bottom:157.234667pt;}
.ybc{bottom:157.368000pt;}
.y108{bottom:157.501333pt;}
.y7f{bottom:158.568000pt;}
.y1da{bottom:158.968000pt;}
.y216{bottom:159.234667pt;}
.y1c2{bottom:159.634667pt;}
.yf8{bottom:160.168000pt;}
.y1fd{bottom:160.701333pt;}
.y160{bottom:160.738667pt;}
.y16c{bottom:160.834667pt;}
.y1fb{bottom:161.368000pt;}
.y49{bottom:161.768000pt;}
.y61{bottom:162.301333pt;}
.yd8{bottom:163.005333pt;}
.y86{bottom:163.101333pt;}
.ye1{bottom:163.501333pt;}
.y7c{bottom:163.901333pt;}
.y66{bottom:164.301333pt;}
.y91{bottom:164.968000pt;}
.y179{bottom:166.168000pt;}
.y18f{bottom:166.472000pt;}
.y198{bottom:166.701333pt;}
.y3a{bottom:167.901333pt;}
.y32{bottom:168.168000pt;}
.y56{bottom:168.434667pt;}
.y1b8{bottom:169.768000pt;}
.y101{bottom:169.901333pt;}
.y1ae{bottom:170.168000pt;}
.y168{bottom:170.434667pt;}
.y54{bottom:171.101333pt;}
.y1ed{bottom:171.501333pt;}
.y4a{bottom:172.434667pt;}
.y1c{bottom:172.834667pt;}
.y9e{bottom:172.968000pt;}
.ya{bottom:173.101333pt;}
.y208{bottom:173.234667pt;}
.yea{bottom:174.034667pt;}
.y122{bottom:174.701333pt;}
.y1b4{bottom:174.968000pt;}
.yad{bottom:177.634667pt;}
.y95{bottom:177.768000pt;}
.y14d{bottom:178.168000pt;}
.y6b{bottom:178.568000pt;}
.y138{bottom:179.501333pt;}
.y143{bottom:179.768000pt;}
.y73{bottom:180.434667pt;}
.y148{bottom:180.968000pt;}
.y5d{bottom:181.101333pt;}
.y140{bottom:181.234667pt;}
.y103{bottom:181.501333pt;}
.y50{bottom:181.768000pt;}
.y1be{bottom:183.234667pt;}
.y18c{bottom:183.368000pt;}
.yb8{bottom:184.034667pt;}
.y7e{bottom:184.301333pt;}
.yd3{bottom:184.434667pt;}
.y1cc{bottom:185.234667pt;}
.yac{bottom:185.368000pt;}
.y1fa{bottom:186.034667pt;}
.y166{bottom:186.301333pt;}
.y1d6{bottom:187.101333pt;}
.y60{bottom:187.901333pt;}
.y1f8{bottom:188.834667pt;}
.y16b{bottom:189.101333pt;}
.y31{bottom:189.368000pt;}
.y171{bottom:190.434667pt;}
.y90{bottom:190.568000pt;}
.yaa{bottom:190.834667pt;}
.y70{bottom:191.101333pt;}
.yb3{bottom:191.768000pt;}
.y20a{bottom:191.901333pt;}
.y1b{bottom:193.101333pt;}
.y79{bottom:193.634667pt;}
.y1e4{bottom:194.301333pt;}
.y178{bottom:194.434667pt;}
.y1e0{bottom:194.568000pt;}
.ye8{bottom:194.701333pt;}
.y9{bottom:195.368000pt;}
.y1ec{bottom:196.168000pt;}
.y1a2{bottom:196.568000pt;}
.y17e{bottom:196.701333pt;}
.y128{bottom:197.901333pt;}
.y151{bottom:198.434667pt;}
.y9d{bottom:198.568000pt;}
.y39{bottom:198.834667pt;}
.yf7{bottom:199.234667pt;}
.y4b{bottom:200.434667pt;}
.yc5{bottom:201.501333pt;}
.y77{bottom:201.768000pt;}
.y7b{bottom:202.168000pt;}
.y170{bottom:202.701333pt;}
.y94{bottom:203.234667pt;}
.y1ce{bottom:204.034667pt;}
.y6a{bottom:204.301333pt;}
.yeb{bottom:205.101333pt;}
.y13f{bottom:205.768000pt;}
.y137{bottom:205.901333pt;}
.y1d2{bottom:206.034667pt;}
.y1e7{bottom:206.568000pt;}
.y121{bottom:207.234667pt;}
.y172{bottom:207.768000pt;}
.y127{bottom:207.901333pt;}
.y1b3{bottom:208.968000pt;}
.y72{bottom:209.768000pt;}
.y30{bottom:210.434667pt;}
.y1f9{bottom:210.701333pt;}
.y165{bottom:210.834667pt;}
.ya4{bottom:210.968000pt;}
.y52{bottom:211.101333pt;}
.y18b{bottom:211.501333pt;}
.ybb{bottom:212.834667pt;}
.y1a{bottom:213.234667pt;}
.y1dc{bottom:213.368000pt;}
.y5f{bottom:213.634667pt;}
.y147{bottom:214.968000pt;}
.y1d4{bottom:215.368000pt;}
.ye7{bottom:215.501333pt;}
.y8f{bottom:216.034667pt;}
.ya9{bottom:216.434667pt;}
.y27{bottom:217.101333pt;}
.y162{bottom:217.234667pt;}
.y8{bottom:217.768000pt;}
.yd2{bottom:217.901333pt;}
.y1c1{bottom:218.301333pt;}
.yb7{bottom:218.568000pt;}
.yf6{bottom:220.034667pt;}
.y209{bottom:220.168000pt;}
.y53{bottom:220.434667pt;}
.y1eb{bottom:220.834667pt;}
.y1f7{bottom:221.901333pt;}
.y177{bottom:222.568000pt;}
.y1cb{bottom:222.701333pt;}
.y1a1{bottom:224.701333pt;}
.y215{bottom:224.968000pt;}
.y107{bottom:225.101333pt;}
.y1a9{bottom:226.133333pt;}
.yb2{bottom:226.168000pt;}
.y158{bottom:226.568000pt;}
.y155{bottom:227.368000pt;}
.yd6{bottom:228.034667pt;}
.y82{bottom:228.701333pt;}
.y93{bottom:228.834667pt;}
.y20f{bottom:229.234667pt;}
.y48{bottom:229.768000pt;}
.y58{bottom:230.034667pt;}
.y150{bottom:230.434667pt;}
.y2f{bottom:231.634667pt;}
.yc6{bottom:232.301333pt;}
.y100{bottom:232.701333pt;}
.y1bd{bottom:233.101333pt;}
.y1c8{bottom:233.501333pt;}
.y119{bottom:234.034667pt;}
.y17d{bottom:234.301333pt;}
.y1a7{bottom:235.333333pt;}
.y113{bottom:235.368000pt;}
.y13e{bottom:235.901333pt;}
.ye9{bottom:236.168000pt;}
.ya3{bottom:236.434667pt;}
.y1a0{bottom:236.834667pt;}
.y38{bottom:237.101333pt;}
.ycb{bottom:237.368000pt;}
.y26{bottom:238.301333pt;}
.y65{bottom:239.101333pt;}
.y146{bottom:239.634667pt;}
.y120{bottom:239.768000pt;}
.y46{bottom:240.434667pt;}
.y8e{bottom:241.634667pt;}
.ya8{bottom:241.901333pt;}
.y11c{bottom:242.568000pt;}
.y19{bottom:242.834667pt;}
.y1b2{bottom:242.968000pt;}
.y1c0{bottom:243.101333pt;}
.y5c{bottom:243.234667pt;}
.y1d1{bottom:243.501333pt;}
.y1a6{bottom:244.533333pt;}
.y15d{bottom:245.234667pt;}
.y142{bottom:245.501333pt;}
.y126{bottom:245.768000pt;}
.yba{bottom:246.301333pt;}
.y1f2{bottom:247.501333pt;}
.y207{bottom:248.301333pt;}
.yf5{bottom:248.701333pt;}
.y116{bottom:248.834667pt;}
.y9c{bottom:249.634667pt;}
.y45{bottom:249.768000pt;}
.y1e6{bottom:250.434667pt;}
.y176{bottom:250.834667pt;}
.y1db{bottom:250.968000pt;}
.yd1{bottom:251.501333pt;}
.y2e{bottom:252.701333pt;}
.y1d5{bottom:252.834667pt;}
.yb6{bottom:252.968000pt;}
.y40{bottom:254.301333pt;}
.yde{bottom:254.701333pt;}
.y161{bottom:254.834667pt;}
.y55{bottom:255.234667pt;}
.y1de{bottom:257.101333pt;}
.yff{bottom:257.368000pt;}
.y1c7{bottom:258.034667pt;}
.y136{bottom:258.701333pt;}
.y47{bottom:259.101333pt;}
.y25{bottom:259.368000pt;}
.y112{bottom:259.901333pt;}
.y14c{bottom:260.301333pt;}
.yb1{bottom:260.701333pt;}
.yc7{bottom:261.634667pt;}
.y1e3{bottom:261.901333pt;}
.y1cf{bottom:262.168000pt;}
.y17c{bottom:262.434667pt;}
.y106{bottom:262.701333pt;}
.y1a8{bottom:262.933333pt;}
.y18{bottom:262.968000pt;}
.y157{bottom:264.168000pt;}
.y169{bottom:264.434667pt;}
.ye6{bottom:264.968000pt;}
.y37{bottom:265.768000pt;}
.y13d{bottom:265.901333pt;}
.yca{bottom:266.701333pt;}
.y20e{bottom:266.834667pt;}
.y8d{bottom:267.101333pt;}
.ya7{bottom:267.501333pt;}
.y1b1{bottom:267.768000pt;}
.y18a{bottom:267.901333pt;}
.y102{bottom:268.301333pt;}
.y64{bottom:268.434667pt;}
.yf4{bottom:269.501333pt;}
.y1ea{bottom:270.168000pt;}
.y197{bottom:271.368000pt;}
.y19c{bottom:271.768000pt;}
.y11f{bottom:272.301333pt;}
.y15c{bottom:273.501333pt;}
.y125{bottom:273.634667pt;}
.y2d{bottom:273.901333pt;}
.y5b{bottom:274.301333pt;}
.y9b{bottom:275.101333pt;}
.y154{bottom:275.768000pt;}
.yc4{bottom:276.434667pt;}
.y206{bottom:276.568000pt;}
.y1bf{bottom:277.101333pt;}
.y1b7{bottom:278.301333pt;}
.y7{bottom:278.701333pt;}
.y115{bottom:278.968000pt;}
.y43{bottom:279.101333pt;}
.y3f{bottom:279.768000pt;}
.y92{bottom:279.901333pt;}
.y1f3{bottom:280.301333pt;}
.y24{bottom:280.568000pt;}
.y12e{bottom:281.101333pt;}
.yfe{bottom:282.034667pt;}
.y1c6{bottom:282.568000pt;}
.y141{bottom:282.968000pt;}
.y17{bottom:283.234667pt;}
.y111{bottom:284.434667pt;}
.yd0{bottom:284.968000pt;}
.y135{bottom:285.101333pt;}
.ye5{bottom:285.634667pt;}
.y175{bottom:286.072000pt;}
.y85{bottom:286.434667pt;}
.yc8{bottom:286.701333pt;}
.ya2{bottom:287.501333pt;}
.y44{bottom:288.434667pt;}
.y1f6{bottom:289.501333pt;}
.y13c{bottom:290.434667pt;}
.y57{bottom:292.168000pt;}
.y156{bottom:292.301333pt;}
.ydf{bottom:292.968000pt;}
.y105{bottom:293.368000pt;}
.y133{bottom:294.301333pt;}
.y36{bottom:294.568000pt;}
.y1e9{bottom:294.834667pt;}
.y2c{bottom:294.968000pt;}
.yb0{bottom:295.101333pt;}
.ye3{bottom:296.034667pt;}
.y189{bottom:296.168000pt;}
.y153{bottom:297.368000pt;}
.y4e{bottom:297.768000pt;}
.yf3{bottom:298.168000pt;}
.y145{bottom:298.301333pt;}
.y196{bottom:298.968000pt;}
.y5a{bottom:299.768000pt;}
.y17b{bottom:300.034667pt;}
.y9a{bottom:300.701333pt;}
.y118{bottom:301.634667pt;}
.y1b0{bottom:301.768000pt;}
.y152{bottom:302.568000pt;}
.y11b{bottom:302.968000pt;}
.y164{bottom:303.101333pt;}
.y16{bottom:303.368000pt;}
.y114{bottom:303.501333pt;}
.y1f1{bottom:304.168000pt;}
.y20d{bottom:304.301333pt;}
.y205{bottom:304.701333pt;}
.y11e{bottom:304.834667pt;}
.y3e{bottom:305.368000pt;}
.y194{bottom:305.634667pt;}
.ye4{bottom:306.434667pt;}
.yfd{bottom:306.701333pt;}
.y1c5{bottom:307.101333pt;}
.yf2{bottom:308.568000pt;}
.y1dd{bottom:308.701333pt;}
.y110{bottom:308.968000pt;}
.y12d{bottom:309.368000pt;}
.y201{bottom:312.434667pt;}
.y132{bottom:312.701333pt;}
.y1e5{bottom:312.968000pt;}
.y1f0{bottom:313.101333pt;}
.y8c{bottom:313.368000pt;}
.y14b{bottom:315.501333pt;}
.y2b{bottom:316.168000pt;}
.y1cd{bottom:316.701333pt;}
.y42{bottom:317.768000pt;}
.y167{bottom:318.034667pt;}
.ya6{bottom:318.568000pt;}
.y41{bottom:319.634667pt;}
.y13b{bottom:320.568000pt;}
.ya1{bottom:321.101333pt;}
.yb5{bottom:321.901333pt;}
.y84{bottom:322.834667pt;}
.y144{bottom:322.968000pt;}
.y35{bottom:323.234667pt;}
.y15{bottom:323.634667pt;}
.y104{bottom:324.034667pt;}
.y188{bottom:324.301333pt;}
.y59{bottom:325.368000pt;}
.y1ca{bottom:326.034667pt;}
.y99{bottom:326.168000pt;}
.y1af{bottom:326.434667pt;}
.y195{bottom:326.568000pt;}
.y4d{bottom:327.101333pt;}
.y14f{bottom:328.034667pt;}
.y199{bottom:328.168000pt;}
.y124{bottom:329.501333pt;}
.yaf{bottom:329.634667pt;}
.y117{bottom:329.901333pt;}
.y3d{bottom:330.834667pt;}
.y131{bottom:331.101333pt;}
.yfc{bottom:331.368000pt;}
.y1c4{bottom:331.634667pt;}
.y204{bottom:332.968000pt;}
.y89{bottom:333.234667pt;}
.y10f{bottom:333.501333pt;}
.yc9{bottom:334.701333pt;}
.y1bc{bottom:335.768000pt;}
.y6{bottom:337.234667pt;}
.y12c{bottom:337.501333pt;}
.y12f{bottom:340.301333pt;}
.y200{bottom:340.568000pt;}
.y19f{bottom:341.101333pt;}
.y20c{bottom:341.901333pt;}
.y14{bottom:343.768000pt;}
.y11d{bottom:345.634667pt;}
.yf1{bottom:347.634667pt;}
.y23{bottom:348.968000pt;}
.y130{bottom:349.501333pt;}
.yc3{bottom:351.368000pt;}
.ya5{bottom:352.034667pt;}
.y1c9{bottom:354.168000pt;}
.y14e{bottom:355.634667pt;}
.ye2{bottom:355.901333pt;}
.y1c3{bottom:356.168000pt;}
.y3c{bottom:356.434667pt;}
.yfb{bottom:356.701333pt;}
.y123{bottom:357.501333pt;}
.y11a{bottom:357.901333pt;}
.y10e{bottom:358.034667pt;}
.y2a{bottom:358.434667pt;}
.y134{bottom:358.701333pt;}
.y88{bottom:358.968000pt;}
.y98{bottom:359.768000pt;}
.y1ab{bottom:360.568000pt;}
.y203{bottom:361.101333pt;}
.y5{bottom:362.701333pt;}
.y13{bottom:364.034667pt;}
.y12b{bottom:365.768000pt;}
.yef{bottom:368.434667pt;}
.y1ff{bottom:368.834667pt;}
.y187{bottom:369.768000pt;}
.y22{bottom:373.234667pt;}
.y20b{bottom:379.368000pt;}
.y29{bottom:379.501333pt;}
.y12{bottom:384.168000pt;}
.y4{bottom:388.301333pt;}
.yf0{bottom:389.101333pt;}
.y21{bottom:397.501333pt;}
.y28{bottom:400.701333pt;}
.y3b{bottom:403.234667pt;}
.y10d{bottom:403.501333pt;}
.y11{bottom:404.434667pt;}
.y202{bottom:406.034667pt;}
.y97{bottom:410.834667pt;}
.y12a{bottom:411.234667pt;}
.y1fe{bottom:413.634667pt;}
.yee{bottom:417.901333pt;}
.y20{bottom:421.768000pt;}
.y10{bottom:424.568000pt;}
.y1{bottom:457.938667pt;}
.y10a{bottom:537.066667pt;}
.ye{bottom:538.933333pt;}
.y10b{bottom:540.266667pt;}
.yf{bottom:541.866667pt;}
.h3c{height:22.203125pt;}
.h49{height:29.604167pt;}
.h40{height:30.041667pt;}
.h1e{height:30.549333pt;}
.ha{height:32.413333pt;}
.h2a{height:33.375000pt;}
.h44{height:33.796875pt;}
.h8{height:34.320000pt;}
.h52{height:34.757812pt;}
.h31{height:37.005208pt;}
.h41{height:37.552083pt;}
.h18{height:38.186667pt;}
.h16{height:41.040000pt;}
.h29{height:41.203125pt;}
.hb{height:42.786458pt;}
.h3a{height:45.062500pt;}
.h1a{height:45.760000pt;}
.h39{height:45.781250pt;}
.h2{height:47.933333pt;}
.h20{height:49.573333pt;}
.h21{height:49.642667pt;}
.hc{height:51.343750pt;}
.h25{height:52.572917pt;}
.h6{height:53.386667pt;}
.h51{height:54.067708pt;}
.h17{height:54.720000pt;}
.h32{height:54.906250pt;}
.h33{height:54.937500pt;}
.h7{height:56.597333pt;}
.h4a{height:56.875000pt;}
.h3d{height:58.047917pt;}
.h34{height:58.881333pt;}
.h2d{height:59.481771pt;}
.h2e{height:59.515625pt;}
.h24{height:60.083333pt;}
.h3e{height:60.181250pt;}
.h3{height:61.013333pt;}
.h10{height:61.098667pt;}
.h1f{height:61.360000pt;}
.h50{height:61.791667pt;}
.h19{height:63.333333pt;}
.h15{height:63.840000pt;}
.h4d{height:63.936000pt;}
.h47{height:64.057292pt;}
.h28{height:64.093750pt;}
.h5{height:64.682667pt;}
.h4e{height:64.853333pt;}
.hf{height:68.640000pt;}
.h13{height:72.960000pt;}
.h3f{height:73.208333pt;}
.h26{height:73.250000pt;}
.h2c{height:73.707813pt;}
.h1b{height:73.920000pt;}
.h4b{height:75.104167pt;}
.h11{height:75.520000pt;}
.h1c{height:76.266667pt;}
.h46{height:81.862500pt;}
.h4f{height:81.898667pt;}
.h14{height:82.080000pt;}
.h43{height:82.359375pt;}
.h37{height:82.406250pt;}
.hd{height:84.960000pt;}
.h22{height:90.640000pt;}
.h23{height:91.173333pt;}
.h27{height:91.510417pt;}
.h35{height:91.562500pt;}
.h1d{height:94.400000pt;}
.h48{height:97.635417pt;}
.h2f{height:98.982292pt;}
.h30{height:99.515625pt;}
.h2b{height:100.661458pt;}
.h38{height:100.718750pt;}
.he{height:103.840000pt;}
.h4c{height:109.875000pt;}
.h42{height:128.187500pt;}
.h3b{height:137.343750pt;}
.h36{height:247.078125pt;}
.h12{height:254.880000pt;}
.h9{height:559.333333pt;}
.h45{height:559.598667pt;}
.h4{height:559.633333pt;}
.h0{height:559.672441pt;}
.h1{height:560.000000pt;}
.w4{width:793.700000pt;}
.w2{width:793.865333pt;}
.w3{width:793.889333pt;}
.w0{width:793.927559pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:67.466667pt;}
.x4d{left:69.466667pt;}
.xc{left:70.800000pt;}
.x19{left:72.666667pt;}
.xd1{left:73.733333pt;}
.x20{left:74.800000pt;}
.x31{left:76.533333pt;}
.x4e{left:77.466667pt;}
.x2c{left:79.200000pt;}
.x40{left:80.400000pt;}
.x2e{left:81.466667pt;}
.x1e{left:82.400000pt;}
.x23{left:83.866667pt;}
.x10{left:85.066667pt;}
.x7{left:86.000000pt;}
.xa8{left:86.933333pt;}
.x43{left:88.266667pt;}
.x3f{left:89.333333pt;}
.x4b{left:90.400000pt;}
.x29{left:91.333333pt;}
.x48{left:92.266667pt;}
.x11{left:93.333333pt;}
.xd{left:94.800000pt;}
.x2b{left:95.866667pt;}
.x50{left:96.933333pt;}
.x99{left:97.866667pt;}
.x69{left:98.933333pt;}
.x45{left:99.866667pt;}
.x37{left:100.933333pt;}
.x4c{left:102.400000pt;}
.x81{left:103.600000pt;}
.x5f{left:104.533333pt;}
.x6{left:106.133333pt;}
.x52{left:109.066667pt;}
.x3{left:110.800000pt;}
.x3d{left:112.533333pt;}
.xb3{left:113.733333pt;}
.x15{left:114.666667pt;}
.x63{left:115.866667pt;}
.x2{left:117.733333pt;}
.x36{left:118.666667pt;}
.x46{left:120.133333pt;}
.xd3{left:122.000000pt;}
.x54{left:124.800000pt;}
.xbb{left:126.000000pt;}
.x17{left:126.933333pt;}
.x64{left:129.333333pt;}
.xec{left:130.666667pt;}
.xd5{left:131.866667pt;}
.x75{left:132.933333pt;}
.x56{left:135.600000pt;}
.x95{left:137.600000pt;}
.x57{left:138.666667pt;}
.xee{left:140.133333pt;}
.x24{left:141.200000pt;}
.x16{left:142.800000pt;}
.xdf{left:144.000000pt;}
.x6c{left:146.266667pt;}
.x51{left:147.866667pt;}
.xda{left:149.466667pt;}
.x1c{left:151.733333pt;}
.xe{left:152.933333pt;}
.x7f{left:154.000000pt;}
.xdd{left:155.200000pt;}
.x5e{left:156.800000pt;}
.xe6{left:159.600000pt;}
.x60{left:160.933333pt;}
.xb7{left:162.133333pt;}
.x88{left:163.866667pt;}
.xa6{left:165.866667pt;}
.x76{left:168.800000pt;}
.xb6{left:171.600000pt;}
.x62{left:172.533333pt;}
.xa9{left:174.666667pt;}
.xf{left:176.400000pt;}
.x4a{left:177.733333pt;}
.x96{left:178.666667pt;}
.xaa{left:180.533333pt;}
.x2a{left:182.266667pt;}
.x6d{left:184.666667pt;}
.x6b{left:187.866667pt;}
.xe7{left:189.066667pt;}
.xce{left:190.400000pt;}
.xb5{left:191.733333pt;}
.x5c{left:192.666667pt;}
.x9{left:194.133333pt;}
.xb4{left:195.733333pt;}
.x38{left:199.466667pt;}
.x9b{left:201.600000pt;}
.xe4{left:202.933333pt;}
.x5b{left:203.866667pt;}
.xbf{left:205.066667pt;}
.x8{left:207.200000pt;}
.xb8{left:208.266667pt;}
.x58{left:209.333333pt;}
.x4{left:211.733333pt;}
.x9a{left:212.800000pt;}
.x34{left:213.866667pt;}
.x9c{left:216.533333pt;}
.x35{left:217.466667pt;}
.xa5{left:218.533333pt;}
.xd4{left:220.933333pt;}
.x33{left:222.933333pt;}
.x12{left:225.733333pt;}
.xea{left:226.666667pt;}
.x8e{left:228.666667pt;}
.xd0{left:230.000000pt;}
.x9d{left:234.133333pt;}
.x8f{left:236.133333pt;}
.x28{left:237.733333pt;}
.x30{left:239.733333pt;}
.xcc{left:242.533333pt;}
.x47{left:244.933333pt;}
.x18{left:246.266667pt;}
.x1d{left:248.533333pt;}
.x1b{left:249.466667pt;}
.xc1{left:250.933333pt;}
.x25{left:252.800000pt;}
.x3a{left:254.266667pt;}
.x49{left:255.600000pt;}
.x26{left:257.066667pt;}
.x61{left:261.466667pt;}
.xca{left:262.666667pt;}
.xba{left:263.600000pt;}
.x1a{left:265.733333pt;}
.x42{left:267.600000pt;}
.xdb{left:269.066667pt;}
.x1f{left:270.000000pt;}
.x22{left:271.200000pt;}
.xc9{left:272.133333pt;}
.xe9{left:273.200000pt;}
.x5{left:274.933333pt;}
.xe8{left:275.866667pt;}
.x2d{left:278.666667pt;}
.x3b{left:280.000000pt;}
.x68{left:281.333333pt;}
.x67{left:283.333333pt;}
.x2f{left:286.133333pt;}
.x39{left:287.066667pt;}
.x6a{left:288.266667pt;}
.x27{left:289.600000pt;}
.xc2{left:291.866667pt;}
.xc8{left:293.600000pt;}
.x32{left:294.800000pt;}
.x59{left:297.066667pt;}
.x14{left:298.666667pt;}
.xed{left:300.800000pt;}
.xeb{left:302.933333pt;}
.xa2{left:305.866667pt;}
.xcf{left:308.800000pt;}
.xcd{left:309.733333pt;}
.x53{left:310.666667pt;}
.x41{left:312.400000pt;}
.xbe{left:314.000000pt;}
.x7a{left:319.200000pt;}
.x5a{left:320.666667pt;}
.x8c{left:322.933333pt;}
.xe1{left:325.333333pt;}
.xde{left:327.200000pt;}
.xbd{left:328.133333pt;}
.x44{left:329.066667pt;}
.xbc{left:330.533333pt;}
.x21{left:331.600000pt;}
.xb9{left:332.933333pt;}
.x66{left:334.666667pt;}
.x3c{left:335.866667pt;}
.x55{left:337.200000pt;}
.xe5{left:338.266667pt;}
.x13{left:339.466667pt;}
.xe3{left:341.466667pt;}
.xcb{left:342.666667pt;}
.x65{left:343.733333pt;}
.x74{left:347.733333pt;}
.xa7{left:348.800000pt;}
.xd2{left:351.600000pt;}
.xab{left:352.533333pt;}
.x3e{left:353.866667pt;}
.x8b{left:355.466667pt;}
.x4f{left:356.800000pt;}
.xc4{left:358.400000pt;}
.xac{left:360.666667pt;}
.xa1{left:362.400000pt;}
.xa3{left:363.333333pt;}
.xa4{left:365.200000pt;}
.x5d{left:366.666667pt;}
.xe2{left:367.866667pt;}
.x7e{left:371.600000pt;}
.x8d{left:375.466667pt;}
.xdc{left:377.600000pt;}
.xe0{left:382.000000pt;}
.x97{left:397.200000pt;}
.x70{left:400.933333pt;}
.x93{left:402.000000pt;}
.xd6{left:411.200000pt;}
.x94{left:413.733333pt;}
.x85{left:418.266667pt;}
.x91{left:422.533333pt;}
.x6f{left:425.200000pt;}
.x7c{left:427.733333pt;}
.xc3{left:429.466667pt;}
.x73{left:431.600000pt;}
.xc0{left:436.133333pt;}
.x83{left:446.666667pt;}
.xc7{left:453.333333pt;}
.xc6{left:458.266667pt;}
.xad{left:461.333333pt;}
.x79{left:464.133333pt;}
.x98{left:465.200000pt;}
.x82{left:468.400000pt;}
.xc5{left:476.933333pt;}
.x92{left:482.666667pt;}
.x80{left:486.933333pt;}
.x8a{left:493.600000pt;}
.x86{left:495.200000pt;}
.x90{left:500.266667pt;}
.x6e{left:501.733333pt;}
.x77{left:507.733333pt;}
.x87{left:510.933333pt;}
.x72{left:522.400000pt;}
.x89{left:526.666667pt;}
.x7b{left:530.000000pt;}
.x7d{left:532.266667pt;}
.x78{left:534.266667pt;}
.x84{left:543.866667pt;}
.xaf{left:546.800000pt;}
.x71{left:550.800000pt;}
.xb0{left:556.000000pt;}
.xae{left:560.266667pt;}
.xd7{left:574.933333pt;}
.x9e{left:576.400000pt;}
.x9f{left:578.000000pt;}
.xd8{left:579.333333pt;}
.xa0{left:582.400000pt;}
.xd9{left:585.466667pt;}
.xb1{left:636.533333pt;}
.xb2{left:644.400000pt;}
.xb{left:691.600000pt;}
.xa{left:713.733333pt;}
}




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