
    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_75da6210b67734e395582f29.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a444b6b7534bfd2379b8f654.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_332a177709bab381582f8cef.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_51355c888fcc3b16f6c80dfd.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_eda47135d8a40d1c05ad1b8a.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c118f64519650b070e874fa7.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_26400509e2d60a79066636c4.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_72069423bb2e7ff1d693fdef.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_850aa4719a2852f0a5c55962.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_05fd2f9160219add3ef3aad4.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c73a5c9029df8b4c8f95a490.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_72069423bb2e7ff1d693fdef.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_8a6e79b72cff01f22e2addb4.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_008aadf375a3e7a5d8c0344a.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_c6ba5de430df7a292539d432.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_72069423bb2e7ff1d693fdef.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_bd16839019ef92335450b98d.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_1db5fd78ae163b7de6395df9.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_72069423bb2e7ff1d693fdef.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_85d7972cb5ef4e73c5ff6b8b.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_e7cb21c53494d69dca6aa802.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_72069423bb2e7ff1d693fdef.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_1e083d0458055578751bd81a.woff')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_1d6c221b453a363219723a31.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_72069423bb2e7ff1d693fdef.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_1d0734e69efc831c10acd692.woff')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_fe9597664ae0822497d92155.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_72069423bb2e7ff1d693fdef.woff')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_69de0031388d5be44328821c.woff')format("woff");}.ff1d{font-family:ff1d;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;}
