
    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_57cdfbdec1b8808839c68256.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b0d808e3a4dae3217924bf6b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_b50c36ecf62b34dc7ca4532f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_755874cf9e71e7e9f6265c5f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_49c18cabb24ffbe37119a705.woff')format("woff");}.ff5{font-family:ff5;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ae9650d652d6506f27827988.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_4e3f32d6d544d01b3a2eeb45.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1ac815d7fb5d8639b0bbedd0.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_03c39545f657cb32aea5956d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e6a54f5768e18f7b0ba36373.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e3094737e693202e1706a16b.woff')format("woff");}.ffb{font-family:ffb;line-height:1.311035;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_0663de93321c7df0cc14308e.woff')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4cd93e2bf82a1cb0695f203d.woff')format("woff");}.ffd{font-family:ffd;line-height:1.311035;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_70ec484bfe4bc31a37806035.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e9d621418345dbd708336987.woff')format("woff");}.fff{font-family:fff;line-height:1.311035;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_d6675c06316e1d1b696ec854.woff')format("woff");}.ff10{font-family:ff10;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_05f776e32235518438d8911e.woff')format("woff");}.ff11{font-family:ff11;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_bf295043bb1c07670386ce2c.woff')format("woff");}.ff12{font-family:ff12;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_602d112b97d5f9c7edf5b7ed.woff')format("woff");}.ff13{font-family:ff13;line-height:1.432129;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_e36abef693f0ffd36c3a29cb.woff')format("woff");}.ff14{font-family:ff14;line-height:1.311035;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_3faa3e95ed6131db3714bca6.woff')format("woff");}.ff15{font-family:ff15;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_6cafb58df67555c755ba65c5.woff')format("woff");}.ff16{font-family:ff16;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_7058b88362b64970b94662fa.woff')format("woff");}.ff17{font-family:ff17;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_7f3fcd37a7bc1af87c7c107e.woff')format("woff");}.ff18{font-family:ff18;line-height:1.311035;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_0c46cdfc43048b75f57f2a22.woff')format("woff");}.ff19{font-family:ff19;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_f492404d065ae79b89881860.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_5bff1e54615f796ffbbd909a.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.432129;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_6b62a74e6dcdec0163810a2f.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.239258;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_6118f38be4848f00852008bb.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.311035;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_166cf0e2cf47224f8fbf37cf.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_7c7962011f054466f25c04b1.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;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_d474dc1a22945c9b69d662bb.woff')format("woff");}.ff20{font-family:ff20;line-height:1.432129;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_c17f7212f59ad539d7a97ae5.woff')format("woff");}.ff21{font-family:ff21;line-height:1.311035;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_879c4665f709be14fd82117f.woff')format("woff");}.ff22{font-family:ff22;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_3ceb937081c703495894b8f2.woff')format("woff");}.ff23{font-family:ff23;line-height:1.311035;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_e4228092565ff43b0634c79f.woff')format("woff");}.ff24{font-family:ff24;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_f6c085b73989ae7959a821e0.woff')format("woff");}.ff25{font-family:ff25;line-height:1.432129;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_b44997b5747e72f50d7e23e5.woff')format("woff");}.ff26{font-family:ff26;line-height:1.432129;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_5f959e16eba81cd1f36d4518.woff')format("woff");}.ff27{font-family:ff27;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_84b78a271e765f6d541e921f.woff')format("woff");}.ff28{font-family:ff28;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_ee276f0c2d6dc9b1a51c1165.woff')format("woff");}.ff29{font-family:ff29;line-height:1.432129;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_41a614c0cd71298e4ce30388.woff')format("woff");}.ff2a{font-family:ff2a;line-height:1.239258;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_61d92793af9ac7bfee5946d3.woff')format("woff");}.ff2b{font-family:ff2b;line-height:1.311035;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_f19817e3c472ef5686a90335.woff')format("woff");}.ff2c{font-family:ff2c;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_8f95b81d7609bcc67fdbee5a.woff')format("woff");}.ff2d{font-family:ff2d;line-height:1.311035;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_cb23125726cf9ce08d2916ca.woff')format("woff");}.ff2e{font-family:ff2e;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.262125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262125,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.289575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289575,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-70.800000px;}
