
    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_77d5ef3daf66364dfb712a9c.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_b5ed93eab00660e4aa8f487d.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_dd78e42a3b75e66ecc05d31f.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_2b4bedfe836393e5c177fbdf.woff')format("woff");}.ff4{font-family:ff4;line-height:1.349000;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_771c1ff9c48ba0518e119fa0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0e4f49c9bcca3fb109908bab.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8bf29918bfdf6936e3732843.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_64635921be20a1d1ab9a9bf9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_aada77f6b61e21d78dee8cf0.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_59f1b08b01ef70e56a1b9e06.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_83a1af02d80f19e766694e81.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_2b67a9610b3828231df18c27.woff')format("woff");}.ffc{font-family:ffc;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f5a5c7c9980db966f881e77c.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_ce2ddddc4454b0b757775b8b.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_c7251b512a4129093f3ad5e1.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_c4011b6ccb7f644472bd83b6.woff')format("woff");}.ff10{font-family:ff10;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_9471f30e5ffa1a7c585565cd.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_738dc4522329c345c66a5d82.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_6984b60083a987717e807eaf.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_236dc2293da8ec892aa7722e.woff')format("woff");}.ff14{font-family:ff14;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_8b934ff6821ce4d57ab571bf.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_6fd1ed3a68a23a7c170c5723.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_43f66729de766bdbb9d8c1c6.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_ac5771b089e8f8c48c33e43c.woff')format("woff");}.ff18{font-family:ff18;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_5831e204cbba8c182780ba78.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_b2d896a06a2ae1b5d227e5c2.woff')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_c4891679f437366da7c817a6.woff')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_a33afe5e3fca422cedb4d47a.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_7513eadef471ecb77f3d60d4.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_916fa55460d1e3eda5afbbc4.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_bcb662b5e97ac97eeee71af7.woff')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_aae300a17e2d153df8521594.woff')format("woff");}.ff20{font-family:ff20;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_bcb662b5e97ac97eeee71af7.woff')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_6d2c1b978399ba49b0c16e8d.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_e5620d99f4727da3e86c6509.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_c9b33681596fd645e3eb5ae3.woff')format("woff");}.ff24{font-family:ff24;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_9e6008170d519ec3a3d0a47e.woff')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_9c1ada9071798b63cbf9c75d.woff')format("woff");}.ff26{font-family:ff26;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_deb3bc3ab5275c5607729a71.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_07d7cea1d1c5c9ccb0b3ba8e.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_9c1ada9071798b63cbf9c75d.woff')format("woff");}.ff29{font-family:ff29;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_b1752d1cedecf4509797f96a.woff')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_a82e4f15c7a6827ca0f050cb.woff')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_faa0ea64d06ab3edb5956af6.woff')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_42be70f4ce3456c06c3f5a07.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_61188a1519a652d03c87d573.woff')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_7b53378f3453fddda305cc73.woff')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_8e414c58bdc1e8c2ee1a1ac2.woff')format("woff");}.ff30{font-family:ff30;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_4d14a3d562b237268b8d1b32.woff')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_f138c3bacef165a0349a115e.woff')format("woff");}.ff32{font-family:ff32;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:ff33;src:url('chunks/assets/font_594a47537642214ca40e480f.woff')format("woff");}.ff33{font-family:ff33;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_b18598b673a7a735828685a8.woff')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_da351bb81aa7413b790c177c.woff')format("woff");}.ff35{font-family:ff35;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:ff36;src:url('chunks/assets/font_9d9495c612125596ebe4fc14.woff')format("woff");}.ff36{font-family:ff36;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:ff37;src:url('chunks/assets/font_c4f66daff179249207fba5b1.woff')format("woff");}.ff37{font-family:ff37;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_700f73ee69812c1aea2fa0fb.woff')format("woff");}.ff38{font-family:ff38;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:ff39;src:url('chunks/assets/font_fc9350afaeff9273fe21f6ee.woff')format("woff");}.ff39{font-family:ff39;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:ff3a;src:url('chunks/assets/font_033813857d54cfc06b1b233f.woff')format("woff");}.ff3a{font-family:ff3a;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:ff3b;src:url('chunks/assets/font_32bda249c2c5243a50e86e72.woff')format("woff");}.ff3b{font-family:ff3b;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:ff3c;src:url('chunks/assets/font_1609a07d7d9ba056aad08f0d.woff')format("woff");}.ff3c{font-family:ff3c;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_6ffb4bb259f8ff8045cfbee4.woff')format("woff");}.ff3d{font-family:ff3d;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:ff3e;src:url('chunks/assets/font_3b8cc22da065065c8cd5e8dd.woff')format("woff");}.ff3e{font-family:ff3e;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:ff3f;src:url('chunks/assets/font_594113898000b87bbb9eff62.woff')format("woff");}.ff3f{font-family:ff3f;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:ff40;src:url('chunks/assets/font_1609a07d7d9ba056aad08f0d.woff')format("woff");}.ff40{font-family:ff40;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_cbae40002edca87cfb375062.woff')format("woff");}.ff41{font-family:ff41;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:ff42;src:url('chunks/assets/font_632c534ab6c2a99072cb079e.woff')format("woff");}.ff42{font-family:ff42;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:ff43;src:url('chunks/assets/font_21dd20c45982ece2458c19bb.woff')format("woff");}.ff43{font-family:ff43;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:ff44;src:url('chunks/assets/font_daf63b9b456a76884784ebc2.woff')format("woff");}.ff44{font-family:ff44;line-height:1.575000;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_840fecbfd31b39e1ded2d557.woff')format("woff");}.ff45{font-family:ff45;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:ff46;src:url('chunks/assets/font_7fe9c5ed4b39294e03f6de58.woff')format("woff");}.ff46{font-family:ff46;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_362f9173c847ed4f71b97d9c.woff')format("woff");}.ff47{font-family:ff47;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:ff48;src:url('chunks/assets/font_4bb76e93ed11180be3ea5591.woff')format("woff");}.ff48{font-family:ff48;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:ff49;src:url('chunks/assets/font_6e1b990b24621d93f57f2495.woff')format("woff");}.ff49{font-family:ff49;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m22{transform:matrix(0.000000,-0.145000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.145000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.145000,0.250000,0.000000,0,0);}
.m24{transform:matrix(0.000000,-0.210000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.210000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.210000,0.250000,0.000000,0,0);}
.m19{transform:matrix(0.000000,-0.212500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.212500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.212500,0.250000,0.000000,0,0);}
.m21{transform:matrix(0.000000,-0.220000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.220000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.220000,0.250000,0.000000,0,0);}
.m23{transform:matrix(0.000000,-0.227500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.227500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.227500,0.250000,0.000000,0,0);}
.m1a{transform:matrix(0.000000,-0.252500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.252500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.252500,0.250000,0.000000,0,0);}
.m25{transform:matrix(0.000000,-0.255000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.255000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.255000,0.250000,0.000000,0,0);}
.m34{transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.me{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(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(1.975000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.975000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.975000,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(3.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.660000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-1.500000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.200000px;}
.v2{vertical-align:2.694000px;}
.v5{vertical-align:4.206000px;}
.v4{vertical-align:5.706000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:20.400000px;}
.ls2{letter-spacing:21.900000px;}
.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;}
}
.ws0{word-spacing:-66.000000px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:7.500000px;}
._0{width:3.721818px;}
._1{width:17.932353px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:transparent;}
.fs9{font-size:24.000000px;}
.fs7{font-size:30.000000px;}
.fs4{font-size:36.000000px;}
.fsa{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs0{font-size:78.000000px;}
.fs8{font-size:246.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:4.504500px;}
.y20{bottom:24.304500px;}
.y1f{bottom:74.873332px;}
.y17d{bottom:94.048500px;}
.y80{bottom:94.723500px;}
.yab{bottom:94.948500px;}
.y15b{bottom:95.625000px;}
.y168{bottom:95.698500px;}
.y14c{bottom:96.973500px;}
.yd4{bottom:98.923500px;}
.y12a{bottom:100.423500px;}
.y143{bottom:100.875000px;}
.y13d{bottom:101.848500px;}
.y12f{bottom:102.375000px;}
.yff{bottom:102.673500px;}
.y1e{bottom:102.973500px;}
.y54{bottom:103.048500px;}
.y175{bottom:105.375000px;}
.y17c{bottom:136.948500px;}
.y15a{bottom:138.148500px;}
.y167{bottom:138.898500px;}
.y14b{bottom:139.048500px;}
.y162{bottom:139.798500px;}
.y13c{bottom:143.698500px;}
.y142{bottom:143.773500px;}
.y1d{bottom:146.473500px;}
.y174{bottom:149.323500px;}
.yfe{bottom:149.473500px;}
.yaa{bottom:162.973500px;}
.y53{bottom:165.000000px;}
.y1c{bottom:167.023500px;}
.y166{bottom:169.500000px;}
.y164{bottom:169.875000px;}
.yfd{bottom:170.023500px;}
.y13b{bottom:174.223500px;}
.y7f{bottom:175.723500px;}
.y165{bottom:178.125000px;}
.ya9{bottom:183.523500px;}
.y52{bottom:184.423500px;}
.y51{bottom:184.798500px;}
.y139{bottom:185.773500px;}
.y13a{bottom:186.148500px;}
.yd3{bottom:186.375000px;}
.y151{bottom:186.450000px;}
.y1b{bottom:186.823500px;}
.y17b{bottom:187.273500px;}
.yfc{bottom:190.500000px;}
.y7e{bottom:195.523500px;}
.y179{bottom:200.250000px;}
.y178{bottom:200.323500px;}
.y17a{bottom:201.000000px;}
.y50{bottom:203.848500px;}
.ya8{bottom:204.000000px;}
.y4f{bottom:204.223500px;}
.y16c{bottom:205.500000px;}
.y16d{bottom:205.798500px;}
.y1a{bottom:206.250000px;}
.yd2{bottom:207.298500px;}
.yfb{bottom:211.048500px;}
.y161{bottom:216.073500px;}
.y16a{bottom:217.048500px;}
.y16b{bottom:219.223500px;}
.y137{bottom:222.823500px;}
.y4e{bottom:223.648500px;}
.ya7{bottom:224.548500px;}
.y19{bottom:225.673500px;}
.yd1{bottom:227.773500px;}
.y160{bottom:228.375000px;}
.yfa{bottom:231.223500px;}
.y7d{bottom:234.750000px;}
.y159{bottom:242.848500px;}
.y4d{bottom:243.448500px;}
.ya6{bottom:245.098500px;}
.y18{bottom:245.473500px;}
.yd0{bottom:247.573500px;}
.y13f{bottom:248.848500px;}
.y13e{bottom:248.923500px;}
.yf9{bottom:251.773500px;}
.y7c{bottom:254.173500px;}
.y158{bottom:257.250000px;}
.y157{bottom:257.323500px;}
.y4c{bottom:263.250000px;}
.y17{bottom:264.973500px;}
.ya5{bottom:265.198500px;}
.ycf{bottom:268.500000px;}
.yf8{bottom:271.875000px;}
.y7b{bottom:273.673500px;}
.y146{bottom:279.148500px;}
.y4b{bottom:282.673500px;}
.y4a{bottom:283.048500px;}
.y16{bottom:283.648500px;}
.y131{bottom:283.798500px;}
.y147{bottom:284.923500px;}
.ya4{bottom:285.750000px;}
.yce{bottom:288.673500px;}
.y169{bottom:289.423500px;}
.yf7{bottom:292.423500px;}
.y7a{bottom:293.473500px;}
.y49{bottom:302.098500px;}
.y48{bottom:302.473500px;}
.y15{bottom:304.198500px;}
.ya3{bottom:305.923500px;}
.ycd{bottom:309.148500px;}
.y171{bottom:309.898500px;}
.y79{bottom:312.525000px;}
.yf6{bottom:312.598500px;}
.y47{bottom:321.900000px;}
.y15f{bottom:323.400000px;}
.y14{bottom:323.698500px;}
.y16e{bottom:325.723500px;}
.y170{bottom:326.025000px;}
.y16f{bottom:326.098500px;}
.ya2{bottom:326.400000px;}
.ycc{bottom:329.323500px;}
.y78{bottom:332.400000px;}
.yf5{bottom:332.775000px;}
.y46{bottom:341.400000px;}
.y13{bottom:343.125000px;}
.ya1{bottom:346.573500px;}
.ycb{bottom:349.798500px;}
.y130{bottom:351.900000px;}
.y77{bottom:352.125000px;}
.yf4{bottom:353.250000px;}
.y156{bottom:356.625000px;}
.y45{bottom:361.198500px;}
.y12{bottom:362.848500px;}
.ya0{bottom:367.125000px;}
.y128{bottom:369.673500px;}
.yca{bottom:369.973500px;}
.y129{bottom:370.423500px;}
.y75{bottom:370.798500px;}
.y76{bottom:371.548500px;}
.yf3{bottom:373.423500px;}
.y11{bottom:382.275000px;}
.y9f{bottom:387.298500px;}
.y127{bottom:390.223500px;}
.yc9{bottom:390.525000px;}
.y74{bottom:390.973500px;}
.yf2{bottom:393.900000px;}
.y44{bottom:400.048500px;}
.y136{bottom:400.350000px;}
.yf{bottom:401.400000px;}
.y10{bottom:402.448500px;}
.y9e{bottom:407.775000px;}
.y124{bottom:410.400000px;}
.y73{bottom:410.473500px;}
.yc8{bottom:411.000000px;}
.y125{bottom:411.448500px;}
.y126{bottom:412.500000px;}
.yf1{bottom:414.448500px;}
.y43{bottom:419.473500px;}
.y72{bottom:429.525000px;}
.y121{bottom:430.875000px;}
.yc7{bottom:431.173500px;}
.y122{bottom:432.000000px;}
.y123{bottom:432.673500px;}
.yf0{bottom:435.000000px;}
.y150{bottom:437.775000px;}
.y42{bottom:438.900000px;}
.y9d{bottom:448.500000px;}
.y71{bottom:449.698500px;}
.y11e{bottom:451.423500px;}
.yc6{bottom:452.098500px;}
.y11f{bottom:452.473500px;}
.y120{bottom:453.223500px;}
.yef{bottom:455.098500px;}
.y41{bottom:458.698500px;}
.y141{bottom:462.750000px;}
.y70{bottom:469.798500px;}
.y11c{bottom:471.973500px;}
.yc5{bottom:472.273500px;}
.y11d{bottom:473.023500px;}
.y40{bottom:478.198500px;}
.ye{bottom:486.750000px;}
.y6f{bottom:489.298500px;}
.y119{bottom:491.773500px;}
.y11a{bottom:492.448500px;}
.yc4{bottom:492.750000px;}
.y11b{bottom:492.823500px;}
.yee{bottom:495.898500px;}
.y3f{bottom:497.625000px;}
.y135{bottom:501.450000px;}
.yd{bottom:505.048500px;}
.y6e{bottom:509.098500px;}
.y9c{bottom:509.698500px;}
.y118{bottom:512.625000px;}
.yc3{bottom:512.923500px;}
.y14e{bottom:516.600000px;}
.y3e{bottom:517.423500px;}
.yc{bottom:522.750000px;}
.y6d{bottom:528.523500px;}
.y9b{bottom:529.500000px;}
.y117{bottom:532.423500px;}
.yc2{bottom:533.473500px;}
.y3d{bottom:536.098500px;}
.ya{bottom:539.250000px;}
.yb{bottom:540.375000px;}
.y6c{bottom:548.323500px;}
.y9a{bottom:549.973500px;}
.y152{bottom:550.425000px;}
.yc1{bottom:553.573500px;}
.y3c{bottom:555.898500px;}
.yed{bottom:556.273500px;}
.y155{bottom:557.173500px;}
.y6a{bottom:567.073500px;}
.y6b{bottom:567.750000px;}
.y99{bottom:570.523500px;}
.y116{bottom:572.773500px;}
.yc0{bottom:574.125000px;}
.y3b{bottom:575.398500px;}
.yec{bottom:576.823500px;}
.y69{bottom:587.173500px;}
.y9{bottom:590.098500px;}
.y98{bottom:591.000000px;}
.ybf{bottom:594.298500px;}
.y3a{bottom:595.198500px;}
.yeb{bottom:597.375000px;}
.y14f{bottom:598.350000px;}
.y68{bottom:606.673500px;}
.y8{bottom:608.398500px;}
.y97{bottom:611.548500px;}
.y39{bottom:615.000000px;}
.yea{bottom:618.223500px;}
.y7{bottom:625.723500px;}
.y67{bottom:626.398500px;}
.y96{bottom:632.098500px;}
.y115{bottom:634.273500px;}
.y38{bottom:634.423500px;}
.ybe{bottom:634.948500px;}
.ye9{bottom:638.773500px;}
.y5{bottom:641.923500px;}
.y6{bottom:643.348500px;}
.y66{bottom:645.898500px;}
.y95{bottom:652.573500px;}
.y37{bottom:654.223500px;}
.y114{bottom:655.500000px;}
.ye8{bottom:659.323500px;}
.y65{bottom:665.323500px;}
.y94{bottom:673.125000px;}
.y36{bottom:674.023500px;}
.y113{bottom:675.673500px;}
.ye7{bottom:680.098500px;}
.y64{bottom:685.125000px;}
.y15c{bottom:691.723500px;}
.y93{bottom:693.598500px;}
.y35{bottom:693.823500px;}
.ybd{bottom:696.148500px;}
.y112{bottom:696.223500px;}
.ye6{bottom:700.648500px;}
.y63{bottom:704.548500px;}
.y34{bottom:713.625000px;}
.y92{bottom:714.148500px;}
.ybc{bottom:716.698500px;}
.y12b{bottom:719.098500px;}
.ye5{bottom:721.198500px;}
.y62{bottom:724.048500px;}
.y33{bottom:733.423500px;}
.y91{bottom:734.698500px;}
.y111{bottom:735.823500px;}
.ybb{bottom:736.875000px;}
.ye4{bottom:742.048500px;}
.y61{bottom:743.773500px;}
.y4{bottom:745.198500px;}
.y32{bottom:753.223500px;}
.y90{bottom:755.173500px;}
.y110{bottom:756.750000px;}
.yba{bottom:757.348500px;}
.ye3{bottom:762.898500px;}
.y60{bottom:763.198500px;}
.y3{bottom:764.250000px;}
.y31{bottom:773.023500px;}
.y8f{bottom:775.723500px;}
.y10f{bottom:777.223500px;}
.yb9{bottom:777.523500px;}
.y5f{bottom:782.323500px;}
.ye2{bottom:783.073500px;}
.y30{bottom:792.823500px;}
.y8e{bottom:796.198500px;}
.y10e{bottom:796.723500px;}
.yb8{bottom:797.323500px;}
.y2{bottom:801.675000px;}
.y5e{bottom:802.125000px;}
.ye1{bottom:803.625000px;}
.y2f{bottom:812.625000px;}
.y145{bottom:816.300000px;}
.y8d{bottom:816.750000px;}
.y10d{bottom:817.500000px;}
.yb7{bottom:817.800000px;}
.ye0{bottom:824.175000px;}
.y2e{bottom:832.425000px;}
.y8c{bottom:837.300000px;}
.y10c{bottom:838.050000px;}
.yb6{bottom:838.348500px;}
.y1{bottom:840.598500px;}
.y5d{bottom:840.675000px;}
.ydf{bottom:845.023500px;}
.y2d{bottom:852.223500px;}
.y8b{bottom:857.775000px;}
.y10b{bottom:858.223500px;}
.yb5{bottom:858.900000px;}
.yde{bottom:865.500000px;}
.y2c{bottom:872.025000px;}
.y8a{bottom:878.323500px;}
.y10a{bottom:879.073500px;}
.yb4{bottom:879.750000px;}
.y5c{bottom:880.948500px;}
.ydd{bottom:886.125000px;}
.y2b{bottom:891.823500px;}
.y144{bottom:892.948500px;}
.y89{bottom:898.875000px;}
.y109{bottom:899.698500px;}
.yb3{bottom:900.300000px;}
.y5b{bottom:900.375000px;}
.ydc{bottom:906.900000px;}
.y2a{bottom:911.625000px;}
.y88{bottom:919.723500px;}
.y108{bottom:920.473500px;}
.yb2{bottom:920.848500px;}
.ydb{bottom:927.448500px;}
.y29{bottom:931.425000px;}
.y5a{bottom:939.598500px;}
.y87{bottom:940.198500px;}
.y107{bottom:941.025000px;}
.yb1{bottom:941.323500px;}
.yda{bottom:948.375000px;}
.y28{bottom:951.300000px;}
.y86{bottom:960.750000px;}
.y106{bottom:961.500000px;}
.yb0{bottom:962.175000px;}
.yd9{bottom:968.848500px;}
.y27{bottom:971.400000px;}
.y85{bottom:981.598500px;}
.y105{bottom:982.050000px;}
.yaf{bottom:982.723500px;}
.yd8{bottom:989.698500px;}
.y26{bottom:991.198500px;}
.y59{bottom:999.000000px;}
.y84{bottom:1002.150000px;}
.y104{bottom:1002.223500px;}
.yae{bottom:1003.275000px;}
.y25{bottom:1011.000000px;}
.y12c{bottom:1015.348500px;}
.y58{bottom:1018.875000px;}
.y83{bottom:1022.698500px;}
.y103{bottom:1022.775000px;}
.yad{bottom:1023.750000px;}
.y24{bottom:1030.800000px;}
.yd7{bottom:1031.175000px;}
.yd6{bottom:1031.550000px;}
.y177{bottom:1070.098500px;}
.y176{bottom:1070.400000px;}
.y55{bottom:1071.823500px;}
.y154{bottom:1071.973500px;}
.y56{bottom:1072.198500px;}
.y153{bottom:1072.348500px;}
.y163{bottom:1072.425000px;}
.y57{bottom:1072.500000px;}
.y148{bottom:1073.323500px;}
.y149{bottom:1073.698500px;}
.y14a{bottom:1074.000000px;}
.y82{bottom:1076.025000px;}
.y100{bottom:1076.098500px;}
.y138{bottom:1076.400000px;}
.y132{bottom:1076.625000px;}
.y81{bottom:1076.698500px;}
.y101{bottom:1076.775000px;}
.yac{bottom:1077.073500px;}
.y102{bottom:1077.150000px;}
.y133{bottom:1077.675000px;}
.y15e{bottom:1077.900000px;}
.y15d{bottom:1077.973500px;}
.y134{bottom:1078.050000px;}
.y140{bottom:1080.525000px;}
.y14d{bottom:1081.800000px;}
.y12e{bottom:1082.698500px;}
.y12d{bottom:1083.073500px;}
.y23{bottom:1084.125000px;}
.yd5{bottom:1084.500000px;}
.y22{bottom:1084.800000px;}
.y172{bottom:1086.448500px;}
.y173{bottom:1086.823500px;}
.h1f{height:25.031250px;}
.h22{height:25.608000px;}
.h1b{height:29.443359px;}
.h14{height:35.332031px;}
.h13{height:36.281250px;}
.h6{height:39.930225px;}
.h23{height:41.220703px;}
.h9{height:47.109375px;}
.h16{height:48.375000px;}
.h17{height:52.998047px;}
.h1c{height:54.421875px;}
.h3{height:58.886719px;}
.h4{height:60.468750px;}
.h5{height:64.743164px;}
.h2{height:64.775391px;}
.ha{height:65.075391px;}
.h7{height:65.274000px;}
.hc{height:66.515625px;}
.hd{height:67.469391px;}
.hf{height:67.715625px;}
.h11{height:68.949164px;}
.h10{height:70.449164px;}
.h19{height:70.664062px;}
.h18{height:72.562500px;}
.h20{height:75.093750px;}
.h1{height:76.552734px;}
.h1e{height:241.435547px;}
.hb{height:1225.500000px;}
.h1a{height:1227.000000px;}
.h15{height:1228.500000px;}
.h1d{height:1230.000000px;}
.he{height:1231.500000px;}
.h0{height:1233.000000px;}
.h8{height:1236.000000px;}
.h12{height:1237.500000px;}
.h21{height:1240.500000px;}
.w1{width:277.428000px;}
.w2{width:377.263500px;}
.w3{width:840.000000px;}
.w6{width:841.500000px;}
.w5{width:843.000000px;}
.w0{width:844.500000px;}
.w4{width:846.000000px;}
.x0{left:0.000000px;}
.x1d{left:3.747000px;}
.x1e{left:9.949500px;}
.xb{left:63.779755px;}
.x29{left:66.225000px;}
.x37{left:67.350000px;}
.x22{left:70.575000px;}
.x5{left:73.050000px;}
.x9{left:74.175000px;}
.x1{left:77.025000px;}
.x2b{left:83.550000px;}
.x28{left:87.450000px;}
.x3d{left:88.575000px;}
.x1a{left:90.000000px;}
.x13{left:91.425000px;}
.x10{left:92.550000px;}
.xc{left:93.600000px;}
.x7{left:94.650000px;}
.x2d{left:96.448500px;}
.x3a{left:99.750000px;}
.x59{left:107.250000px;}
.xd{left:110.850000px;}
.x23{left:112.350000px;}
.x11{left:113.400000px;}
.xf{left:114.448500px;}
.x30{left:115.950000px;}
.x2f{left:117.375000px;}
.x12{left:135.000000px;}
.x1b{left:152.625000px;}
.x3b{left:163.050000px;}
.x1c{left:168.825000px;}
.x53{left:174.600000px;}
.x43{left:185.400000px;}
.x5c{left:186.825000px;}
.x25{left:187.950000px;}
.x49{left:189.000000px;}
.x6{left:190.050000px;}
.x1f{left:192.975000px;}
.x54{left:210.600000px;}
.x18{left:217.050000px;}
.x31{left:223.575000px;}
.x3e{left:236.175000px;}
.x35{left:237.600000px;}
.x32{left:244.050000px;}
.x4f{left:261.750000px;}
.x38{left:263.175000px;}
.x69{left:277.950000px;}
.xe{left:288.750000px;}
.x65{left:290.175000px;}
.x2e{left:291.225000px;}
.x42{left:293.400000px;}
.x78{left:297.375000px;}
.x71{left:298.425000px;}
.x3{left:303.150000px;}
.x56{left:313.575000px;}
.x72{left:315.375000px;}
.x75{left:324.750000px;}
.x76{left:326.550000px;}
.x77{left:328.350000px;}
.x4{left:331.200000px;}
.x73{left:346.647750px;}
.x74{left:352.050000px;}
.x2a{left:360.000000px;}
.x4b{left:364.650000px;}
.x4e{left:367.575000px;}
.x4c{left:371.535000px;}
.x33{left:383.400000px;}
.x16{left:387.375000px;}
.x2{left:402.825000px;}
.x40{left:428.025000px;}
.x4d{left:447.150000px;}
.x34{left:474.450000px;}
.x8{left:493.575000px;}
.x17{left:523.050000px;}
.x55{left:538.200000px;}
.x5e{left:547.575000px;}
.x5d{left:550.800000px;}
.x14{left:557.625000px;}
.x66{left:567.750000px;}
.x5f{left:569.175000px;}
.x62{left:570.975000px;}
.x60{left:576.000000px;}
.xa{left:588.225000px;}
.x48{left:591.825000px;}
.x52{left:597.975000px;}
.x67{left:600.450000px;}
.x6a{left:604.425000px;}
.x6b{left:611.250000px;}
.x68{left:619.575000px;}
.x64{left:622.050000px;}
.x44{left:623.850000px;}
.x6f{left:624.975000px;}
.x26{left:626.025000px;}
.x4a{left:627.150000px;}
.x36{left:628.575000px;}
.x20{left:630.000000px;}
.x39{left:633.600000px;}
.x7a{left:634.650000px;}
.x57{left:637.575000px;}
.x50{left:640.425000px;}
.x63{left:643.350000px;}
.x58{left:645.150000px;}
.x2c{left:646.200000px;}
.x3f{left:648.375000px;}
.x7c{left:649.425000px;}
.x24{left:650.550000px;}
.x61{left:652.650000px;}
.x6d{left:658.425000px;}
.x7d{left:671.400000px;}
.x70{left:678.225000px;}
.x15{left:680.775000px;}
.x6c{left:687.975000px;}
.x46{left:698.776500px;}
.x5b{left:699.826500px;}
.x3c{left:701.625000px;}
.x6e{left:706.650000px;}
.x5a{left:708.151500px;}
.x7b{left:712.800000px;}
.x51{left:717.450000px;}
.x41{left:727.200000px;}
.x45{left:728.625000px;}
.x27{left:731.175000px;}
.x79{left:732.225000px;}
.x21{left:734.775000px;}
.x19{left:748.050000px;}
.x47{left:775.051500px;}
@media print{
.v1{vertical-align:-1.333333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.066667pt;}
.v2{vertical-align:2.394667pt;}
.v5{vertical-align:3.738667pt;}
.v4{vertical-align:5.072000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:18.133333pt;}
.ls2{letter-spacing:19.466667pt;}
.ws0{word-spacing:-58.666667pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:6.666667pt;}
._0{width:3.308283pt;}
._1{width:15.939869pt;}
.fs9{font-size:21.333333pt;}
.fs7{font-size:26.666667pt;}
.fs4{font-size:32.000000pt;}
.fsa{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs0{font-size:69.333333pt;}
.fs8{font-size:218.666667pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:4.004000pt;}
.y20{bottom:21.604000pt;}
.y1f{bottom:66.554073pt;}
.y17d{bottom:83.598667pt;}
.y80{bottom:84.198667pt;}
.yab{bottom:84.398667pt;}
.y15b{bottom:85.000000pt;}
.y168{bottom:85.065333pt;}
.y14c{bottom:86.198667pt;}
.yd4{bottom:87.932000pt;}
.y12a{bottom:89.265333pt;}
.y143{bottom:89.666667pt;}
.y13d{bottom:90.532000pt;}
.y12f{bottom:91.000000pt;}
.yff{bottom:91.265333pt;}
.y1e{bottom:91.532000pt;}
.y54{bottom:91.598667pt;}
.y175{bottom:93.666667pt;}
.y17c{bottom:121.732000pt;}
.y15a{bottom:122.798667pt;}
.y167{bottom:123.465333pt;}
.y14b{bottom:123.598667pt;}
.y162{bottom:124.265333pt;}
.y13c{bottom:127.732000pt;}
.y142{bottom:127.798667pt;}
.y1d{bottom:130.198667pt;}
.y174{bottom:132.732000pt;}
.yfe{bottom:132.865333pt;}
.yaa{bottom:144.865333pt;}
.y53{bottom:146.666667pt;}
.y1c{bottom:148.465333pt;}
.y166{bottom:150.666667pt;}
.y164{bottom:151.000000pt;}
.yfd{bottom:151.132000pt;}
.y13b{bottom:154.865333pt;}
.y7f{bottom:156.198667pt;}
.y165{bottom:158.333333pt;}
.ya9{bottom:163.132000pt;}
.y52{bottom:163.932000pt;}
.y51{bottom:164.265333pt;}
.y139{bottom:165.132000pt;}
.y13a{bottom:165.465333pt;}
.yd3{bottom:165.666667pt;}
.y151{bottom:165.733333pt;}
.y1b{bottom:166.065333pt;}
.y17b{bottom:166.465333pt;}
.yfc{bottom:169.333333pt;}
.y7e{bottom:173.798667pt;}
.y179{bottom:178.000000pt;}
.y178{bottom:178.065333pt;}
.y17a{bottom:178.666667pt;}
.y50{bottom:181.198667pt;}
.ya8{bottom:181.333333pt;}
.y4f{bottom:181.532000pt;}
.y16c{bottom:182.666667pt;}
.y16d{bottom:182.932000pt;}
.y1a{bottom:183.333333pt;}
.yd2{bottom:184.265333pt;}
.yfb{bottom:187.598667pt;}
.y161{bottom:192.065333pt;}
.y16a{bottom:192.932000pt;}
.y16b{bottom:194.865333pt;}
.y137{bottom:198.065333pt;}
.y4e{bottom:198.798667pt;}
.ya7{bottom:199.598667pt;}
.y19{bottom:200.598667pt;}
.yd1{bottom:202.465333pt;}
.y160{bottom:203.000000pt;}
.yfa{bottom:205.532000pt;}
.y7d{bottom:208.666667pt;}
.y159{bottom:215.865333pt;}
.y4d{bottom:216.398667pt;}
.ya6{bottom:217.865333pt;}
.y18{bottom:218.198667pt;}
.yd0{bottom:220.065333pt;}
.y13f{bottom:221.198667pt;}
.y13e{bottom:221.265333pt;}
.yf9{bottom:223.798667pt;}
.y7c{bottom:225.932000pt;}
.y158{bottom:228.666667pt;}
.y157{bottom:228.732000pt;}
.y4c{bottom:234.000000pt;}
.y17{bottom:235.532000pt;}
.ya5{bottom:235.732000pt;}
.ycf{bottom:238.666667pt;}
.yf8{bottom:241.666667pt;}
.y7b{bottom:243.265333pt;}
.y146{bottom:248.132000pt;}
.y4b{bottom:251.265333pt;}
.y4a{bottom:251.598667pt;}
.y16{bottom:252.132000pt;}
.y131{bottom:252.265333pt;}
.y147{bottom:253.265333pt;}
.ya4{bottom:254.000000pt;}
.yce{bottom:256.598667pt;}
.y169{bottom:257.265333pt;}
.yf7{bottom:259.932000pt;}
.y7a{bottom:260.865333pt;}
.y49{bottom:268.532000pt;}
.y48{bottom:268.865333pt;}
.y15{bottom:270.398667pt;}
.ya3{bottom:271.932000pt;}
.ycd{bottom:274.798667pt;}
.y171{bottom:275.465333pt;}
.y79{bottom:277.800000pt;}
.yf6{bottom:277.865333pt;}
.y47{bottom:286.133333pt;}
.y15f{bottom:287.466667pt;}
.y14{bottom:287.732000pt;}
.y16e{bottom:289.532000pt;}
.y170{bottom:289.800000pt;}
.y16f{bottom:289.865333pt;}
.ya2{bottom:290.133333pt;}
.ycc{bottom:292.732000pt;}
.y78{bottom:295.466667pt;}
.yf5{bottom:295.800000pt;}
.y46{bottom:303.466667pt;}
.y13{bottom:305.000000pt;}
.ya1{bottom:308.065333pt;}
.ycb{bottom:310.932000pt;}
.y130{bottom:312.800000pt;}
.y77{bottom:313.000000pt;}
.yf4{bottom:314.000000pt;}
.y156{bottom:317.000000pt;}
.y45{bottom:321.065333pt;}
.y12{bottom:322.532000pt;}
.ya0{bottom:326.333333pt;}
.y128{bottom:328.598667pt;}
.yca{bottom:328.865333pt;}
.y129{bottom:329.265333pt;}
.y75{bottom:329.598667pt;}
.y76{bottom:330.265333pt;}
.yf3{bottom:331.932000pt;}
.y11{bottom:339.800000pt;}
.y9f{bottom:344.265333pt;}
.y127{bottom:346.865333pt;}
.yc9{bottom:347.133333pt;}
.y74{bottom:347.532000pt;}
.yf2{bottom:350.133333pt;}
.y44{bottom:355.598667pt;}
.y136{bottom:355.866667pt;}
.yf{bottom:356.800000pt;}
.y10{bottom:357.732000pt;}
.y9e{bottom:362.466667pt;}
.y124{bottom:364.800000pt;}
.y73{bottom:364.865333pt;}
.yc8{bottom:365.333333pt;}
.y125{bottom:365.732000pt;}
.y126{bottom:366.666667pt;}
.yf1{bottom:368.398667pt;}
.y43{bottom:372.865333pt;}
.y72{bottom:381.800000pt;}
.y121{bottom:383.000000pt;}
.yc7{bottom:383.265333pt;}
.y122{bottom:384.000000pt;}
.y123{bottom:384.598667pt;}
.yf0{bottom:386.666667pt;}
.y150{bottom:389.133333pt;}
.y42{bottom:390.133333pt;}
.y9d{bottom:398.666667pt;}
.y71{bottom:399.732000pt;}
.y11e{bottom:401.265333pt;}
.yc6{bottom:401.865333pt;}
.y11f{bottom:402.198667pt;}
.y120{bottom:402.865333pt;}
.yef{bottom:404.532000pt;}
.y41{bottom:407.732000pt;}
.y141{bottom:411.333333pt;}
.y70{bottom:417.598667pt;}
.y11c{bottom:419.532000pt;}
.yc5{bottom:419.798667pt;}
.y11d{bottom:420.465333pt;}
.y40{bottom:425.065333pt;}
.ye{bottom:432.666667pt;}
.y6f{bottom:434.932000pt;}
.y119{bottom:437.132000pt;}
.y11a{bottom:437.732000pt;}
.yc4{bottom:438.000000pt;}
.y11b{bottom:438.065333pt;}
.yee{bottom:440.798667pt;}
.y3f{bottom:442.333333pt;}
.y135{bottom:445.733333pt;}
.yd{bottom:448.932000pt;}
.y6e{bottom:452.532000pt;}
.y9c{bottom:453.065333pt;}
.y118{bottom:455.666667pt;}
.yc3{bottom:455.932000pt;}
.y14e{bottom:459.200000pt;}
.y3e{bottom:459.932000pt;}
.yc{bottom:464.666667pt;}
.y6d{bottom:469.798667pt;}
.y9b{bottom:470.666667pt;}
.y117{bottom:473.265333pt;}
.yc2{bottom:474.198667pt;}
.y3d{bottom:476.532000pt;}
.ya{bottom:479.333333pt;}
.yb{bottom:480.333333pt;}
.y6c{bottom:487.398667pt;}
.y9a{bottom:488.865333pt;}
.y152{bottom:489.266667pt;}
.yc1{bottom:492.065333pt;}
.y3c{bottom:494.132000pt;}
.yed{bottom:494.465333pt;}
.y155{bottom:495.265333pt;}
.y6a{bottom:504.065333pt;}
.y6b{bottom:504.666667pt;}
.y99{bottom:507.132000pt;}
.y116{bottom:509.132000pt;}
.yc0{bottom:510.333333pt;}
.y3b{bottom:511.465333pt;}
.yec{bottom:512.732000pt;}
.y69{bottom:521.932000pt;}
.y9{bottom:524.532000pt;}
.y98{bottom:525.333333pt;}
.ybf{bottom:528.265333pt;}
.y3a{bottom:529.065333pt;}
.yeb{bottom:531.000000pt;}
.y14f{bottom:531.866667pt;}
.y68{bottom:539.265333pt;}
.y8{bottom:540.798667pt;}
.y97{bottom:543.598667pt;}
.y39{bottom:546.666667pt;}
.yea{bottom:549.532000pt;}
.y7{bottom:556.198667pt;}
.y67{bottom:556.798667pt;}
.y96{bottom:561.865333pt;}
.y115{bottom:563.798667pt;}
.y38{bottom:563.932000pt;}
.ybe{bottom:564.398667pt;}
.ye9{bottom:567.798667pt;}
.y5{bottom:570.598667pt;}
.y6{bottom:571.865333pt;}
.y66{bottom:574.132000pt;}
.y95{bottom:580.065333pt;}
.y37{bottom:581.532000pt;}
.y114{bottom:582.666667pt;}
.ye8{bottom:586.065333pt;}
.y65{bottom:591.398667pt;}
.y94{bottom:598.333333pt;}
.y36{bottom:599.132000pt;}
.y113{bottom:600.598667pt;}
.ye7{bottom:604.532000pt;}
.y64{bottom:609.000000pt;}
.y15c{bottom:614.865333pt;}
.y93{bottom:616.532000pt;}
.y35{bottom:616.732000pt;}
.ybd{bottom:618.798667pt;}
.y112{bottom:618.865333pt;}
.ye6{bottom:622.798667pt;}
.y63{bottom:626.265333pt;}
.y34{bottom:634.333333pt;}
.y92{bottom:634.798667pt;}
.ybc{bottom:637.065333pt;}
.y12b{bottom:639.198667pt;}
.ye5{bottom:641.065333pt;}
.y62{bottom:643.598667pt;}
.y33{bottom:651.932000pt;}
.y91{bottom:653.065333pt;}
.y111{bottom:654.065333pt;}
.ybb{bottom:655.000000pt;}
.ye4{bottom:659.598667pt;}
.y61{bottom:661.132000pt;}
.y4{bottom:662.398667pt;}
.y32{bottom:669.532000pt;}
.y90{bottom:671.265333pt;}
.y110{bottom:672.666667pt;}
.yba{bottom:673.198667pt;}
.ye3{bottom:678.132000pt;}
.y60{bottom:678.398667pt;}
.y3{bottom:679.333333pt;}
.y31{bottom:687.132000pt;}
.y8f{bottom:689.532000pt;}
.y10f{bottom:690.865333pt;}
.yb9{bottom:691.132000pt;}
.y5f{bottom:695.398667pt;}
.ye2{bottom:696.065333pt;}
.y30{bottom:704.732000pt;}
.y8e{bottom:707.732000pt;}
.y10e{bottom:708.198667pt;}
.yb8{bottom:708.732000pt;}
.y2{bottom:712.600000pt;}
.y5e{bottom:713.000000pt;}
.ye1{bottom:714.333333pt;}
.y2f{bottom:722.333333pt;}
.y145{bottom:725.600000pt;}
.y8d{bottom:726.000000pt;}
.y10d{bottom:726.666667pt;}
.yb7{bottom:726.933333pt;}
.ye0{bottom:732.600000pt;}
.y2e{bottom:739.933333pt;}
.y8c{bottom:744.266667pt;}
.y10c{bottom:744.933333pt;}
.yb6{bottom:745.198667pt;}
.y1{bottom:747.198667pt;}
.y5d{bottom:747.266667pt;}
.ydf{bottom:751.132000pt;}
.y2d{bottom:757.532000pt;}
.y8b{bottom:762.466667pt;}
.y10b{bottom:762.865333pt;}
.yb5{bottom:763.466667pt;}
.yde{bottom:769.333333pt;}
.y2c{bottom:775.133333pt;}
.y8a{bottom:780.732000pt;}
.y10a{bottom:781.398667pt;}
.yb4{bottom:782.000000pt;}
.y5c{bottom:783.065333pt;}
.ydd{bottom:787.666667pt;}
.y2b{bottom:792.732000pt;}
.y144{bottom:793.732000pt;}
.y89{bottom:799.000000pt;}
.y109{bottom:799.732000pt;}
.yb3{bottom:800.266667pt;}
.y5b{bottom:800.333333pt;}
.ydc{bottom:806.133333pt;}
.y2a{bottom:810.333333pt;}
.y88{bottom:817.532000pt;}
.y108{bottom:818.198667pt;}
.yb2{bottom:818.532000pt;}
.ydb{bottom:824.398667pt;}
.y29{bottom:827.933333pt;}
.y5a{bottom:835.198667pt;}
.y87{bottom:835.732000pt;}
.y107{bottom:836.466667pt;}
.yb1{bottom:836.732000pt;}
.yda{bottom:843.000000pt;}
.y28{bottom:845.600000pt;}
.y86{bottom:854.000000pt;}
.y106{bottom:854.666667pt;}
.yb0{bottom:855.266667pt;}
.yd9{bottom:861.198667pt;}
.y27{bottom:863.466667pt;}
.y85{bottom:872.532000pt;}
.y105{bottom:872.933333pt;}
.yaf{bottom:873.532000pt;}
.yd8{bottom:879.732000pt;}
.y26{bottom:881.065333pt;}
.y59{bottom:888.000000pt;}
.y84{bottom:890.800000pt;}
.y104{bottom:890.865333pt;}
.yae{bottom:891.800000pt;}
.y25{bottom:898.666667pt;}
.y12c{bottom:902.532000pt;}
.y58{bottom:905.666667pt;}
.y83{bottom:909.065333pt;}
.y103{bottom:909.133333pt;}
.yad{bottom:910.000000pt;}
.y24{bottom:916.266667pt;}
.yd7{bottom:916.600000pt;}
.yd6{bottom:916.933333pt;}
.y177{bottom:951.198667pt;}
.y176{bottom:951.466667pt;}
.y55{bottom:952.732000pt;}
.y154{bottom:952.865333pt;}
.y56{bottom:953.065333pt;}
.y153{bottom:953.198667pt;}
.y163{bottom:953.266667pt;}
.y57{bottom:953.333333pt;}
.y148{bottom:954.065333pt;}
.y149{bottom:954.398667pt;}
.y14a{bottom:954.666667pt;}
.y82{bottom:956.466667pt;}
.y100{bottom:956.532000pt;}
.y138{bottom:956.800000pt;}
.y132{bottom:957.000000pt;}
.y81{bottom:957.065333pt;}
.y101{bottom:957.133333pt;}
.yac{bottom:957.398667pt;}
.y102{bottom:957.466667pt;}
.y133{bottom:957.933333pt;}
.y15e{bottom:958.133333pt;}
.y15d{bottom:958.198667pt;}
.y134{bottom:958.266667pt;}
.y140{bottom:960.466667pt;}
.y14d{bottom:961.600000pt;}
.y12e{bottom:962.398667pt;}
.y12d{bottom:962.732000pt;}
.y23{bottom:963.666667pt;}
.yd5{bottom:964.000000pt;}
.y22{bottom:964.266667pt;}
.y172{bottom:965.732000pt;}
.y173{bottom:966.065333pt;}
.h1f{height:22.250000pt;}
.h22{height:22.762667pt;}
.h1b{height:26.171875pt;}
.h14{height:31.406250pt;}
.h13{height:32.250000pt;}
.h6{height:35.493533pt;}
.h23{height:36.640625pt;}
.h9{height:41.875000pt;}
.h16{height:43.000000pt;}
.h17{height:47.109375pt;}
.h1c{height:48.375000pt;}
.h3{height:52.343750pt;}
.h4{height:53.750000pt;}
.h5{height:57.549479pt;}
.h2{height:57.578125pt;}
.ha{height:57.844792pt;}
.h7{height:58.021333pt;}
.hc{height:59.125000pt;}
.hd{height:59.972792pt;}
.hf{height:60.191667pt;}
.h11{height:61.288146pt;}
.h10{height:62.621479pt;}
.h19{height:62.812500pt;}
.h18{height:64.500000pt;}
.h20{height:66.750000pt;}
.h1{height:68.046875pt;}
.h1e{height:214.609375pt;}
.hb{height:1089.333333pt;}
.h1a{height:1090.666667pt;}
.h15{height:1092.000000pt;}
.h1d{height:1093.333333pt;}
.he{height:1094.666667pt;}
.h0{height:1096.000000pt;}
.h8{height:1098.666667pt;}
.h12{height:1100.000000pt;}
.h21{height:1102.666667pt;}
.w1{width:246.602667pt;}
.w2{width:335.345333pt;}
.w3{width:746.666667pt;}
.w6{width:748.000000pt;}
.w5{width:749.333333pt;}
.w0{width:750.666667pt;}
.w4{width:752.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:3.330667pt;}
.x1e{left:8.844000pt;}
.xb{left:56.693115pt;}
.x29{left:58.866667pt;}
.x37{left:59.866667pt;}
.x22{left:62.733333pt;}
.x5{left:64.933333pt;}
.x9{left:65.933333pt;}
.x1{left:68.466667pt;}
.x2b{left:74.266667pt;}
.x28{left:77.733333pt;}
.x3d{left:78.733333pt;}
.x1a{left:80.000000pt;}
.x13{left:81.266667pt;}
.x10{left:82.266667pt;}
.xc{left:83.200000pt;}
.x7{left:84.133333pt;}
.x2d{left:85.732000pt;}
.x3a{left:88.666667pt;}
.x59{left:95.333333pt;}
.xd{left:98.533333pt;}
.x23{left:99.866667pt;}
.x11{left:100.800000pt;}
.xf{left:101.732000pt;}
.x30{left:103.066667pt;}
.x2f{left:104.333333pt;}
.x12{left:120.000000pt;}
.x1b{left:135.666667pt;}
.x3b{left:144.933333pt;}
.x1c{left:150.066667pt;}
.x53{left:155.200000pt;}
.x43{left:164.800000pt;}
.x5c{left:166.066667pt;}
.x25{left:167.066667pt;}
.x49{left:168.000000pt;}
.x6{left:168.933333pt;}
.x1f{left:171.533333pt;}
.x54{left:187.200000pt;}
.x18{left:192.933333pt;}
.x31{left:198.733333pt;}
.x3e{left:209.933333pt;}
.x35{left:211.200000pt;}
.x32{left:216.933333pt;}
.x4f{left:232.666667pt;}
.x38{left:233.933333pt;}
.x69{left:247.066667pt;}
.xe{left:256.666667pt;}
.x65{left:257.933333pt;}
.x2e{left:258.866667pt;}
.x42{left:260.800000pt;}
.x78{left:264.333333pt;}
.x71{left:265.266667pt;}
.x3{left:269.466667pt;}
.x56{left:278.733333pt;}
.x72{left:280.333333pt;}
.x75{left:288.666667pt;}
.x76{left:290.266667pt;}
.x77{left:291.866667pt;}
.x4{left:294.400000pt;}
.x73{left:308.131333pt;}
.x74{left:312.933333pt;}
.x2a{left:320.000000pt;}
.x4b{left:324.133333pt;}
.x4e{left:326.733333pt;}
.x4c{left:330.253333pt;}
.x33{left:340.800000pt;}
.x16{left:344.333333pt;}
.x2{left:358.066667pt;}
.x40{left:380.466667pt;}
.x4d{left:397.466667pt;}
.x34{left:421.733333pt;}
.x8{left:438.733333pt;}
.x17{left:464.933333pt;}
.x55{left:478.400000pt;}
.x5e{left:486.733333pt;}
.x5d{left:489.600000pt;}
.x14{left:495.666667pt;}
.x66{left:504.666667pt;}
.x5f{left:505.933333pt;}
.x62{left:507.533333pt;}
.x60{left:512.000000pt;}
.xa{left:522.866667pt;}
.x48{left:526.066667pt;}
.x52{left:531.533333pt;}
.x67{left:533.733333pt;}
.x6a{left:537.266667pt;}
.x6b{left:543.333333pt;}
.x68{left:550.733333pt;}
.x64{left:552.933333pt;}
.x44{left:554.533333pt;}
.x6f{left:555.533333pt;}
.x26{left:556.466667pt;}
.x4a{left:557.466667pt;}
.x36{left:558.733333pt;}
.x20{left:560.000000pt;}
.x39{left:563.200000pt;}
.x7a{left:564.133333pt;}
.x57{left:566.733333pt;}
.x50{left:569.266667pt;}
.x63{left:571.866667pt;}
.x58{left:573.466667pt;}
.x2c{left:574.400000pt;}
.x3f{left:576.333333pt;}
.x7c{left:577.266667pt;}
.x24{left:578.266667pt;}
.x61{left:580.133333pt;}
.x6d{left:585.266667pt;}
.x7d{left:596.800000pt;}
.x70{left:602.866667pt;}
.x15{left:605.133333pt;}
.x6c{left:611.533333pt;}
.x46{left:621.134667pt;}
.x5b{left:622.068000pt;}
.x3c{left:623.666667pt;}
.x6e{left:628.133333pt;}
.x5a{left:629.468000pt;}
.x7b{left:633.600000pt;}
.x51{left:637.733333pt;}
.x41{left:646.400000pt;}
.x45{left:647.666667pt;}
.x27{left:649.933333pt;}
.x79{left:650.866667pt;}
.x21{left:653.133333pt;}
.x19{left:664.933333pt;}
.x47{left:688.934667pt;}
}