.m1{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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-9.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.149400px;}
.ls7{letter-spacing:0.449400px;}
.lse{letter-spacing:0.450000px;}
.ls16{letter-spacing:0.573000px;}
.ls8{letter-spacing:0.573600px;}
.ls5{letter-spacing:1.649400px;}
.lsd{letter-spacing:1.650000px;}
.lsa{letter-spacing:1.782000px;}
.lsc{letter-spacing:1.949400px;}
.ls10{letter-spacing:1.950000px;}
.ls12{letter-spacing:3.149400px;}
.ls6{letter-spacing:3.150000px;}
.ls14{letter-spacing:3.449400px;}
.ls13{letter-spacing:3.450000px;}
.ls1{letter-spacing:7.778250px;}
.ls4{letter-spacing:7.842000px;}
.lsf{letter-spacing:9.041400px;}
.lsb{letter-spacing:9.042000px;}
.ls11{letter-spacing:9.342000px;}
.ls15{letter-spacing:10.542000px;}
.ls0{letter-spacing:11.154000px;}
.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;}
}
.ws8{word-spacing:-47.652000px;}
.ws5{word-spacing:-15.282000px;}
.ws0{word-spacing:-14.250000px;}
.ws6{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.010400px;}
.ws7{word-spacing:-12.000000px;}
.ws1{word-spacing:-11.398500px;}
.ws4{word-spacing:-7.800000px;}
.ws3{word-spacing:0.000000px;}
._1a{margin-left:-27.153000px;}
._1f{margin-left:-15.600000px;}
._1b{margin-left:-14.250000px;}
._14{margin-left:-12.219000px;}
._26{margin-left:-10.872000px;}
._13{margin-left:-9.747000px;}
._12{margin-left:-7.716000px;}
._c{margin-left:-6.600000px;}
._a{margin-left:-5.424000px;}
._7{margin-left:-3.876000px;}
._8{margin-left:-1.938000px;}
._5{width:1.938000px;}
._9{width:3.552000px;}
._15{width:4.584000px;}
._2{width:5.616000px;}
._e{width:7.260000px;}
._b{width:9.180000px;}
._6{width:10.200000px;}
._d{width:11.592000px;}
._1{width:12.870000px;}
._3{width:14.508000px;}
._22{width:15.519000px;}
._f{width:16.527000px;}
._0{width:18.486000px;}
._4{width:19.578000px;}
._11{width:20.901000px;}
._10{width:22.386000px;}
._1e{width:24.366000px;}
._1c{width:25.650000px;}
._24{width:27.360000px;}
._1d{width:28.557000px;}
._16{width:29.811000px;}
._17{width:30.837000px;}
._18{width:32.433000px;}
._27{width:33.801000px;}
._19{width:34.998000px;}
._21{width:37.620000px;}
._25{width:38.871000px;}
._20{width:40.878000px;}
._23{width:44.346000px;}
._29{width:46.113000px;}
._30{width:66.051000px;}
._2e{width:70.395000px;}
._2f{width:72.618000px;}
._28{width:79.857000px;}
._2b{width:188.271000px;}
._2c{width:190.779000px;}
._2a{width:192.060000px;}
._2d{width:194.028000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.200000px;}
.fs6{font-size:33.000000px;}
.fs8{font-size:39.000000px;}
.fs4{font-size:45.594000px;}
.fs5{font-size:46.800000px;}
.fsa{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fsb{font-size:66.000000px;}
.fs0{font-size:78.000000px;}
.fs2{font-size:96.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.yd6{bottom:31.275000px;}
.y127{bottom:36.675000px;}
.y79{bottom:37.800000px;}
.ya9{bottom:38.100000px;}
.y1f{bottom:39.225000px;}
.yff{bottom:39.975000px;}
.y4c{bottom:41.400000px;}
.y1e{bottom:43.200000px;}
.y1d{bottom:56.175000px;}
.y1c{bottom:69.825000px;}
.yd5{bottom:70.500000px;}
.ya8{bottom:74.850000px;}
.y4b{bottom:78.450000px;}
.ya7{bottom:89.250000px;}
.y4a{bottom:92.100000px;}
.y78{bottom:92.851500px;}
.ya6{bottom:102.900000px;}
.y49{bottom:106.200000px;}
.y77{bottom:109.426500px;}
.yfe{bottom:110.176500px;}
.y1b{bottom:119.854500px;}
.y76{bottom:126.301500px;}
.yfd{bottom:127.051500px;}
.y126{bottom:127.800000px;}
.ya5{bottom:135.301500px;}
.y1a{bottom:136.053000px;}
.y75{bottom:142.875000px;}
.yfc{bottom:144.001500px;}
.y125{bottom:144.675000px;}
.ya4{bottom:152.626500px;}
.y48{bottom:153.001500px;}
.y19{bottom:153.003000px;}
.yfb{bottom:160.575000px;}
.y124{bottom:166.278000px;}
.yd4{bottom:168.825000px;}
.ya3{bottom:169.501500px;}
.y47{bottom:169.876500px;}
.y18{bottom:169.878000px;}
.y74{bottom:176.700000px;}
.yfa{bottom:177.450000px;}
.y123{bottom:183.226500px;}
.yd3{bottom:185.400000px;}
.ya2{bottom:186.075000px;}
.y46{bottom:186.450000px;}
.y17{bottom:186.451500px;}
.y122{bottom:199.800000px;}
.yd2{bottom:202.275000px;}
.ya1{bottom:203.025000px;}
.y16{bottom:203.401500px;}
.yf9{bottom:204.075000px;}
.y73{bottom:209.850000px;}
.y45{bottom:213.075000px;}
.yd1{bottom:218.850000px;}
.y15{bottom:220.276500px;}
.y121{bottom:221.700000px;}
.y44{bottom:229.725000px;}
.yf8{bottom:230.400000px;}
.ya0{bottom:236.100000px;}
.y14{bottom:236.850000px;}
.y120{bottom:238.275000px;}
.yd0{bottom:245.478000px;}
.y43{bottom:246.600000px;}
.yf7{bottom:247.275000px;}
.y72{bottom:252.301500px;}
.y11f{bottom:260.250000px;}
.ycf{bottom:262.353000px;}
.y42{bottom:263.475000px;}
.y71{bottom:268.875000px;}
.y9f{bottom:270.004500px;}
.y13{bottom:271.050000px;}
.yf6{bottom:273.975000px;}
.y11e{bottom:276.825000px;}
.yce{bottom:279.301500px;}
.y41{bottom:280.425000px;}
.y70{bottom:285.825000px;}
.y9e{bottom:286.879500px;}
.y12{bottom:287.250000px;}
.yf5{bottom:290.475000px;}
.ycd{bottom:296.250000px;}
.y40{bottom:297.300000px;}
.y11d{bottom:298.425000px;}
.y6f{bottom:302.400000px;}
.y11{bottom:303.825000px;}
.y9d{bottom:303.829500px;}
.yf4{bottom:307.425000px;}
.ycc{bottom:312.825000px;}
.y11c{bottom:315.300000px;}
.y9c{bottom:320.704500px;}
.y10{bottom:320.775000px;}
.ycb{bottom:329.700000px;}
.y3f{bottom:330.825000px;}
.yf3{bottom:334.050000px;}
.y6e{bottom:336.300000px;}
.y11b{bottom:336.900000px;}
.y9b{bottom:337.279500px;}
.yca{bottom:346.275000px;}
.yf2{bottom:351.000000px;}
.y6d{bottom:352.800000px;}
.y11a{bottom:353.850000px;}
.y9a{bottom:354.154500px;}
.yf{bottom:354.601500px;}
.yc9{bottom:363.225000px;}
.y3e{bottom:364.275000px;}
.y6c{bottom:369.300000px;}
.y99{bottom:371.104500px;}
.ye{bottom:371.176500px;}
.y119{bottom:375.450000px;}
.yf1{bottom:377.250000px;}
.y6b{bottom:386.325000px;}
.yd{bottom:388.051500px;}
.y98{bottom:388.054500px;}
.yc8{bottom:389.850000px;}
.y118{bottom:392.400000px;}
.yf0{bottom:394.200000px;}
.y3d{bottom:397.801500px;}
.y6a{bottom:403.200000px;}
.yc{bottom:404.626500px;}
.y97{bottom:404.628000px;}
.yc7{bottom:406.800000px;}
.y117{bottom:414.001500px;}
.y3c{bottom:414.750000px;}
.y69{bottom:420.075000px;}
.yef{bottom:420.451500px;}
.y96{bottom:421.203000px;}
.yb{bottom:421.575000px;}
.yc6{bottom:423.300000px;}
.y116{bottom:430.501500px;}
.y3b{bottom:431.625000px;}
.yee{bottom:437.400000px;}
.y95{bottom:438.151500px;}
.ya{bottom:438.450000px;}
.y68{bottom:447.079500px;}
.y115{bottom:447.826500px;}
.y3a{bottom:448.500000px;}
.yc5{bottom:450.003000px;}
.yed{bottom:454.275000px;}
.y94{bottom:455.026500px;}
.y67{bottom:463.278000px;}
.y114{bottom:464.400000px;}
.y39{bottom:465.075000px;}
.yc4{bottom:466.503000px;}
.y93{bottom:471.901500px;}
.y9{bottom:472.275000px;}
.y66{bottom:479.928000px;}
.yec{bottom:480.600000px;}
.yc3{bottom:483.453000px;}
.y113{bottom:486.000000px;}
.y92{bottom:488.850000px;}
.y38{bottom:491.704500px;}
.y65{bottom:496.803000px;}
.yeb{bottom:497.851500px;}
.yc2{bottom:500.401500px;}
.y112{bottom:502.875000px;}
.y37{bottom:508.278000px;}
.y64{bottom:513.678000px;}
.yea{bottom:514.425000px;}
.y91{bottom:515.103000px;}
.yc1{bottom:516.901500px;}
.y111{bottom:524.103000px;}
.y36{bottom:525.226500px;}
.y63{bottom:530.328000px;}
.ye9{bottom:531.000000px;}
.y90{bottom:532.053000px;}
.yc0{bottom:533.475000px;}
.y110{bottom:540.976500px;}
.y35{bottom:542.101500px;}
.y8{bottom:547.200000px;}
.y62{bottom:547.203000px;}
.y8f{bottom:549.001500px;}
.ye8{bottom:557.625000px;}
.y10f{bottom:557.926500px;}
.y34{bottom:558.676500px;}
.ybf{bottom:560.854500px;}
.y61{bottom:564.078000px;}
.y8e{bottom:565.501500px;}
.y7{bottom:565.875000px;}
.y10e{bottom:574.876500px;}
.y33{bottom:575.625000px;}
.ybe{bottom:577.429500px;}
.y60{bottom:581.026500px;}
.y8d{bottom:582.526500px;}
.ye7{bottom:584.250000px;}
.y6{bottom:584.625000px;}
.y10d{bottom:591.826500px;}
.ybd{bottom:594.003000px;}
.y5f{bottom:597.600000px;}
.y8c{bottom:599.401500px;}
.y32{bottom:602.256000px;}
.y5{bottom:603.000000px;}
.y10c{bottom:608.400000px;}
.ybc{bottom:610.503000px;}
.y8b{bottom:616.276500px;}
.ye6{bottom:617.775000px;}
.y31{bottom:618.756000px;}
.y5e{bottom:624.226500px;}
.ybb{bottom:627.453000px;}
.y10b{bottom:630.300000px;}
.y8a{bottom:632.926500px;}
.y30{bottom:635.704500px;}
.y5d{bottom:640.801500px;}
.yba{bottom:643.953000px;}
.y10a{bottom:646.875000px;}
.y89{bottom:649.801500px;}
.y2f{bottom:652.653000px;}
.y5c{bottom:657.676500px;}
.yb9{bottom:660.901500px;}
.y109{bottom:663.450000px;}
.y88{bottom:666.676500px;}
.ye5{bottom:668.179500px;}
.y2e{bottom:669.601500px;}
.y5b{bottom:674.625000px;}
.yb8{bottom:677.850000px;}
.y87{bottom:683.250000px;}
.ye4{bottom:685.054500px;}
.y108{bottom:685.426500px;}
.y2d{bottom:686.101500px;}
.y5a{bottom:691.200000px;}
.yb7{bottom:694.800000px;}
.ye3{bottom:701.554500px;}
.y107{bottom:702.000000px;}
.y2c{bottom:703.051500px;}
.y59{bottom:708.075000px;}
.y86{bottom:709.507500px;}
.yb6{bottom:711.675000px;}
.ye2{bottom:718.503000px;}
.y2b{bottom:719.625000px;}
.y58{bottom:725.100000px;}
.y85{bottom:726.832500px;}
.yb5{bottom:728.700000px;}
.ye1{bottom:735.451500px;}
.y57{bottom:741.600000px;}
.y84{bottom:743.707500px;}
.yb4{bottom:745.200000px;}
.y2a{bottom:746.254530px;}
.y106{bottom:748.050000px;}
.y4{bottom:749.851500px;}
.ye0{bottom:752.400000px;}
.y56{bottom:758.100000px;}
.y83{bottom:760.281000px;}
.yb3{bottom:761.700000px;}
.y29{bottom:763.204530px;}
.y82{bottom:777.231000px;}
.y3{bottom:778.276500px;}
.ydf{bottom:778.653000px;}
.y28{bottom:779.703030px;}
.y55{bottom:785.479500px;}
.yb2{bottom:789.081000px;}
.y81{bottom:794.106000px;}
.yde{bottom:795.601500px;}
.y27{bottom:796.728000px;}
.y54{bottom:801.678000px;}
.y12e{bottom:802.050000px;}
.yb1{bottom:805.281000px;}
.y2{bottom:808.875000px;}
.y80{bottom:811.054500px;}
.ydd{bottom:812.175000px;}
.y26{bottom:813.603000px;}
.y53{bottom:818.626500px;}
.yb0{bottom:822.229500px;}
.y12d{bottom:823.651500px;}
.y7f{bottom:827.628000px;}
.ydc{bottom:829.050000px;}
.y25{bottom:830.478000px;}
.y105{bottom:834.450000px;}
.y52{bottom:835.200000px;}
.yaf{bottom:839.104500px;}
.y12c{bottom:840.225000px;}
.y7e{bottom:844.201500px;}
.ydb{bottom:845.700000px;}
.y24{bottom:847.051500px;}
.y104{bottom:851.025000px;}
.y51{bottom:852.075000px;}
.yae{bottom:855.678000px;}
.y12b{bottom:857.100000px;}
.y7d{bottom:861.151500px;}
.yda{bottom:862.575000px;}
.y23{bottom:864.000000px;}
.yad{bottom:872.251500px;}
.y103{bottom:877.651500px;}
.y7c{bottom:878.026500px;}
.y50{bottom:878.328000px;}
.y12a{bottom:878.700000px;}
.yd9{bottom:879.450000px;}
.y22{bottom:880.500000px;}
.yac{bottom:889.200000px;}
.y102{bottom:894.600000px;}
.y7b{bottom:894.901500px;}
.y4f{bottom:895.276500px;}
.y129{bottom:895.651500px;}
.yab{bottom:906.075000px;}
.y1{bottom:906.825000px;}
.y101{bottom:911.100000px;}
.y7a{bottom:911.475000px;}
.y4e{bottom:912.225000px;}
.yd8{bottom:912.975000px;}
.y21{bottom:914.025000px;}
.yaa{bottom:950.400000px;}
.y100{bottom:955.425000px;}
.y4d{bottom:956.475000px;}
.y128{bottom:957.225000px;}
.yd7{bottom:957.975000px;}
.y20{bottom:959.400000px;}
.h8{height:34.417969px;}
.hc{height:38.276367px;}
.hd{height:47.109375px;}
.h9{height:52.998047px;}
.hf{height:55.914551px;}
.h6{height:55.942383px;}
.he{height:56.242263px;}
.h5{height:57.445312px;}
.h7{height:59.449219px;}
.h11{height:66.515625px;}
.h2{height:76.514648px;}
.h4{height:100.125000px;}
.h3{height:106.382812px;}
.ha{height:1005.450000px;}
.hb{height:1005.750000px;}
.h10{height:1007.250000px;}
.h0{height:1007.625000px;}
.h1{height:1008.000000px;}
.w2{width:671.250000px;}
.w1{width:671.400000px;}
.w3{width:671.775000px;}
.w4{width:672.000000px;}
.w5{width:674.250000px;}
.w0{width:675.000000px;}
.x0{left:0.000000px;}
.x27{left:25.950015px;}
.x26{left:27.375000px;}
.x25{left:28.800000px;}
.x36{left:34.950000px;}
.x32{left:36.000000px;}
.x2f{left:37.050150px;}
.x30{left:38.550150px;}
.x1d{left:39.598500px;}
.x1b{left:40.651500px;}
.x19{left:41.776500px;}
.x17{left:42.825000px;}
.xb{left:44.250000px;}
.xc{left:45.375000px;}
.x9{left:46.425000px;}
.x8{left:47.550000px;}
.x2{left:48.600000px;}
.x3{left:50.040000px;}
.x1{left:51.150000px;}
.x35{left:55.425000px;}
.x34{left:56.550000px;}
.x33{left:57.600000px;}
.x1c{left:61.198500px;}
.x1a{left:62.250000px;}
.x18{left:63.375000px;}
.xa{left:67.350000px;}
.x22{left:72.000000px;}
.x21{left:73.800000px;}
.x14{left:75.975000px;}
.x12{left:77.025000px;}
.x39{left:79.573500px;}
.x2c{left:80.625000px;}
.x2a{left:81.750000px;}
.x20{left:92.550000px;}
.x13{left:96.825000px;}
.x3a{left:99.748500px;}
.x2b{left:101.175000px;}
.x24{left:186.450000px;}
.x2e{left:194.400000px;}
.x16{left:200.535000px;}
.x1f{left:229.350000px;}
.x11{left:234.375000px;}
.x38{left:236.535000px;}
.x29{left:238.350000px;}
.x31{left:269.250000px;}
.x28{left:289.035000px;}
.x37{left:298.410000px;}
.x1e{left:303.450000px;}
.x10{left:308.850000px;}
.x23{left:335.535000px;}
.x15{left:339.150000px;}
.x3b{left:342.000000px;}
.x2d{left:344.160000px;}
.x4{left:406.050000px;}
.x6{left:442.410150px;}
.x5{left:444.585000px;}
.x7{left:446.398350px;}
.xe{left:479.175000px;}
.xf{left:484.950000px;}
.xd{left:495.375000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-8.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.132800pt;}
.ls7{letter-spacing:0.399467pt;}
.lse{letter-spacing:0.400000pt;}
.ls16{letter-spacing:0.509333pt;}
.ls8{letter-spacing:0.509867pt;}
.ls5{letter-spacing:1.466133pt;}
.lsd{letter-spacing:1.466667pt;}
.lsa{letter-spacing:1.584000pt;}
.lsc{letter-spacing:1.732800pt;}
.ls10{letter-spacing:1.733333pt;}
.ls12{letter-spacing:2.799467pt;}
.ls6{letter-spacing:2.800000pt;}
.ls14{letter-spacing:3.066133pt;}
.ls13{letter-spacing:3.066667pt;}
.ls1{letter-spacing:6.914000pt;}
.ls4{letter-spacing:6.970667pt;}
.lsf{letter-spacing:8.036800pt;}
.lsb{letter-spacing:8.037333pt;}
.ls11{letter-spacing:8.304000pt;}
.ls15{letter-spacing:9.370667pt;}
.ls0{letter-spacing:9.914667pt;}
.ws8{word-spacing:-42.357333pt;}
.ws5{word-spacing:-13.584000pt;}
.ws0{word-spacing:-12.666667pt;}
.ws6{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.564800pt;}
.ws7{word-spacing:-10.666667pt;}
.ws1{word-spacing:-10.132000pt;}
.ws4{word-spacing:-6.933333pt;}
.ws3{word-spacing:0.000000pt;}
._1a{margin-left:-24.136000pt;}
._1f{margin-left:-13.866667pt;}
._1b{margin-left:-12.666667pt;}
._14{margin-left:-10.861333pt;}
._26{margin-left:-9.664000pt;}
._13{margin-left:-8.664000pt;}
._12{margin-left:-6.858667pt;}
._c{margin-left:-5.866667pt;}
._a{margin-left:-4.821333pt;}
._7{margin-left:-3.445333pt;}
._8{margin-left:-1.722667pt;}
._5{width:1.722667pt;}
._9{width:3.157333pt;}
._15{width:4.074667pt;}
._2{width:4.992000pt;}
._e{width:6.453333pt;}
._b{width:8.160000pt;}
._6{width:9.066667pt;}
._d{width:10.304000pt;}
._1{width:11.440000pt;}
._3{width:12.896000pt;}
._22{width:13.794667pt;}
._f{width:14.690667pt;}
._0{width:16.432000pt;}
._4{width:17.402667pt;}
._11{width:18.578667pt;}
._10{width:19.898667pt;}
._1e{width:21.658667pt;}
._1c{width:22.800000pt;}
._24{width:24.320000pt;}
._1d{width:25.384000pt;}
._16{width:26.498667pt;}
._17{width:27.410667pt;}
._18{width:28.829333pt;}
._27{width:30.045333pt;}
._19{width:31.109333pt;}
._21{width:33.440000pt;}
._25{width:34.552000pt;}
._20{width:36.336000pt;}
._23{width:39.418667pt;}
._29{width:40.989333pt;}
._30{width:58.712000pt;}
._2e{width:62.573333pt;}
._2f{width:64.549333pt;}
._28{width:70.984000pt;}
._2b{width:167.352000pt;}
._2c{width:169.581333pt;}
._2a{width:170.720000pt;}
._2d{width:172.469333pt;}
.fs9{font-size:27.733333pt;}
.fs6{font-size:29.333333pt;}
.fs8{font-size:34.666667pt;}
.fs4{font-size:40.528000pt;}
.fs5{font-size:41.600000pt;}
.fsa{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fsb{font-size:58.666667pt;}
.fs0{font-size:69.333333pt;}
.fs2{font-size:85.333333pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.yd6{bottom:27.800000pt;}
.y127{bottom:32.600000pt;}
.y79{bottom:33.600000pt;}
.ya9{bottom:33.866667pt;}
.y1f{bottom:34.866667pt;}
.yff{bottom:35.533333pt;}
.y4c{bottom:36.800000pt;}
.y1e{bottom:38.400000pt;}
.y1d{bottom:49.933333pt;}
.y1c{bottom:62.066667pt;}
.yd5{bottom:62.666667pt;}
.ya8{bottom:66.533333pt;}
.y4b{bottom:69.733333pt;}
.ya7{bottom:79.333333pt;}
.y4a{bottom:81.866667pt;}
.y78{bottom:82.534667pt;}
.ya6{bottom:91.466667pt;}
.y49{bottom:94.400000pt;}
.y77{bottom:97.268000pt;}
.yfe{bottom:97.934667pt;}
.y1b{bottom:106.537333pt;}
.y76{bottom:112.268000pt;}
.yfd{bottom:112.934667pt;}
.y126{bottom:113.600000pt;}
.ya5{bottom:120.268000pt;}
.y1a{bottom:120.936000pt;}
.y75{bottom:127.000000pt;}
.yfc{bottom:128.001333pt;}
.y125{bottom:128.600000pt;}
.ya4{bottom:135.668000pt;}
.y48{bottom:136.001333pt;}
.y19{bottom:136.002667pt;}
.yfb{bottom:142.733333pt;}
.y124{bottom:147.802667pt;}
.yd4{bottom:150.066667pt;}
.ya3{bottom:150.668000pt;}
.y47{bottom:151.001333pt;}
.y18{bottom:151.002667pt;}
.y74{bottom:157.066667pt;}
.yfa{bottom:157.733333pt;}
.y123{bottom:162.868000pt;}
.yd3{bottom:164.800000pt;}
.ya2{bottom:165.400000pt;}
.y46{bottom:165.733333pt;}
.y17{bottom:165.734667pt;}
.y122{bottom:177.600000pt;}
.yd2{bottom:179.800000pt;}
.ya1{bottom:180.466667pt;}
.y16{bottom:180.801333pt;}
.yf9{bottom:181.400000pt;}
.y73{bottom:186.533333pt;}
.y45{bottom:189.400000pt;}
.yd1{bottom:194.533333pt;}
.y15{bottom:195.801333pt;}
.y121{bottom:197.066667pt;}
.y44{bottom:204.200000pt;}
.yf8{bottom:204.800000pt;}
.ya0{bottom:209.866667pt;}
.y14{bottom:210.533333pt;}
.y120{bottom:211.800000pt;}
.yd0{bottom:218.202667pt;}
.y43{bottom:219.200000pt;}
.yf7{bottom:219.800000pt;}
.y72{bottom:224.268000pt;}
.y11f{bottom:231.333333pt;}
.ycf{bottom:233.202667pt;}
.y42{bottom:234.200000pt;}
.y71{bottom:239.000000pt;}
.y9f{bottom:240.004000pt;}
.y13{bottom:240.933333pt;}
.yf6{bottom:243.533333pt;}
.y11e{bottom:246.066667pt;}
.yce{bottom:248.268000pt;}
.y41{bottom:249.266667pt;}
.y70{bottom:254.066667pt;}
.y9e{bottom:255.004000pt;}
.y12{bottom:255.333333pt;}
.yf5{bottom:258.200000pt;}
.ycd{bottom:263.333333pt;}
.y40{bottom:264.266667pt;}
.y11d{bottom:265.266667pt;}
.y6f{bottom:268.800000pt;}
.y11{bottom:270.066667pt;}
.y9d{bottom:270.070667pt;}
.yf4{bottom:273.266667pt;}
.ycc{bottom:278.066667pt;}
.y11c{bottom:280.266667pt;}
.y9c{bottom:285.070667pt;}
.y10{bottom:285.133333pt;}
.ycb{bottom:293.066667pt;}
.y3f{bottom:294.066667pt;}
.yf3{bottom:296.933333pt;}
.y6e{bottom:298.933333pt;}
.y11b{bottom:299.466667pt;}
.y9b{bottom:299.804000pt;}
.yca{bottom:307.800000pt;}
.yf2{bottom:312.000000pt;}
.y6d{bottom:313.600000pt;}
.y11a{bottom:314.533333pt;}
.y9a{bottom:314.804000pt;}
.yf{bottom:315.201333pt;}
.yc9{bottom:322.866667pt;}
.y3e{bottom:323.800000pt;}
.y6c{bottom:328.266667pt;}
.y99{bottom:329.870667pt;}
.ye{bottom:329.934667pt;}
.y119{bottom:333.733333pt;}
.yf1{bottom:335.333333pt;}
.y6b{bottom:343.400000pt;}
.yd{bottom:344.934667pt;}
.y98{bottom:344.937333pt;}
.yc8{bottom:346.533333pt;}
.y118{bottom:348.800000pt;}
.yf0{bottom:350.400000pt;}
.y3d{bottom:353.601333pt;}
.y6a{bottom:358.400000pt;}
.yc{bottom:359.668000pt;}
.y97{bottom:359.669333pt;}
.yc7{bottom:361.600000pt;}
.y117{bottom:368.001333pt;}
.y3c{bottom:368.666667pt;}
.y69{bottom:373.400000pt;}
.yef{bottom:373.734667pt;}
.y96{bottom:374.402667pt;}
.yb{bottom:374.733333pt;}
.yc6{bottom:376.266667pt;}
.y116{bottom:382.668000pt;}
.y3b{bottom:383.666667pt;}
.yee{bottom:388.800000pt;}
.y95{bottom:389.468000pt;}
.ya{bottom:389.733333pt;}
.y68{bottom:397.404000pt;}
.y115{bottom:398.068000pt;}
.y3a{bottom:398.666667pt;}
.yc5{bottom:400.002667pt;}
.yed{bottom:403.800000pt;}
.y94{bottom:404.468000pt;}
.y67{bottom:411.802667pt;}
.y114{bottom:412.800000pt;}
.y39{bottom:413.400000pt;}
.yc4{bottom:414.669333pt;}
.y93{bottom:419.468000pt;}
.y9{bottom:419.800000pt;}
.y66{bottom:426.602667pt;}
.yec{bottom:427.200000pt;}
.yc3{bottom:429.736000pt;}
.y113{bottom:432.000000pt;}
.y92{bottom:434.533333pt;}
.y38{bottom:437.070667pt;}
.y65{bottom:441.602667pt;}
.yeb{bottom:442.534667pt;}
.yc2{bottom:444.801333pt;}
.y112{bottom:447.000000pt;}
.y37{bottom:451.802667pt;}
.y64{bottom:456.602667pt;}
.yea{bottom:457.266667pt;}
.y91{bottom:457.869333pt;}
.yc1{bottom:459.468000pt;}
.y111{bottom:465.869333pt;}
.y36{bottom:466.868000pt;}
.y63{bottom:471.402667pt;}
.ye9{bottom:472.000000pt;}
.y90{bottom:472.936000pt;}
.yc0{bottom:474.200000pt;}
.y110{bottom:480.868000pt;}
.y35{bottom:481.868000pt;}
.y8{bottom:486.400000pt;}
.y62{bottom:486.402667pt;}
.y8f{bottom:488.001333pt;}
.ye8{bottom:495.666667pt;}
.y10f{bottom:495.934667pt;}
.y34{bottom:496.601333pt;}
.ybf{bottom:498.537333pt;}
.y61{bottom:501.402667pt;}
.y8e{bottom:502.668000pt;}
.y7{bottom:503.000000pt;}
.y10e{bottom:511.001333pt;}
.y33{bottom:511.666667pt;}
.ybe{bottom:513.270667pt;}
.y60{bottom:516.468000pt;}
.y8d{bottom:517.801333pt;}
.ye7{bottom:519.333333pt;}
.y6{bottom:519.666667pt;}
.y10d{bottom:526.068000pt;}
.ybd{bottom:528.002667pt;}
.y5f{bottom:531.200000pt;}
.y8c{bottom:532.801333pt;}
.y32{bottom:535.338667pt;}
.y5{bottom:536.000000pt;}
.y10c{bottom:540.800000pt;}
.ybc{bottom:542.669333pt;}
.y8b{bottom:547.801333pt;}
.ye6{bottom:549.133333pt;}
.y31{bottom:550.005333pt;}
.y5e{bottom:554.868000pt;}
.ybb{bottom:557.736000pt;}
.y10b{bottom:560.266667pt;}
.y8a{bottom:562.601333pt;}
.y30{bottom:565.070667pt;}
.y5d{bottom:569.601333pt;}
.yba{bottom:572.402667pt;}
.y10a{bottom:575.000000pt;}
.y89{bottom:577.601333pt;}
.y2f{bottom:580.136000pt;}
.y5c{bottom:584.601333pt;}
.yb9{bottom:587.468000pt;}
.y109{bottom:589.733333pt;}
.y88{bottom:592.601333pt;}
.ye5{bottom:593.937333pt;}
.y2e{bottom:595.201333pt;}
.y5b{bottom:599.666667pt;}
.yb8{bottom:602.533333pt;}
.y87{bottom:607.333333pt;}
.ye4{bottom:608.937333pt;}
.y108{bottom:609.268000pt;}
.y2d{bottom:609.868000pt;}
.y5a{bottom:614.400000pt;}
.yb7{bottom:617.600000pt;}
.ye3{bottom:623.604000pt;}
.y107{bottom:624.000000pt;}
.y2c{bottom:624.934667pt;}
.y59{bottom:629.400000pt;}
.y86{bottom:630.673333pt;}
.yb6{bottom:632.600000pt;}
.ye2{bottom:638.669333pt;}
.y2b{bottom:639.666667pt;}
.y58{bottom:644.533333pt;}
.y85{bottom:646.073333pt;}
.yb5{bottom:647.733333pt;}
.ye1{bottom:653.734667pt;}
.y57{bottom:659.200000pt;}
.y84{bottom:661.073333pt;}
.yb4{bottom:662.400000pt;}
.y2a{bottom:663.337360pt;}
.y106{bottom:664.933333pt;}
.y4{bottom:666.534667pt;}
.ye0{bottom:668.800000pt;}
.y56{bottom:673.866667pt;}
.y83{bottom:675.805333pt;}
.yb3{bottom:677.066667pt;}
.y29{bottom:678.404027pt;}
.y82{bottom:690.872000pt;}
.y3{bottom:691.801333pt;}
.ydf{bottom:692.136000pt;}
.y28{bottom:693.069360pt;}
.y55{bottom:698.204000pt;}
.yb2{bottom:701.405333pt;}
.y81{bottom:705.872000pt;}
.yde{bottom:707.201333pt;}
.y27{bottom:708.202667pt;}
.y54{bottom:712.602667pt;}
.y12e{bottom:712.933333pt;}
.yb1{bottom:715.805333pt;}
.y2{bottom:719.000000pt;}
.y80{bottom:720.937333pt;}
.ydd{bottom:721.933333pt;}
.y26{bottom:723.202667pt;}
.y53{bottom:727.668000pt;}
.yb0{bottom:730.870667pt;}
.y12d{bottom:732.134667pt;}
.y7f{bottom:735.669333pt;}
.ydc{bottom:736.933333pt;}
.y25{bottom:738.202667pt;}
.y105{bottom:741.733333pt;}
.y52{bottom:742.400000pt;}
.yaf{bottom:745.870667pt;}
.y12c{bottom:746.866667pt;}
.y7e{bottom:750.401333pt;}
.ydb{bottom:751.733333pt;}
.y24{bottom:752.934667pt;}
.y104{bottom:756.466667pt;}
.y51{bottom:757.400000pt;}
.yae{bottom:760.602667pt;}
.y12b{bottom:761.866667pt;}
.y7d{bottom:765.468000pt;}
.yda{bottom:766.733333pt;}
.y23{bottom:768.000000pt;}
.yad{bottom:775.334667pt;}
.y103{bottom:780.134667pt;}
.y7c{bottom:780.468000pt;}
.y50{bottom:780.736000pt;}
.y12a{bottom:781.066667pt;}
.yd9{bottom:781.733333pt;}
.y22{bottom:782.666667pt;}
.yac{bottom:790.400000pt;}
.y102{bottom:795.200000pt;}
.y7b{bottom:795.468000pt;}
.y4f{bottom:795.801333pt;}
.y129{bottom:796.134667pt;}
.yab{bottom:805.400000pt;}
.y1{bottom:806.066667pt;}
.y101{bottom:809.866667pt;}
.y7a{bottom:810.200000pt;}
.y4e{bottom:810.866667pt;}
.yd8{bottom:811.533333pt;}
.y21{bottom:812.466667pt;}
.yaa{bottom:844.800000pt;}
.y100{bottom:849.266667pt;}
.y4d{bottom:850.200000pt;}
.y128{bottom:850.866667pt;}
.yd7{bottom:851.533333pt;}
.y20{bottom:852.800000pt;}
.h8{height:30.593750pt;}
.hc{height:34.023438pt;}
.hd{height:41.875000pt;}
.h9{height:47.109375pt;}
.hf{height:49.701823pt;}
.h6{height:49.726562pt;}
.he{height:49.993123pt;}
.h5{height:51.062500pt;}
.h7{height:52.843750pt;}
.h11{height:59.125000pt;}
.h2{height:68.013021pt;}
.h4{height:89.000000pt;}
.h3{height:94.562500pt;}
.ha{height:893.733333pt;}
.hb{height:894.000000pt;}
.h10{height:895.333333pt;}
.h0{height:895.666667pt;}
.h1{height:896.000000pt;}
.w2{width:596.666667pt;}
.w1{width:596.800000pt;}
.w3{width:597.133333pt;}
.w4{width:597.333333pt;}
.w5{width:599.333333pt;}
.w0{width:600.000000pt;}
.x0{left:0.000000pt;}
.x27{left:23.066680pt;}
.x26{left:24.333333pt;}
.x25{left:25.600000pt;}
.x36{left:31.066667pt;}
.x32{left:32.000000pt;}
.x2f{left:32.933467pt;}
.x30{left:34.266800pt;}
.x1d{left:35.198667pt;}
.x1b{left:36.134667pt;}
.x19{left:37.134667pt;}
.x17{left:38.066667pt;}
.xb{left:39.333333pt;}
.xc{left:40.333333pt;}
.x9{left:41.266667pt;}
.x8{left:42.266667pt;}
.x2{left:43.200000pt;}
.x3{left:44.480000pt;}
.x1{left:45.466667pt;}
.x35{left:49.266667pt;}
.x34{left:50.266667pt;}
.x33{left:51.200000pt;}
.x1c{left:54.398667pt;}
.x1a{left:55.333333pt;}
.x18{left:56.333333pt;}
.xa{left:59.866667pt;}
.x22{left:64.000000pt;}
.x21{left:65.600000pt;}
.x14{left:67.533333pt;}
.x12{left:68.466667pt;}
.x39{left:70.732000pt;}
.x2c{left:71.666667pt;}
.x2a{left:72.666667pt;}
.x20{left:82.266667pt;}
.x13{left:86.066667pt;}
.x3a{left:88.665333pt;}
.x2b{left:89.933333pt;}
.x24{left:165.733333pt;}
.x2e{left:172.800000pt;}
.x16{left:178.253333pt;}
.x1f{left:203.866667pt;}
.x11{left:208.333333pt;}
.x38{left:210.253333pt;}
.x29{left:211.866667pt;}
.x31{left:239.333333pt;}
.x28{left:256.920000pt;}
.x37{left:265.253333pt;}
.x1e{left:269.733333pt;}
.x10{left:274.533333pt;}
.x23{left:298.253333pt;}
.x15{left:301.466667pt;}
.x3b{left:304.000000pt;}
.x2d{left:305.920000pt;}
.x4{left:360.933333pt;}
.x6{left:393.253467pt;}
.x5{left:395.186667pt;}
.x7{left:396.798533pt;}
.xe{left:425.933333pt;}
.xf{left:431.066667pt;}
.xd{left:440.333333pt;}
}