.v1{vertical-align:-66.300000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.600000px;}
.ls5{letter-spacing:-6.000000px;}
.ls4{letter-spacing:-3.000000px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:1.391400px;}
.ls14{letter-spacing:2.028000px;}
.ls0{letter-spacing:2.249000px;}
.lsb{letter-spacing:2.891400px;}
.ls7{letter-spacing:3.000000px;}
.ls6{letter-spacing:3.918000px;}
.ls2{letter-spacing:6.316198px;}
.ls1{letter-spacing:14.965934px;}
.lse{letter-spacing:47.291400px;}
.ls12{letter-spacing:49.092000px;}
.ls10{letter-spacing:50.592000px;}
.ls11{letter-spacing:52.092000px;}
.ls13{letter-spacing:53.592000px;}
.lsf{letter-spacing:57.792000px;}
.lsd{letter-spacing:233.292000px;}
.ls8{letter-spacing:311.250000px;}
.ls9{letter-spacing:315.750000px;}
.lsa{letter-spacing:1393.422000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-36.696000px;}
.wsb{word-spacing:-33.000000px;}
.ws4{word-spacing:-26.400000px;}
.ws18{word-spacing:-17.250000px;}
.wsc{word-spacing:-16.668000px;}
.ws0{word-spacing:-16.500000px;}
.wsd{word-spacing:-15.750000px;}
.wse{word-spacing:-15.000000px;}
.ws1{word-spacing:-14.250000px;}
.ws6{word-spacing:-12.000000px;}
.ws12{word-spacing:-11.988000px;}
.ws14{word-spacing:-11.985000px;}
.ws2{word-spacing:-11.398500px;}
.ws7{word-spacing:-9.000000px;}
.ws15{word-spacing:-2.400000px;}
.wsf{word-spacing:-0.051000px;}
.ws10{word-spacing:-0.048000px;}
.ws3{word-spacing:-0.045000px;}
.ws11{word-spacing:-0.039000px;}
.ws5{word-spacing:0.000000px;}
.ws8{word-spacing:2.112000px;}
.ws17{word-spacing:2.160000px;}
.ws19{word-spacing:3.378000px;}
.ws9{word-spacing:4.128000px;}
.ws16{word-spacing:7.200000px;}
.ws13{word-spacing:239.508000px;}
._2f{margin-left:-64.800000px;}
._30{margin-left:-37.500000px;}
._37{margin-left:-22.836000px;}
._24{margin-left:-15.906000px;}
._27{margin-left:-14.784000px;}
._9{margin-left:-13.728000px;}
._f{margin-left:-12.078000px;}
._10{margin-left:-10.956000px;}
._18{margin-left:-9.636000px;}
._8{margin-left:-8.118000px;}
._c{margin-left:-6.402000px;}
._0{margin-left:-4.422000px;}
._2{margin-left:-3.300000px;}
._1{margin-left:-1.848000px;}
._3{width:1.386000px;}
._4{width:2.772000px;}
._5{width:4.554000px;}
._7{width:5.742000px;}
._6{width:6.996000px;}
._12{width:8.052000px;}
._a{width:9.702000px;}
._b{width:11.022000px;}
._17{width:12.078000px;}
._d{width:13.266000px;}
._e{width:14.520000px;}
._2d{width:16.500000px;}
._21{width:17.622000px;}
._19{width:19.404000px;}
._1a{width:20.790000px;}
._13{width:21.846000px;}
._1b{width:22.968000px;}
._11{width:24.354000px;}
._14{width:25.806000px;}
._15{width:27.522000px;}
._25{width:28.710000px;}
._16{width:29.766000px;}
._1e{width:31.680000px;}
._1c{width:32.934000px;}
._20{width:33.990000px;}
._1d{width:35.838000px;}
._1f{width:37.092000px;}
._31{width:38.283000px;}
._2e{width:39.438000px;}
._35{width:41.118000px;}
._26{width:45.276000px;}
._2a{width:48.246000px;}
._2b{width:52.998000px;}
._2c{width:54.516000px;}
._32{width:65.340000px;}
._34{width:66.522000px;}
._38{width:72.372000px;}
._36{width:73.500000px;}
._39{width:77.136000px;}
._33{width:81.600000px;}
._3c{width:87.252000px;}
._3b{width:100.260000px;}
._3a{width:104.208000px;}
._3e{width:110.832000px;}
._3d{width:114.678000px;}
._28{width:152.790000px;}
._22{width:161.436000px;}
._23{width:168.630000px;}
._29{width:515.994000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:30.000000px;}
.fs8{font-size:36.000000px;}
.fs9{font-size:39.000000px;}
.fs3{font-size:42.000000px;}
.fs5{font-size:45.000000px;}
.fs4{font-size:45.594000px;}
.fs7{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fsc{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fse{font-size:69.000000px;}
.fs1{font-size:78.000000px;}
.fsd{font-size:144.000000px;}
.fsf{font-size:324.000000px;}
.y0{bottom:0.000000px;}
.y130{bottom:8.625000px;}
.y1d2{bottom:9.300000px;}
.y91{bottom:9.750000px;}
.y63{bottom:17.325000px;}
.y35{bottom:18.000150px;}
.y176{bottom:21.225000px;}
.yb7{bottom:29.100000px;}
.y34{bottom:31.350000px;}
.ydf{bottom:32.025000px;}
.y156{bottom:32.100000px;}
.y106{bottom:33.525000px;}
.y36{bottom:33.825000px;}
.y19f{bottom:40.725000px;}
.y33{bottom:45.001500px;}
.y32{bottom:60.450000px;}
.y90{bottom:62.700000px;}
.y12f{bottom:68.400000px;}
.y62{bottom:69.526500px;}
.y8f{bottom:79.950000px;}
.yb6{bottom:81.675000px;}
.yde{bottom:84.975000px;}
.y155{bottom:85.350000px;}
.y31{bottom:87.150000px;}
.y61{bottom:87.450000px;}
.y105{bottom:87.825000px;}
.y19e{bottom:93.975000px;}
.y175{bottom:100.425000px;}
.y154{bottom:102.300000px;}
.ydd{bottom:102.600000px;}
.y30{bottom:104.775000px;}
.y12e{bottom:110.176500px;}
.yb5{bottom:118.051500px;}
.y174{bottom:119.175000px;}
.y8e{bottom:119.553000px;}
.ydc{bottom:119.850000px;}
.y2f{bottom:122.025000px;}
.y60{bottom:122.100000px;}
.y104{bottom:125.625000px;}
.y12d{bottom:128.850000px;}
.y19d{bottom:131.026500px;}
.yb4{bottom:137.101500px;}
.y8d{bottom:138.601500px;}
.y2e{bottom:139.350000px;}
.y153{bottom:144.000000px;}
.y103{bottom:144.750000px;}
.y19c{bottom:149.701500px;}
.y1d1{bottom:155.476500px;}
.y2d{bottom:156.600000px;}
.yb3{bottom:156.601500px;}
.y8c{bottom:157.351500px;}
.y173{bottom:162.000000px;}
.y19b{bottom:168.826500px;}
.ydb{bottom:169.201500px;}
.y5f{bottom:173.550000px;}
.y2c{bottom:173.850000px;}
.y1d0{bottom:174.900000px;}
.yb2{bottom:175.650000px;}
.y8b{bottom:176.400000px;}
.y172{bottom:178.950000px;}
.y19a{bottom:187.951500px;}
.yda{bottom:188.625000px;}
.y1cf{bottom:192.601500px;}
.yb1{bottom:194.026500px;}
.y12c{bottom:195.831000px;}
.y171{bottom:207.000000px;}
.y199{bottom:207.001500px;}
.y1ce{bottom:212.700000px;}
.yb0{bottom:213.450000px;}
.y8a{bottom:213.900000px;}
.y12b{bottom:214.206000px;}
.yd9{bottom:216.000000px;}
.y59{bottom:217.500000px;}
.y198{bottom:225.675000px;}
.y1cd{bottom:230.400000px;}
.yaf{bottom:232.200000px;}
.y12a{bottom:233.254500px;}
.y170{bottom:235.050000px;}
.y58{bottom:242.325000px;}
.y197{bottom:244.800000px;}
.y2b{bottom:248.706000px;}
.y1cc{bottom:250.875000px;}
.yae{bottom:251.250000px;}
.y89{bottom:251.325000px;}
.y16f{bottom:251.625000px;}
.y129{bottom:251.928000px;}
.yd8{bottom:254.475000px;}
.y16e{bottom:262.050000px;}
.y196{bottom:263.925000px;}
.y2a{bottom:267.831000px;}
.y1cb{bottom:268.200000px;}
.yad{bottom:270.004500px;}
.y152{bottom:270.376500px;}
.y128{bottom:271.053000px;}
.yd7{bottom:273.600000px;}
.y16d{bottom:280.050000px;}
.y29{bottom:286.956000px;}
.y1ca{bottom:289.050000px;}
.y16c{bottom:289.425000px;}
.yac{bottom:289.428000px;}
.y151{bottom:289.800000px;}
.y127{bottom:290.178000px;}
.y195{bottom:291.600000px;}
.yd6{bottom:292.276500px;}
.y28{bottom:305.629500px;}
.y1c9{bottom:306.301500px;}
.yab{bottom:308.476500px;}
.y126{bottom:309.228000px;}
.y150{bottom:309.300000px;}
.yd5{bottom:311.776500px;}
.y5e{bottom:314.700000px;}
.y16b{bottom:317.175000px;}
.y88{bottom:321.529500px;}
.y27{bottom:324.754500px;}
.y1c8{bottom:326.475000px;}
.yaa{bottom:327.601500px;}
.y125{bottom:327.978000px;}
.y194{bottom:330.153000px;}
.yd4{bottom:330.825000px;}
.y5d{bottom:331.575000px;}
.y87{bottom:340.953000px;}
.y26{bottom:343.428000px;}
.y1c7{bottom:344.850000px;}
.y16a{bottom:345.225000px;}
.ya9{bottom:346.275000px;}
.y124{bottom:347.026500px;}
.y5c{bottom:348.150000px;}
.y193{bottom:348.826500px;}
.yd3{bottom:349.575000px;}
.y86{bottom:360.751500px;}
.y25{bottom:362.851500px;}
.y1c6{bottom:364.275000px;}
.y5b{bottom:364.725000px;}
.ya8{bottom:365.025000px;}
.y123{bottom:366.075000px;}
.y192{bottom:367.951500px;}
.yd2{bottom:368.254500px;}
.y169{bottom:372.600000px;}
.y85{bottom:380.550000px;}
.y24{bottom:381.526500px;}
.y5a{bottom:381.600000px;}
.y1c5{bottom:381.900000px;}
.ya7{bottom:384.450000px;}
.y122{bottom:385.200000px;}
.y191{bottom:386.625000px;}
.yd1{bottom:387.303000px;}
.y84{bottom:399.975000px;}
.y23{bottom:400.651500px;}
.y1c4{bottom:402.450000px;}
.ya6{bottom:403.201500px;}
.y121{bottom:403.875000px;}
.y190{bottom:406.125000px;}
.yd0{bottom:406.428000px;}
.y22{bottom:419.776500px;}
.y1c3{bottom:420.451500px;}
.ya5{bottom:422.175000px;}
.y120{bottom:423.375000px;}
.y18f{bottom:424.800000px;}
.ycf{bottom:425.553000px;}
.y102{bottom:431.625000px;}
.y21{bottom:438.450000px;}
.y1c2{bottom:440.625000px;}
.ya4{bottom:441.300000px;}
.y18e{bottom:443.925000px;}
.yce{bottom:444.601500px;}
.y168{bottom:449.250000px;}
.y14f{bottom:449.701500px;}
.y20{bottom:457.575000px;}
.y1c1{bottom:459.675000px;}
.ya3{bottom:460.425000px;}
.y18d{bottom:462.976500px;}
.ycd{bottom:463.650000px;}
.y57{bottom:466.950000px;}
.y14e{bottom:468.001500px;}
.y167{bottom:468.375000px;}
.y101{bottom:470.175000px;}
.y1f{bottom:476.625000px;}
.y1c0{bottom:478.800000px;}
.y18c{bottom:481.725000px;}
.ycc{bottom:482.325000px;}
.y56{bottom:486.000000px;}
.y14d{bottom:487.126500px;}
.y83{bottom:487.504500px;}
.y100{bottom:489.225000px;}
.y1e{bottom:495.375000px;}
.y1bf{bottom:497.475000px;}
.ya2{bottom:497.850000px;}
.y18b{bottom:500.775000px;}
.ycb{bottom:501.450000px;}
.y55{bottom:504.753000px;}
.y14c{bottom:505.800000px;}
.y166{bottom:506.175000px;}
.y82{bottom:506.178000px;}
.yff{bottom:507.975000px;}
.y1d{bottom:514.800000px;}
.y1be{bottom:515.101500px;}
.y11f{bottom:517.275000px;}
.y18a{bottom:519.825000px;}
.yca{bottom:520.575000px;}
.y54{bottom:524.176500px;}
.y14b{bottom:525.231000px;}
.y81{bottom:525.303000px;}
.yfe{bottom:526.725000px;}
.y1bd{bottom:535.275000px;}
.y11e{bottom:537.075000px;}
.y189{bottom:538.951500px;}
.yc9{bottom:539.250000px;}
.y1c{bottom:541.800000px;}
.y53{bottom:542.851500px;}
.y14a{bottom:543.981000px;}
.y80{bottom:544.053000px;}
.y165{bottom:544.351500px;}
.yfd{bottom:546.150000px;}
.y1bc{bottom:554.400000px;}
.y11d{bottom:558.000000px;}
.yc8{bottom:558.375000px;}
.y52{bottom:561.976500px;}
.y149{bottom:562.731000px;}
.y164{bottom:563.026500px;}
.y7f{bottom:563.101500px;}
.yfc{bottom:564.525000px;}
.y1bb{bottom:573.450000px;}
.y188{bottom:576.750000px;}
.y11c{bottom:579.225000px;}
.y51{bottom:581.101500px;}
.y148{bottom:581.779500px;}
.y1b{bottom:582.150000px;}
.y163{bottom:582.151500px;}
.yfb{bottom:583.951500px;}
.y1ba{bottom:591.451500px;}
.y187{bottom:595.800000px;}
.yc7{bottom:596.175000px;}
.y1a{bottom:599.775000px;}
.y11b{bottom:600.075000px;}
.y147{bottom:600.904500px;}
.y7e{bottom:601.200000px;}
.yfa{bottom:603.000000px;}
.y1b9{bottom:611.625000px;}
.y186{bottom:614.926500px;}
.y146{bottom:619.953000px;}
.y162{bottom:620.250000px;}
.y11a{bottom:621.000000px;}
.yf9{bottom:621.750000px;}
.y50{bottom:627.525000px;}
.y1b8{bottom:629.625000px;}
.yc2{bottom:631.800000px;}
.y185{bottom:633.601500px;}
.y19{bottom:633.975000px;}
.y119{bottom:637.575000px;}
.y7d{bottom:639.000000px;}
.y145{bottom:639.001500px;}
.y161{bottom:639.375000px;}
.yf8{bottom:640.875000px;}
.y1b7{bottom:647.625000px;}
.yc1{bottom:648.675000px;}
.y18{bottom:651.600000px;}
.y184{bottom:652.725000px;}
.y144{bottom:658.050000px;}
.y7c{bottom:658.125000px;}
.y160{bottom:658.425000px;}
.yf7{bottom:659.925000px;}
.y118{bottom:662.775000px;}
.y4f{bottom:665.703000px;}
.y1b6{bottom:668.475000px;}
.y17{bottom:668.850000px;}
.y183{bottom:671.775000px;}
.y143{bottom:676.800000px;}
.y7b{bottom:677.175000px;}
.yf6{bottom:678.975000px;}
.y117{bottom:684.000000px;}
.y4e{bottom:685.128000px;}
.y1b5{bottom:686.475000px;}
.y182{bottom:690.825000px;}
.y142{bottom:695.550000px;}
.y15f{bottom:695.850000px;}
.y7a{bottom:695.925000px;}
.yf5{bottom:698.025000px;}
.y16{bottom:702.750000px;}
.y4d{bottom:703.801500px;}
.y116{bottom:705.225000px;}
.y1b4{bottom:705.600000px;}
.y15e{bottom:714.975000px;}
.y79{bottom:714.976500px;}
.yf4{bottom:716.775000px;}
.y15{bottom:720.750000px;}
.y4c{bottom:722.926500px;}
.y1b3{bottom:723.601500px;}
.yc6{bottom:726.826500px;}
.y181{bottom:728.625000px;}
.y141{bottom:733.350000px;}
.y78{bottom:733.726500px;}
.y14{bottom:737.625000px;}
.y4b{bottom:741.601500px;}
.yc5{bottom:742.276500px;}
.y1b2{bottom:742.650000px;}
.y180{bottom:747.375000px;}
.y77{bottom:752.776500px;}
.yf3{bottom:754.575000px;}
.y13{bottom:754.950000px;}
.y15d{bottom:756.000000px;}
.yc4{bottom:758.475000px;}
.y4a{bottom:760.726500px;}
.y1b1{bottom:761.401500px;}
.y76{bottom:771.900000px;}
.ya1{bottom:772.500000px;}
.y12{bottom:772.575000px;}
.yf2{bottom:773.625000px;}
.y13a{bottom:773.700000px;}
.yc3{bottom:774.375000px;}
.y115{bottom:777.225000px;}
.y49{bottom:780.150000px;}
.y1b0{bottom:780.450000px;}
.y75{bottom:790.950000px;}
.ya0{bottom:792.000000px;}
.yf1{bottom:792.750000px;}
.y13b{bottom:794.175000px;}
.y139{bottom:794.550000px;}
.y114{bottom:796.275000px;}
.y48{bottom:798.900000px;}
.y1af{bottom:799.500000px;}
.y17f{bottom:805.725000px;}
.y11{bottom:807.150030px;}
.y74{bottom:810.000000px;}
.y9f{bottom:810.675000px;}
.yf0{bottom:813.225000px;}
.y1ae{bottom:818.250000px;}
.y47{bottom:818.325000px;}
.y10{bottom:824.100000px;}
.y73{bottom:828.750000px;}
.y9e{bottom:829.800000px;}
.yef{bottom:831.975000px;}
.y113{bottom:834.451500px;}
.y46{bottom:837.000000px;}
.y1ad{bottom:837.300000px;}
.yf{bottom:841.350000px;}
.y72{bottom:848.176500px;}
.y9d{bottom:848.850000px;}
.y140{bottom:849.600000px;}
.yee{bottom:851.400000px;}
.y112{bottom:853.576500px;}
.y45{bottom:855.750000px;}
.ye{bottom:858.600000px;}
.y1ac{bottom:865.050000px;}
.y71{bottom:866.926500px;}
.y9c{bottom:867.900000px;}
.y13f{bottom:869.100000px;}
.yed{bottom:871.200000px;}
.y111{bottom:872.250000px;}
.y44{bottom:874.800000px;}
.yd{bottom:875.551500px;}
.y70{bottom:885.600000px;}
.y9b{bottom:886.651500px;}
.y13e{bottom:888.150000px;}
.yec{bottom:889.950000px;}
.y110{bottom:891.675000px;}
.yc{bottom:893.100000px;}
.y43{bottom:893.925000px;}
.y1ab{bottom:903.601500px;}
.y6f{bottom:904.725000px;}
.y9a{bottom:905.625000px;}
.y13d{bottom:907.950000px;}
.yeb{bottom:909.375000px;}
.yb{bottom:910.425000px;}
.y42{bottom:912.975000px;}
.yc0{bottom:918.675000px;}
.y1aa{bottom:922.276500px;}
.y6e{bottom:924.150000px;}
.y99{bottom:924.750000px;}
.y13c{bottom:926.700000px;}
.ya{bottom:927.750000px;}
.y10f{bottom:929.175000px;}
.yea{bottom:929.926500px;}
.y41{bottom:932.100000px;}
.y17e{bottom:933.151500px;}
.ybf{bottom:938.175000px;}
.y1a9{bottom:941.401500px;}
.y138{bottom:941.775000px;}
.y6d{bottom:942.900000px;}
.y98{bottom:943.875000px;}
.y9{bottom:945.375000px;}
.y10e{bottom:948.150000px;}
.ye9{bottom:948.300000px;}
.y40{bottom:950.775000px;}
.ybe{bottom:956.850000px;}
.y1a8{bottom:961.200000px;}
.y6c{bottom:961.950000px;}
.y97{bottom:963.000000px;}
.y17d{bottom:965.926500px;}
.y10d{bottom:967.275000px;}
.ye8{bottom:967.350000px;}
.y137{bottom:968.100000px;}
.y3f{bottom:970.200000px;}
.ybd{bottom:975.975000px;}
.y1a7{bottom:979.875000px;}
.y6b{bottom:981.000000px;}
.y8{bottom:982.050000px;}
.ye7{bottom:986.400000px;}
.y3e{bottom:988.950000px;}
.ybc{bottom:995.025000px;}
.y17c{bottom:997.575000px;}
.y1a6{bottom:999.000000px;}
.y6a{bottom:999.750000px;}
.y96{bottom:1001.100000px;}
.y7{bottom:1001.175000px;}
.y15c{bottom:1002.600000px;}
.y10c{bottom:1005.451500px;}
.ye6{bottom:1005.525000px;}
.y3d{bottom:1008.000000px;}
.ybb{bottom:1014.075000px;}
.y1a5{bottom:1018.050000px;}
.y69{bottom:1018.800000px;}
.y6{bottom:1019.850000px;}
.y136{bottom:1021.053000px;}
.y17b{bottom:1022.025000px;}
.y10b{bottom:1024.201500px;}
.ye5{bottom:1024.575000px;}
.y3c{bottom:1026.750000px;}
.yba{bottom:1033.200000px;}
.y1a4{bottom:1036.800000px;}
.y68{bottom:1037.925000px;}
.y95{bottom:1038.600000px;}
.y5{bottom:1038.975000px;}
.y135{bottom:1039.726500px;}
.y15b{bottom:1040.775000px;}
.y10a{bottom:1043.250000px;}
.y3b{bottom:1046.175000px;}
.y67{bottom:1056.975000px;}
.y1a3{bottom:1057.276500px;}
.y4{bottom:1058.025000px;}
.y134{bottom:1058.400000px;}
.y15a{bottom:1059.825000px;}
.y109{bottom:1062.000000px;}
.ye4{bottom:1062.375000px;}
.y3a{bottom:1064.850000px;}
.y17a{bottom:1069.575000px;}
.yb9{bottom:1070.625000px;}
.y1a2{bottom:1074.600000px;}
.y66{bottom:1075.725000px;}
.y94{bottom:1076.775000px;}
.y159{bottom:1078.950000px;}
.y108{bottom:1081.050000px;}
.ye3{bottom:1081.125000px;}
.y39{bottom:1083.975000px;}
.y1a1{bottom:1093.650000px;}
.y65{bottom:1094.775000px;}
.y3{bottom:1095.825000px;}
.y133{bottom:1096.575000px;}
.ye2{bottom:1100.175000px;}
.y38{bottom:1103.100000px;}
.y158{bottom:1106.250000px;}
.y179{bottom:1107.750000px;}
.y93{bottom:1114.875000px;}
.y2{bottom:1115.625000px;}
.y132{bottom:1116.750000px;}
.ye1{bottom:1119.225000px;}
.y178{bottom:1126.425000px;}
.y1a0{bottom:1146.600000px;}
.y64{bottom:1148.775000px;}
.y107{bottom:1154.475000px;}
.y37{bottom:1157.100000px;}
.y157{bottom:1161.375000px;}
.y92{bottom:1168.875000px;}
.y1{bottom:1171.425000px;}
.yb8{bottom:1172.175000px;}
.y131{bottom:1172.550000px;}
.ye0{bottom:1173.600000px;}
.y177{bottom:1181.550000px;}
.hd{height:35.332031px;}
.h22{height:37.546875px;}
.h15{height:40.675781px;}
.h14{height:41.220703px;}
.h7{height:43.804688px;}
.h8{height:44.890137px;}
.h23{height:46.933594px;}
.h10{height:47.109375px;}
.hc{height:48.375000px;}
.h1a{height:50.053711px;}
.h1d{height:50.062500px;}
.h1e{height:52.797363px;}
.h27{height:53.191406px;}
.h9{height:55.503491px;}
.h6{height:55.942383px;}
.h1b{height:58.886719px;}
.h2a{height:60.468750px;}
.h4{height:64.743164px;}
.h2{height:64.775391px;}
.h3{height:66.515625px;}
.h26{height:67.719727px;}
.h5{height:81.199219px;}
.h1f{height:89.375391px;}
.h1c{height:148.009309px;}
.h2b{height:317.988281px;}
.h2c{height:1178.250000px;}
.hf{height:1190.250000px;}
.he{height:1190.550000px;}
.h24{height:1191.600000px;}
.h25{height:1191.750000px;}
.ha{height:1192.350000px;}
.hb{height:1192.500000px;}
.h18{height:1202.025000px;}
.h19{height:1202.250000px;}
.h17{height:1204.500000px;}
.h16{height:1204.575000px;}
.h20{height:1204.950000px;}
.h21{height:1205.250000px;}
.h11{height:1208.850000px;}
.h12{height:1209.000000px;}
.h13{height:1209.225000px;}
.h1{height:1211.250000px;}
.h0{height:1211.400000px;}
.h29{height:1218.750000px;}
.h28{height:1218.975000px;}
.wf{width:737.250000px;}
.w1{width:741.000000px;}
.w0{width:741.225000px;}
.w6{width:743.775000px;}
.w7{width:744.000000px;}
.w8{width:744.150000px;}
.w13{width:751.500000px;}
.w12{width:751.650000px;}
.w4{width:755.625000px;}
.w5{width:756.000000px;}
.w3{width:758.250000px;}
.w2{width:758.550000px;}
.wc{width:762.000000px;}
.wb{width:762.150000px;}
.wa{width:765.750000px;}
.w9{width:766.050000px;}
.wd{width:768.600000px;}
.we{width:768.750000px;}
.w10{width:782.625000px;}
.w11{width:783.000000px;}
.x0{left:0.000000px;}
.x4d{left:9.000000px;}
.x9{left:17.250000px;}
.x2{left:21.600000px;}
.x28{left:23.775000px;}
.x21{left:24.825000px;}
.x4b{left:29.175150px;}
.x4c{left:30.225000px;}
.x4a{left:31.350000px;}
.x42{left:32.400000px;}
.x2a{left:36.375000px;}
.x35{left:37.800000px;}
.x31{left:38.850000px;}
.x74{left:44.250000px;}
.x5b{left:45.375000px;}
.x57{left:46.425000px;}
.x4e{left:48.225000px;}
.x75{left:49.350000px;}
.x1f{left:52.198500px;}
.x1e{left:53.250000px;}
.x11{left:54.375000px;}
.x39{left:56.176500px;}
.x37{left:57.225000px;}
.x40{left:58.650000px;}
.x8{left:59.775000px;}
.x5d{left:63.375000px;}
.x27{left:66.225000px;}
.x20{left:67.350000px;}
.x1d{left:69.150000px;}
.xa{left:70.198500px;}
.x49{left:72.375000px;}
.x41{left:73.425000px;}
.x61{left:74.550000px;}
.x48{left:75.975000px;}
.x2b{left:79.198500px;}
.x13{left:80.625000px;}
.x3c{left:82.050000px;}
.x3a{left:83.175000px;}
.x38{left:84.225000px;}
.x73{left:86.400000px;}
.x56{left:88.948500px;}
.x36{left:90.375000px;}
.x12{left:96.450000px;}
.x3b{left:98.250000px;}
.x26{left:99.375000px;}
.x6a{left:101.550000px;}
.x68{left:103.648500px;}
.x1a{left:107.250000px;}
.x71{left:110.850000px;}
.x6b{left:112.350000px;}
.x5e{left:116.250000px;}
.x4f{left:120.600000px;}
.x50{left:124.200000px;}
.x64{left:126.750000px;}
.x62{left:127.800000px;}
.x63{left:129.975000px;}
.x3d{left:137.850000px;}
.x2c{left:142.575000px;}
.x44{left:150.450000px;}
.x45{left:152.625000px;}
.x65{left:159.135000px;}
.x43{left:170.250000px;}
.x5a{left:172.425000px;}
.x46{left:177.135000px;}
.x19{left:186.825000px;}
.x34{left:191.550000px;}
.x66{left:195.450000px;}
.x51{left:205.200000px;}
.x5f{left:208.035000px;}
.x6d{left:221.775000px;}
.x67{left:223.200000px;}
.x6f{left:225.375000px;}
.x6e{left:226.424850px;}
.x58{left:239.025000px;}
.x47{left:257.775000px;}
.x14{left:259.950000px;}
.x6c{left:268.200000px;}
.x32{left:275.775000px;}
.x25{left:314.625000px;}
.x60{left:324.375000px;}
.x2f{left:337.650000px;}
.x3e{left:340.200000px;}
.x52{left:341.625000px;}
.x70{left:349.575000px;}
.x10{left:350.625000px;}
.x69{left:354.975000px;}
.x29{left:356.025000px;}
.x59{left:363.225000px;}
.x2d{left:370.035000px;}
.x15{left:371.535000px;}
.x5c{left:379.035000px;}
.x30{left:384.451500px;}
.x1b{left:388.425000px;}
.x1{left:431.625000px;}
.x1c{left:435.585000px;}
.x3f{left:441.750000px;}
.x2e{left:448.200000px;}
.x72{left:454.650000px;}
.x53{left:474.825000px;}
.x3{left:506.175000px;}
.x24{left:507.598500px;}
.x22{left:508.650000px;}
.x7{left:537.823650px;}
.x23{left:539.248500px;}
.x6{left:545.773500px;}
.x54{left:547.200000px;}
.x4{left:548.248500px;}
.x55{left:558.375000px;}
.x5{left:560.548500px;}
.x17{left:575.985000px;}
.x33{left:578.175000px;}
.xc{left:579.223500px;}
.x18{left:581.385000px;}
.x16{left:584.235000px;}
.xb{left:595.050000px;}
.xf{left:610.186350px;}
.xd{left:636.148500px;}
.xe{left:647.623350px;}
@media print{
.v3{vertical-align:-62.933333pt;}
.v1{vertical-align:-58.933333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.866667pt;}
.ls5{letter-spacing:-5.333333pt;}
.ls4{letter-spacing:-2.666667pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:1.236800pt;}
.ls14{letter-spacing:1.802667pt;}
.ls0{letter-spacing:1.999111pt;}
.lsb{letter-spacing:2.570133pt;}
.ls7{letter-spacing:2.666667pt;}
.ls6{letter-spacing:3.482667pt;}
.ls2{letter-spacing:5.614398pt;}
.ls1{letter-spacing:13.303052pt;}
.lse{letter-spacing:42.036800pt;}
.ls12{letter-spacing:43.637333pt;}
.ls10{letter-spacing:44.970667pt;}
.ls11{letter-spacing:46.304000pt;}
.ls13{letter-spacing:47.637333pt;}
.lsf{letter-spacing:51.370667pt;}
.lsd{letter-spacing:207.370667pt;}
.ls8{letter-spacing:276.666667pt;}
.ls9{letter-spacing:280.666667pt;}
.lsa{letter-spacing:1238.597333pt;}
.wsa{word-spacing:-32.618667pt;}
.wsb{word-spacing:-29.333333pt;}
.ws4{word-spacing:-23.466667pt;}
.ws18{word-spacing:-15.333333pt;}
.wsc{word-spacing:-14.816000pt;}
.ws0{word-spacing:-14.666667pt;}
.wsd{word-spacing:-14.000000pt;}
.wse{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.666667pt;}
.ws6{word-spacing:-10.666667pt;}
.ws12{word-spacing:-10.656000pt;}
.ws14{word-spacing:-10.653333pt;}
.ws2{word-spacing:-10.132000pt;}
.ws7{word-spacing:-8.000000pt;}
.ws15{word-spacing:-2.133333pt;}
.wsf{word-spacing:-0.045333pt;}
.ws10{word-spacing:-0.042667pt;}
.ws3{word-spacing:-0.040000pt;}
.ws11{word-spacing:-0.034667pt;}
.ws5{word-spacing:0.000000pt;}
.ws8{word-spacing:1.877333pt;}
.ws17{word-spacing:1.920000pt;}
.ws19{word-spacing:3.002667pt;}
.ws9{word-spacing:3.669333pt;}
.ws16{word-spacing:6.400000pt;}
.ws13{word-spacing:212.896000pt;}
._2f{margin-left:-57.600000pt;}
._30{margin-left:-33.333333pt;}
._37{margin-left:-20.298667pt;}
._24{margin-left:-14.138667pt;}
._27{margin-left:-13.141333pt;}
._9{margin-left:-12.202667pt;}
._f{margin-left:-10.736000pt;}
._10{margin-left:-9.738667pt;}
._18{margin-left:-8.565333pt;}
._8{margin-left:-7.216000pt;}
._c{margin-left:-5.690667pt;}
._0{margin-left:-3.930667pt;}
._2{margin-left:-2.933333pt;}
._1{margin-left:-1.642667pt;}
._3{width:1.232000pt;}
._4{width:2.464000pt;}
._5{width:4.048000pt;}
._7{width:5.104000pt;}
._6{width:6.218667pt;}
._12{width:7.157333pt;}
._a{width:8.624000pt;}
._b{width:9.797333pt;}
._17{width:10.736000pt;}
._d{width:11.792000pt;}
._e{width:12.906667pt;}
._2d{width:14.666667pt;}
._21{width:15.664000pt;}
._19{width:17.248000pt;}
._1a{width:18.480000pt;}
._13{width:19.418667pt;}
._1b{width:20.416000pt;}
._11{width:21.648000pt;}
._14{width:22.938667pt;}
._15{width:24.464000pt;}
._25{width:25.520000pt;}
._16{width:26.458667pt;}
._1e{width:28.160000pt;}
._1c{width:29.274667pt;}
._20{width:30.213333pt;}
._1d{width:31.856000pt;}
._1f{width:32.970667pt;}
._31{width:34.029333pt;}
._2e{width:35.056000pt;}
._35{width:36.549333pt;}
._26{width:40.245333pt;}
._2a{width:42.885333pt;}
._2b{width:47.109333pt;}
._2c{width:48.458667pt;}
._32{width:58.080000pt;}
._34{width:59.130667pt;}
._38{width:64.330667pt;}
._36{width:65.333333pt;}
._39{width:68.565333pt;}
._33{width:72.533333pt;}
._3c{width:77.557333pt;}
._3b{width:89.120000pt;}
._3a{width:92.629333pt;}
._3e{width:98.517333pt;}
._3d{width:101.936000pt;}
._28{width:135.813333pt;}
._22{width:143.498667pt;}
._23{width:149.893333pt;}
._29{width:458.661333pt;}
.fsb{font-size:26.666667pt;}
.fs8{font-size:32.000000pt;}
.fs9{font-size:34.666667pt;}
.fs3{font-size:37.333333pt;}
.fs5{font-size:40.000000pt;}
.fs4{font-size:40.528000pt;}
.fs7{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fsc{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fse{font-size:61.333333pt;}
.fs1{font-size:69.333333pt;}
.fsd{font-size:128.000000pt;}
.fsf{font-size:288.000000pt;}
.y0{bottom:0.000000pt;}
.y130{bottom:7.666667pt;}
.y1d2{bottom:8.266667pt;}
.y91{bottom:8.666667pt;}
.y63{bottom:15.400000pt;}
.y35{bottom:16.000133pt;}
.y176{bottom:18.866667pt;}
.yb7{bottom:25.866667pt;}
.y34{bottom:27.866667pt;}
.ydf{bottom:28.466667pt;}
.y156{bottom:28.533333pt;}
.y106{bottom:29.800000pt;}
.y36{bottom:30.066667pt;}
.y19f{bottom:36.200000pt;}
.y33{bottom:40.001333pt;}
.y32{bottom:53.733333pt;}
.y90{bottom:55.733333pt;}
.y12f{bottom:60.800000pt;}
.y62{bottom:61.801333pt;}
.y8f{bottom:71.066667pt;}
.yb6{bottom:72.600000pt;}
.yde{bottom:75.533333pt;}
.y155{bottom:75.866667pt;}
.y31{bottom:77.466667pt;}
.y61{bottom:77.733333pt;}
.y105{bottom:78.066667pt;}
.y19e{bottom:83.533333pt;}
.y175{bottom:89.266667pt;}
.y154{bottom:90.933333pt;}
.ydd{bottom:91.200000pt;}
.y30{bottom:93.133333pt;}
.y12e{bottom:97.934667pt;}
.yb5{bottom:104.934667pt;}
.y174{bottom:105.933333pt;}
.y8e{bottom:106.269333pt;}
.ydc{bottom:106.533333pt;}
.y2f{bottom:108.466667pt;}
.y60{bottom:108.533333pt;}
.y104{bottom:111.666667pt;}
.y12d{bottom:114.533333pt;}
.y19d{bottom:116.468000pt;}
.yb4{bottom:121.868000pt;}
.y8d{bottom:123.201333pt;}
.y2e{bottom:123.866667pt;}
.y153{bottom:128.000000pt;}
.y103{bottom:128.666667pt;}
.y19c{bottom:133.068000pt;}
.y1d1{bottom:138.201333pt;}
.y2d{bottom:139.200000pt;}
.yb3{bottom:139.201333pt;}
.y8c{bottom:139.868000pt;}
.y173{bottom:144.000000pt;}
.y19b{bottom:150.068000pt;}
.ydb{bottom:150.401333pt;}
.y5f{bottom:154.266667pt;}
.y2c{bottom:154.533333pt;}
.y1d0{bottom:155.466667pt;}
.yb2{bottom:156.133333pt;}
.y8b{bottom:156.800000pt;}
.y172{bottom:159.066667pt;}
.y19a{bottom:167.068000pt;}
.yda{bottom:167.666667pt;}
.y1cf{bottom:171.201333pt;}
.yb1{bottom:172.468000pt;}
.y12c{bottom:174.072000pt;}
.y171{bottom:184.000000pt;}
.y199{bottom:184.001333pt;}
.y1ce{bottom:189.066667pt;}
.yb0{bottom:189.733333pt;}
.y8a{bottom:190.133333pt;}
.y12b{bottom:190.405333pt;}
.yd9{bottom:192.000000pt;}
.y59{bottom:193.333333pt;}
.y198{bottom:200.600000pt;}
.y1cd{bottom:204.800000pt;}
.yaf{bottom:206.400000pt;}
.y12a{bottom:207.337333pt;}
.y170{bottom:208.933333pt;}
.y58{bottom:215.400000pt;}
.y197{bottom:217.600000pt;}
.y2b{bottom:221.072000pt;}
.y1cc{bottom:223.000000pt;}
.yae{bottom:223.333333pt;}
.y89{bottom:223.400000pt;}
.y16f{bottom:223.666667pt;}
.y129{bottom:223.936000pt;}
.yd8{bottom:226.200000pt;}
.y16e{bottom:232.933333pt;}
.y196{bottom:234.600000pt;}
.y2a{bottom:238.072000pt;}
.y1cb{bottom:238.400000pt;}
.yad{bottom:240.004000pt;}
.y152{bottom:240.334667pt;}
.y128{bottom:240.936000pt;}
.yd7{bottom:243.200000pt;}
.y16d{bottom:248.933333pt;}
.y29{bottom:255.072000pt;}
.y1ca{bottom:256.933333pt;}
.y16c{bottom:257.266667pt;}
.yac{bottom:257.269333pt;}
.y151{bottom:257.600000pt;}
.y127{bottom:257.936000pt;}
.y195{bottom:259.200000pt;}
.yd6{bottom:259.801333pt;}
.y28{bottom:271.670667pt;}
.y1c9{bottom:272.268000pt;}
.yab{bottom:274.201333pt;}
.y126{bottom:274.869333pt;}
.y150{bottom:274.933333pt;}
.yd5{bottom:277.134667pt;}
.y5e{bottom:279.733333pt;}
.y16b{bottom:281.933333pt;}
.y88{bottom:285.804000pt;}
.y27{bottom:288.670667pt;}
.y1c8{bottom:290.200000pt;}
.yaa{bottom:291.201333pt;}
.y125{bottom:291.536000pt;}
.y194{bottom:293.469333pt;}
.yd4{bottom:294.066667pt;}
.y5d{bottom:294.733333pt;}
.y87{bottom:303.069333pt;}
.y26{bottom:305.269333pt;}
.y1c7{bottom:306.533333pt;}
.y16a{bottom:306.866667pt;}
.ya9{bottom:307.800000pt;}
.y124{bottom:308.468000pt;}
.y5c{bottom:309.466667pt;}
.y193{bottom:310.068000pt;}
.yd3{bottom:310.733333pt;}
.y86{bottom:320.668000pt;}
.y25{bottom:322.534667pt;}
.y1c6{bottom:323.800000pt;}
.y5b{bottom:324.200000pt;}
.ya8{bottom:324.466667pt;}
.y123{bottom:325.400000pt;}
.y192{bottom:327.068000pt;}
.yd2{bottom:327.337333pt;}
.y169{bottom:331.200000pt;}
.y85{bottom:338.266667pt;}
.y24{bottom:339.134667pt;}
.y5a{bottom:339.200000pt;}
.y1c5{bottom:339.466667pt;}
.ya7{bottom:341.733333pt;}
.y122{bottom:342.400000pt;}
.y191{bottom:343.666667pt;}
.yd1{bottom:344.269333pt;}
.y84{bottom:355.533333pt;}
.y23{bottom:356.134667pt;}
.y1c4{bottom:357.733333pt;}
.ya6{bottom:358.401333pt;}
.y121{bottom:359.000000pt;}
.y190{bottom:361.000000pt;}
.yd0{bottom:361.269333pt;}
.y22{bottom:373.134667pt;}
.y1c3{bottom:373.734667pt;}
.ya5{bottom:375.266667pt;}
.y120{bottom:376.333333pt;}
.y18f{bottom:377.600000pt;}
.ycf{bottom:378.269333pt;}
.y102{bottom:383.666667pt;}
.y21{bottom:389.733333pt;}
.y1c2{bottom:391.666667pt;}
.ya4{bottom:392.266667pt;}
.y18e{bottom:394.600000pt;}
.yce{bottom:395.201333pt;}
.y168{bottom:399.333333pt;}
.y14f{bottom:399.734667pt;}
.y20{bottom:406.733333pt;}
.y1c1{bottom:408.600000pt;}
.ya3{bottom:409.266667pt;}
.y18d{bottom:411.534667pt;}
.ycd{bottom:412.133333pt;}
.y57{bottom:415.066667pt;}
.y14e{bottom:416.001333pt;}
.y167{bottom:416.333333pt;}
.y101{bottom:417.933333pt;}
.y1f{bottom:423.666667pt;}
.y1c0{bottom:425.600000pt;}
.y18c{bottom:428.200000pt;}
.ycc{bottom:428.733333pt;}
.y56{bottom:432.000000pt;}
.y14d{bottom:433.001333pt;}
.y83{bottom:433.337333pt;}
.y100{bottom:434.866667pt;}
.y1e{bottom:440.333333pt;}
.y1bf{bottom:442.200000pt;}
.ya2{bottom:442.533333pt;}
.y18b{bottom:445.133333pt;}
.ycb{bottom:445.733333pt;}
.y55{bottom:448.669333pt;}
.y14c{bottom:449.600000pt;}
.y166{bottom:449.933333pt;}
.y82{bottom:449.936000pt;}
.yff{bottom:451.533333pt;}
.y1d{bottom:457.600000pt;}
.y1be{bottom:457.868000pt;}
.y11f{bottom:459.800000pt;}
.y18a{bottom:462.066667pt;}
.yca{bottom:462.733333pt;}
.y54{bottom:465.934667pt;}
.y14b{bottom:466.872000pt;}
.y81{bottom:466.936000pt;}
.yfe{bottom:468.200000pt;}
.y1bd{bottom:475.800000pt;}
.y11e{bottom:477.400000pt;}
.y189{bottom:479.068000pt;}
.yc9{bottom:479.333333pt;}
.y1c{bottom:481.600000pt;}
.y53{bottom:482.534667pt;}
.y14a{bottom:483.538667pt;}
.y80{bottom:483.602667pt;}
.y165{bottom:483.868000pt;}
.yfd{bottom:485.466667pt;}
.y1bc{bottom:492.800000pt;}
.y11d{bottom:496.000000pt;}
.yc8{bottom:496.333333pt;}
.y52{bottom:499.534667pt;}
.y149{bottom:500.205333pt;}
.y164{bottom:500.468000pt;}
.y7f{bottom:500.534667pt;}
.yfc{bottom:501.800000pt;}
.y1bb{bottom:509.733333pt;}
.y188{bottom:512.666667pt;}
.y11c{bottom:514.866667pt;}
.y51{bottom:516.534667pt;}
.y148{bottom:517.137333pt;}
.y1b{bottom:517.466667pt;}
.y163{bottom:517.468000pt;}
.yfb{bottom:519.068000pt;}
.y1ba{bottom:525.734667pt;}
.y187{bottom:529.600000pt;}
.yc7{bottom:529.933333pt;}
.y1a{bottom:533.133333pt;}
.y11b{bottom:533.400000pt;}
.y147{bottom:534.137333pt;}
.y7e{bottom:534.400000pt;}
.yfa{bottom:536.000000pt;}
.y1b9{bottom:543.666667pt;}
.y186{bottom:546.601333pt;}
.y146{bottom:551.069333pt;}
.y162{bottom:551.333333pt;}
.y11a{bottom:552.000000pt;}
.yf9{bottom:552.666667pt;}
.y50{bottom:557.800000pt;}
.y1b8{bottom:559.666667pt;}
.yc2{bottom:561.600000pt;}
.y185{bottom:563.201333pt;}
.y19{bottom:563.533333pt;}
.y119{bottom:566.733333pt;}
.y7d{bottom:568.000000pt;}
.y145{bottom:568.001333pt;}
.y161{bottom:568.333333pt;}
.yf8{bottom:569.666667pt;}
.y1b7{bottom:575.666667pt;}
.yc1{bottom:576.600000pt;}
.y18{bottom:579.200000pt;}
.y184{bottom:580.200000pt;}
.y144{bottom:584.933333pt;}
.y7c{bottom:585.000000pt;}
.y160{bottom:585.266667pt;}
.yf7{bottom:586.600000pt;}
.y118{bottom:589.133333pt;}
.y4f{bottom:591.736000pt;}
.y1b6{bottom:594.200000pt;}
.y17{bottom:594.533333pt;}
.y183{bottom:597.133333pt;}
.y143{bottom:601.600000pt;}
.y7b{bottom:601.933333pt;}
.yf6{bottom:603.533333pt;}
.y117{bottom:608.000000pt;}
.y4e{bottom:609.002667pt;}
.y1b5{bottom:610.200000pt;}
.y182{bottom:614.066667pt;}
.y142{bottom:618.266667pt;}
.y15f{bottom:618.533333pt;}
.y7a{bottom:618.600000pt;}
.yf5{bottom:620.466667pt;}
.y16{bottom:624.666667pt;}
.y4d{bottom:625.601333pt;}
.y116{bottom:626.866667pt;}
.y1b4{bottom:627.200000pt;}
.y15e{bottom:635.533333pt;}
.y79{bottom:635.534667pt;}
.yf4{bottom:637.133333pt;}
.y15{bottom:640.666667pt;}
.y4c{bottom:642.601333pt;}
.y1b3{bottom:643.201333pt;}
.yc6{bottom:646.068000pt;}
.y181{bottom:647.666667pt;}
.y141{bottom:651.866667pt;}
.y78{bottom:652.201333pt;}
.y14{bottom:655.666667pt;}
.y4b{bottom:659.201333pt;}
.yc5{bottom:659.801333pt;}
.y1b2{bottom:660.133333pt;}
.y180{bottom:664.333333pt;}
.y77{bottom:669.134667pt;}
.yf3{bottom:670.733333pt;}
.y13{bottom:671.066667pt;}
.y15d{bottom:672.000000pt;}
.yc4{bottom:674.200000pt;}
.y4a{bottom:676.201333pt;}
.y1b1{bottom:676.801333pt;}
.y76{bottom:686.133333pt;}
.ya1{bottom:686.666667pt;}
.y12{bottom:686.733333pt;}
.yf2{bottom:687.666667pt;}
.y13a{bottom:687.733333pt;}
.yc3{bottom:688.333333pt;}
.y115{bottom:690.866667pt;}
.y49{bottom:693.466667pt;}
.y1b0{bottom:693.733333pt;}
.y75{bottom:703.066667pt;}
.ya0{bottom:704.000000pt;}
.yf1{bottom:704.666667pt;}
.y13b{bottom:705.933333pt;}
.y139{bottom:706.266667pt;}
.y114{bottom:707.800000pt;}
.y48{bottom:710.133333pt;}
.y1af{bottom:710.666667pt;}
.y17f{bottom:716.200000pt;}
.y11{bottom:717.466693pt;}
.y74{bottom:720.000000pt;}
.y9f{bottom:720.600000pt;}
.yf0{bottom:722.866667pt;}
.y1ae{bottom:727.333333pt;}
.y47{bottom:727.400000pt;}
.y10{bottom:732.533333pt;}
.y73{bottom:736.666667pt;}
.y9e{bottom:737.600000pt;}
.yef{bottom:739.533333pt;}
.y113{bottom:741.734667pt;}
.y46{bottom:744.000000pt;}
.y1ad{bottom:744.266667pt;}
.yf{bottom:747.866667pt;}
.y72{bottom:753.934667pt;}
.y9d{bottom:754.533333pt;}
.y140{bottom:755.200000pt;}
.yee{bottom:756.800000pt;}
.y112{bottom:758.734667pt;}
.y45{bottom:760.666667pt;}
.ye{bottom:763.200000pt;}
.y1ac{bottom:768.933333pt;}
.y71{bottom:770.601333pt;}
.y9c{bottom:771.466667pt;}
.y13f{bottom:772.533333pt;}
.yed{bottom:774.400000pt;}
.y111{bottom:775.333333pt;}
.y44{bottom:777.600000pt;}
.yd{bottom:778.268000pt;}
.y70{bottom:787.200000pt;}
.y9b{bottom:788.134667pt;}
.y13e{bottom:789.466667pt;}
.yec{bottom:791.066667pt;}
.y110{bottom:792.600000pt;}
.yc{bottom:793.866667pt;}
.y43{bottom:794.600000pt;}
.y1ab{bottom:803.201333pt;}
.y6f{bottom:804.200000pt;}
.y9a{bottom:805.000000pt;}
.y13d{bottom:807.066667pt;}
.yeb{bottom:808.333333pt;}
.yb{bottom:809.266667pt;}
.y42{bottom:811.533333pt;}
.yc0{bottom:816.600000pt;}
.y1aa{bottom:819.801333pt;}
.y6e{bottom:821.466667pt;}
.y99{bottom:822.000000pt;}
.y13c{bottom:823.733333pt;}
.ya{bottom:824.666667pt;}
.y10f{bottom:825.933333pt;}
.yea{bottom:826.601333pt;}
.y41{bottom:828.533333pt;}
.y17e{bottom:829.468000pt;}
.ybf{bottom:833.933333pt;}
.y1a9{bottom:836.801333pt;}
.y138{bottom:837.133333pt;}
.y6d{bottom:838.133333pt;}
.y98{bottom:839.000000pt;}
.y9{bottom:840.333333pt;}
.y10e{bottom:842.800000pt;}
.ye9{bottom:842.933333pt;}
.y40{bottom:845.133333pt;}
.ybe{bottom:850.533333pt;}
.y1a8{bottom:854.400000pt;}
.y6c{bottom:855.066667pt;}
.y97{bottom:856.000000pt;}
.y17d{bottom:858.601333pt;}
.y10d{bottom:859.800000pt;}
.ye8{bottom:859.866667pt;}
.y137{bottom:860.533333pt;}
.y3f{bottom:862.400000pt;}
.ybd{bottom:867.533333pt;}
.y1a7{bottom:871.000000pt;}
.y6b{bottom:872.000000pt;}
.y8{bottom:872.933333pt;}
.ye7{bottom:876.800000pt;}
.y3e{bottom:879.066667pt;}
.ybc{bottom:884.466667pt;}
.y17c{bottom:886.733333pt;}
.y1a6{bottom:888.000000pt;}
.y6a{bottom:888.666667pt;}
.y96{bottom:889.866667pt;}
.y7{bottom:889.933333pt;}
.y15c{bottom:891.200000pt;}
.y10c{bottom:893.734667pt;}
.ye6{bottom:893.800000pt;}
.y3d{bottom:896.000000pt;}
.ybb{bottom:901.400000pt;}
.y1a5{bottom:904.933333pt;}
.y69{bottom:905.600000pt;}
.y6{bottom:906.533333pt;}
.y136{bottom:907.602667pt;}
.y17b{bottom:908.466667pt;}
.y10b{bottom:910.401333pt;}
.ye5{bottom:910.733333pt;}
.y3c{bottom:912.666667pt;}
.yba{bottom:918.400000pt;}
.y1a4{bottom:921.600000pt;}
.y68{bottom:922.600000pt;}
.y95{bottom:923.200000pt;}
.y5{bottom:923.533333pt;}
.y135{bottom:924.201333pt;}
.y15b{bottom:925.133333pt;}
.y10a{bottom:927.333333pt;}
.y3b{bottom:929.933333pt;}
.y67{bottom:939.533333pt;}
.y1a3{bottom:939.801333pt;}
.y4{bottom:940.466667pt;}
.y134{bottom:940.800000pt;}
.y15a{bottom:942.066667pt;}
.y109{bottom:944.000000pt;}
.ye4{bottom:944.333333pt;}
.y3a{bottom:946.533333pt;}
.y17a{bottom:950.733333pt;}
.yb9{bottom:951.666667pt;}
.y1a2{bottom:955.200000pt;}
.y66{bottom:956.200000pt;}
.y94{bottom:957.133333pt;}
.y159{bottom:959.066667pt;}
.y108{bottom:960.933333pt;}
.ye3{bottom:961.000000pt;}
.y39{bottom:963.533333pt;}
.y1a1{bottom:972.133333pt;}
.y65{bottom:973.133333pt;}
.y3{bottom:974.066667pt;}
.y133{bottom:974.733333pt;}
.ye2{bottom:977.933333pt;}
.y38{bottom:980.533333pt;}
.y158{bottom:983.333333pt;}
.y179{bottom:984.666667pt;}
.y93{bottom:991.000000pt;}
.y2{bottom:991.666667pt;}
.y132{bottom:992.666667pt;}
.ye1{bottom:994.866667pt;}
.y178{bottom:1001.266667pt;}
.y1a0{bottom:1019.200000pt;}
.y64{bottom:1021.133333pt;}
.y107{bottom:1026.200000pt;}
.y37{bottom:1028.533333pt;}
.y157{bottom:1032.333333pt;}
.y92{bottom:1039.000000pt;}
.y1{bottom:1041.266667pt;}
.yb8{bottom:1041.933333pt;}
.y131{bottom:1042.266667pt;}
.ye0{bottom:1043.200000pt;}
.y177{bottom:1050.266667pt;}
.hd{height:31.406250pt;}
.h22{height:33.375000pt;}
.h15{height:36.156250pt;}
.h14{height:36.640625pt;}
.h7{height:38.937500pt;}
.h8{height:39.902344pt;}
.h23{height:41.718750pt;}
.h10{height:41.875000pt;}
.hc{height:43.000000pt;}
.h1a{height:44.492188pt;}
.h1d{height:44.500000pt;}
.h1e{height:46.930990pt;}
.h27{height:47.281250pt;}
.h9{height:49.336436pt;}
.h6{height:49.726562pt;}
.h1b{height:52.343750pt;}
.h2a{height:53.750000pt;}
.h4{height:57.549479pt;}
.h2{height:57.578125pt;}
.h3{height:59.125000pt;}
.h26{height:60.195312pt;}
.h5{height:72.177083pt;}
.h1f{height:79.444792pt;}
.h1c{height:131.563830pt;}
.h2b{height:282.656250pt;}
.h2c{height:1047.333333pt;}
.hf{height:1058.000000pt;}
.he{height:1058.266667pt;}
.h24{height:1059.200000pt;}
.h25{height:1059.333333pt;}
.ha{height:1059.866667pt;}
.hb{height:1060.000000pt;}
.h18{height:1068.466667pt;}
.h19{height:1068.666667pt;}
.h17{height:1070.666667pt;}
.h16{height:1070.733333pt;}
.h20{height:1071.066667pt;}
.h21{height:1071.333333pt;}
.h11{height:1074.533333pt;}
.h12{height:1074.666667pt;}
.h13{height:1074.866667pt;}
.h1{height:1076.666667pt;}
.h0{height:1076.800000pt;}
.h29{height:1083.333333pt;}
.h28{height:1083.533333pt;}
.wf{width:655.333333pt;}
.w1{width:658.666667pt;}
.w0{width:658.866667pt;}
.w6{width:661.133333pt;}
.w7{width:661.333333pt;}
.w8{width:661.466667pt;}
.w13{width:668.000000pt;}
.w12{width:668.133333pt;}
.w4{width:671.666667pt;}
.w5{width:672.000000pt;}
.w3{width:674.000000pt;}
.w2{width:674.266667pt;}
.wc{width:677.333333pt;}
.wb{width:677.466667pt;}
.wa{width:680.666667pt;}
.w9{width:680.933333pt;}
.wd{width:683.200000pt;}
.we{width:683.333333pt;}
.w10{width:695.666667pt;}
.w11{width:696.000000pt;}
.x0{left:0.000000pt;}
.x4d{left:8.000000pt;}
.x9{left:15.333333pt;}
.x2{left:19.200000pt;}
.x28{left:21.133333pt;}
.x21{left:22.066667pt;}
.x4b{left:25.933467pt;}
.x4c{left:26.866667pt;}
.x4a{left:27.866667pt;}
.x42{left:28.800000pt;}
.x2a{left:32.333333pt;}
.x35{left:33.600000pt;}
.x31{left:34.533333pt;}
.x74{left:39.333333pt;}
.x5b{left:40.333333pt;}
.x57{left:41.266667pt;}
.x4e{left:42.866667pt;}
.x75{left:43.866667pt;}
.x1f{left:46.398667pt;}
.x1e{left:47.333333pt;}
.x11{left:48.333333pt;}
.x39{left:49.934667pt;}
.x37{left:50.866667pt;}
.x40{left:52.133333pt;}
.x8{left:53.133333pt;}
.x5d{left:56.333333pt;}
.x27{left:58.866667pt;}
.x20{left:59.866667pt;}
.x1d{left:61.466667pt;}
.xa{left:62.398667pt;}
.x49{left:64.333333pt;}
.x41{left:65.266667pt;}
.x61{left:66.266667pt;}
.x48{left:67.533333pt;}
.x2b{left:70.398667pt;}
.x13{left:71.666667pt;}
.x3c{left:72.933333pt;}
.x3a{left:73.933333pt;}
.x38{left:74.866667pt;}
.x73{left:76.800000pt;}
.x56{left:79.065333pt;}
.x36{left:80.333333pt;}
.x12{left:85.733333pt;}
.x3b{left:87.333333pt;}
.x26{left:88.333333pt;}
.x6a{left:90.266667pt;}
.x68{left:92.132000pt;}
.x1a{left:95.333333pt;}
.x71{left:98.533333pt;}
.x6b{left:99.866667pt;}
.x5e{left:103.333333pt;}
.x4f{left:107.200000pt;}
.x50{left:110.400000pt;}
.x64{left:112.666667pt;}
.x62{left:113.600000pt;}
.x63{left:115.533333pt;}
.x3d{left:122.533333pt;}
.x2c{left:126.733333pt;}
.x44{left:133.733333pt;}
.x45{left:135.666667pt;}
.x65{left:141.453333pt;}
.x43{left:151.333333pt;}
.x5a{left:153.266667pt;}
.x46{left:157.453333pt;}
.x19{left:166.066667pt;}
.x34{left:170.266667pt;}
.x66{left:173.733333pt;}
.x51{left:182.400000pt;}
.x5f{left:184.920000pt;}
.x6d{left:197.133333pt;}
.x67{left:198.400000pt;}
.x6f{left:200.333333pt;}
.x6e{left:201.266533pt;}
.x58{left:212.466667pt;}
.x47{left:229.133333pt;}
.x14{left:231.066667pt;}
.x6c{left:238.400000pt;}
.x32{left:245.133333pt;}
.x25{left:279.666667pt;}
.x60{left:288.333333pt;}
.x2f{left:300.133333pt;}
.x3e{left:302.400000pt;}
.x52{left:303.666667pt;}
.x70{left:310.733333pt;}
.x10{left:311.666667pt;}
.x69{left:315.533333pt;}
.x29{left:316.466667pt;}
.x59{left:322.866667pt;}
.x2d{left:328.920000pt;}
.x15{left:330.253333pt;}
.x5c{left:336.920000pt;}
.x30{left:341.734667pt;}
.x1b{left:345.266667pt;}
.x1{left:383.666667pt;}
.x1c{left:387.186667pt;}
.x3f{left:392.666667pt;}
.x2e{left:398.400000pt;}
.x72{left:404.133333pt;}
.x53{left:422.066667pt;}
.x3{left:449.933333pt;}
.x24{left:451.198667pt;}
.x22{left:452.133333pt;}
.x7{left:478.065467pt;}
.x23{left:479.332000pt;}
.x6{left:485.132000pt;}
.x54{left:486.400000pt;}
.x4{left:487.332000pt;}
.x55{left:496.333333pt;}
.x5{left:498.265333pt;}
.x17{left:511.986667pt;}
.x33{left:513.933333pt;}
.xc{left:514.865333pt;}
.x18{left:516.786667pt;}
.x16{left:519.320000pt;}
.xb{left:528.933333pt;}
.xf{left:542.387867pt;}
.xd{left:565.465333pt;}
.xe{left:575.665200pt;}
}

