
    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_b12e89e76765c755a8623b57.woff')format("woff");}.ff1{font-family:ff1;line-height:0.693359;font-style:normal;font-weight: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_fb7e95f5822ac24140eb2ff3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight: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_130301694ab792f9947e2b7d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.739746;font-style:normal;font-weight: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_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight: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_3810b4594ec881cb1437cb71.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight: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_70fb2c4ea7080fee82bb8d39.woff')format("woff");}.ff6{font-family:ff6;line-height:1.172852;font-style:normal;font-weight: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_0382f97516e0a8a595fafa74.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight: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_23ba9a4582761f6c5cff696a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight: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_f4faf429f40f28bc9563f55e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight: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_283fd78b028459264d37a500.woff')format("woff");}.ffa{font-family:ffa;line-height:0.853027;font-style:normal;font-weight: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_4638587fac5b416e381617c1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.738770;font-style:normal;font-weight: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_4828003588cb88c80e12ad3b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.983398;font-style:normal;font-weight: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_6ed85fcf6ca014031504768c.woff')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight: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_6606d105aba232922aaa3479.woff')format("woff");}.ffe{font-family:ffe;line-height:0.962402;font-style:normal;font-weight: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_de458cd1089cd41571a813d7.woff')format("woff");}.fff{font-family:fff;line-height:0.941406;font-style:normal;font-weight: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_b7b46cff65c0a7fb804fc447.woff')format("woff");}.ff10{font-family:ff10;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_3fafd33bb9bc13eebb46a9af.woff')format("woff");}.ff11{font-family:ff11;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_0700ff4c95d212e56a209e20.woff')format("woff");}.ff12{font-family:ff12;line-height:0.962402;font-style:normal;font-weight: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_6e38a90b56871c73641163c4.woff')format("woff");}.ff13{font-family:ff13;line-height:0.941406;font-style:normal;font-weight: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_859c72d942ed727e728fa5e8.woff')format("woff");}.ff14{font-family:ff14;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_0bfd9e799af4be000041f182.woff')format("woff");}.ff15{font-family:ff15;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-27.360000px;}
.v2{vertical-align:-5.760000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.880000px;}
.v4{vertical-align:5.760000px;}
.v5{vertical-align:18.000000px;}
.v1{vertical-align:27.360000px;}
.ls8{letter-spacing:-2.160000px;}
.ls1a{letter-spacing:-1.440000px;}
.ls18{letter-spacing:-0.972000px;}
.ls6{letter-spacing:-0.720000px;}
.ls30{letter-spacing:-0.612000px;}
.ls14{letter-spacing:-0.576000px;}
.ls4{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.463800px;}
.lsd{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.259800px;}
.ls9{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.207600px;}
.ls25{letter-spacing:-0.206400px;}
.lsc{letter-spacing:-0.144000px;}
.ls23{letter-spacing:-0.106800px;}
.ls26{letter-spacing:-0.053280px;}
.ls1b{letter-spacing:-0.034560px;}
.ls31{letter-spacing:-0.018000px;}
.ls2d{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.004320px;}
.ls2b{letter-spacing:0.012960px;}
.ls1d{letter-spacing:0.031680px;}
.ls2c{letter-spacing:0.053280px;}
.ls21{letter-spacing:0.066720px;}
.lse{letter-spacing:0.072000px;}
.ls1e{letter-spacing:0.074880px;}
.ls2f{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.152640px;}
.ls1c{letter-spacing:0.188640px;}
.lsa{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.256200px;}
.ls20{letter-spacing:0.259920px;}
.ls15{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.312000px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.540000px;}
.ls2e{letter-spacing:0.666000px;}
.ls27{letter-spacing:0.702720px;}
.ls28{letter-spacing:0.711360px;}
.ls12{letter-spacing:0.720000px;}
.ls16{letter-spacing:0.936000px;}
.ls29{letter-spacing:0.979920px;}
.ls1{letter-spacing:1.080000px;}
.ls17{letter-spacing:3.749760px;}
.ls11{letter-spacing:12.240000px;}
.ls5{letter-spacing:14.580000px;}
.ls2{letter-spacing:33.960000px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws1a{word-spacing:-22.705920px;}
.ws21{word-spacing:-21.024000px;}
.wsd{word-spacing:-18.936000px;}
.wsa{word-spacing:-18.720000px;}
.wsc{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.wsb{word-spacing:-17.424000px;}
.ws1e{word-spacing:-17.279280px;}
.ws19{word-spacing:-16.666560px;}
.ws14{word-spacing:-16.613280px;}
.ws9{word-spacing:-16.560000px;}
.ws16{word-spacing:-16.506480px;}
.ws18{word-spacing:-16.406880px;}
.ws15{word-spacing:-16.353480px;}
.wse{word-spacing:-15.226440px;}
.ws11{word-spacing:-15.001920px;}
.ws1f{word-spacing:-14.994000px;}
.wsf{word-spacing:-14.970240px;}
.ws10{word-spacing:-14.935680px;}
.ws12{word-spacing:-14.762640px;}
.ws4{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.520000px;}
.ws1d{word-spacing:-10.821600px;}
.ws1c{word-spacing:-10.812960px;}
.ws17{word-spacing:-10.808640px;}
.ws1b{word-spacing:-10.800000px;}
.ws20{word-spacing:-10.008000px;}
.ws2{word-spacing:0.000000px;}
._17{margin-left:-4.824000px;}
._6{margin-left:-3.672000px;}
._7{margin-left:-2.448000px;}
._2{margin-left:-1.080000px;}
._1{width:1.392000px;}
._b{width:3.096000px;}
._a{width:5.040000px;}
._9{width:6.336000px;}
._e{width:7.392000px;}
._11{width:9.264000px;}
._4{width:10.728000px;}
._c{width:12.024000px;}
._5{width:13.536000px;}
._8{width:15.132000px;}
._14{width:16.164000px;}
._19{width:17.378880px;}
._0{width:19.152000px;}
._3{width:20.736000px;}
._12{width:22.032000px;}
._13{width:23.112000px;}
._d{width:24.264000px;}
._f{width:25.392000px;}
._18{width:26.952000px;}
._16{width:32.772000px;}
._15{width:34.128000px;}
._10{width:846.144000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs1{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y185{bottom:3.060000px;}
.y154{bottom:3.240000px;}
.y152{bottom:5.940000px;}
.y174{bottom:7.200000px;}
.y171{bottom:7.380000px;}
.y155{bottom:8.640000px;}
.y164{bottom:11.520000px;}
.y162{bottom:11.700000px;}
.y15f{bottom:11.880000px;}
.y184{bottom:18.570000px;}
.y16c{bottom:20.520000px;}
.y160{bottom:20.565000px;}
.y183{bottom:34.050000px;}
.y16b{bottom:37.800000px;}
.y182{bottom:49.530000px;}
.y16a{bottom:54.930000px;}
.y27{bottom:57.600000px;}
.y181{bottom:65.190000px;}
.y169{bottom:72.210000px;}
.y26{bottom:77.580000px;}
.y180{bottom:80.670000px;}
.y168{bottom:89.490000px;}
.y17f{bottom:96.150000px;}
.y167{bottom:106.770000px;}
.y17e{bottom:111.630000px;}
.yef{bottom:116.460000px;}
.y46{bottom:117.180000px;}
.y166{bottom:124.050000px;}
.y6f{bottom:128.520000px;}
.y99{bottom:130.140000px;}
.ye1{bottom:131.040000px;}
.y64{bottom:137.520000px;}
.yb0{bottom:145.260000px;}
.y11a{bottom:145.800000px;}
.yee{bottom:147.780000px;}
.y45{bottom:148.140000px;}
.y7b{bottom:153.180000px;}
.y6e{bottom:159.840000px;}
.y98{bottom:161.280000px;}
.ye0{bottom:162.180000px;}
.y119{bottom:165.780000px;}
.y63{bottom:168.660000px;}
.yaf{bottom:176.220000px;}
.yed{bottom:179.280000px;}
.y7a{bottom:184.140000px;}
.y118{bottom:185.940000px;}
.y6d{bottom:191.160000px;}
.y97{bottom:192.240000px;}
.ydf{bottom:193.170000px;}
.y44{bottom:194.250000px;}
.y62{bottom:199.650000px;}
.y117{bottom:206.130000px;}
.yae{bottom:207.390000px;}
.yec{bottom:210.270000px;}
.y79{bottom:215.310000px;}
.y6c{bottom:222.330000px;}
.y96{bottom:223.410000px;}
.yde{bottom:224.310000px;}
.y43{bottom:225.390000px;}
.y116{bottom:226.290000px;}
.y61{bottom:230.790000px;}
.yad{bottom:238.350000px;}
.y78{bottom:246.270000px;}
.y115{bottom:246.450000px;}
.y6b{bottom:253.290000px;}
.ycb{bottom:254.370000px;}
.ydd{bottom:255.270000px;}
.y42{bottom:256.350000px;}
.y60{bottom:261.750000px;}
.y95{bottom:266.430000px;}
.y114{bottom:266.610000px;}
.yac{bottom:269.490000px;}
.y77{bottom:277.410000px;}
.y6a{bottom:284.430000px;}
.yca{bottom:285.510000px;}
.ydc{bottom:286.410000px;}
.y113{bottom:286.770000px;}
.y41{bottom:287.490000px;}
.y5f{bottom:292.890000px;}
.yab{bottom:300.450000px;}
.y142{bottom:301.890000px;}
.yeb{bottom:302.430000px;}
.y112{bottom:306.930000px;}
.y76{bottom:308.370000px;}
.y94{bottom:309.450000px;}
.y69{bottom:315.390000px;}
.yc9{bottom:316.470000px;}
.ydb{bottom:317.370000px;}
.y40{bottom:318.450000px;}
.y5e{bottom:323.850000px;}
.y111{bottom:327.090000px;}
.yea{bottom:333.390000px;}
.y141{bottom:335.010000px;}
.y75{bottom:339.510000px;}
.yaa{bottom:343.470000px;}
.y68{bottom:346.530000px;}
.y110{bottom:347.070000px;}
.yc8{bottom:347.610000px;}
.yda{bottom:348.510000px;}
.y3f{bottom:349.590000px;}
.y93{bottom:352.470000px;}
.y5d{bottom:354.810000px;}
.y140{bottom:355.170000px;}
.ye9{bottom:364.530000px;}
.y10f{bottom:367.230000px;}
.y74{bottom:370.470000px;}
.y13f{bottom:375.330000px;}
.y67{bottom:377.490000px;}
.yd9{bottom:379.470000px;}
.y3e{bottom:380.550000px;}
.y92{bottom:383.610000px;}
.y5c{bottom:385.950000px;}
.ya9{bottom:386.490000px;}
.y10e{bottom:387.390000px;}
.yc7{bottom:393.510000px;}
.ye8{bottom:395.490000px;}
.y73{bottom:401.610000px;}
.y16d{bottom:403.455000px;}
.y10d{bottom:407.550000px;}
.yd8{bottom:410.610000px;}
.y3d{bottom:411.510000px;}
.y91{bottom:414.570000px;}
.y13e{bottom:415.650000px;}
.y165{bottom:416.055000px;}
.y25{bottom:420.510000px;}
.yc6{bottom:424.650000px;}
.ye7{bottom:426.630000px;}
.y10c{bottom:427.710000px;}
.y5b{bottom:428.970000px;}
.ya8{bottom:429.510000px;}
.y10{bottom:431.535000px;}
.y72{bottom:432.615000px;}
.y13d{bottom:435.855000px;}
.y90{bottom:445.755000px;}
.y10b{bottom:447.915000px;}
.y24{bottom:451.695000px;}
.yc5{bottom:455.655000px;}
.y13c{bottom:456.015000px;}
.yd7{bottom:456.555000px;}
.y3c{bottom:457.635000px;}
.ya7{bottom:460.695000px;}
.y66{bottom:463.755000px;}
.y10a{bottom:468.075000px;}
.y5a{bottom:472.035000px;}
.ye6{bottom:472.755000px;}
.y13b{bottom:476.175000px;}
.y8f{bottom:476.715000px;}
.yf{bottom:484.995000px;}
.yc4{bottom:486.795000px;}
.yd6{bottom:487.695000px;}
.y109{bottom:488.235000px;}
.y3b{bottom:488.775000px;}
.ya6{bottom:491.655000px;}
.y23{bottom:494.715000px;}
.y13a{bottom:496.335000px;}
.y150{bottom:501.735000px;}
.ye5{bottom:503.715000px;}
.y8e{bottom:507.855000px;}
.y108{bottom:508.395000px;}
.y139{bottom:516.315000px;}
.yc3{bottom:517.755000px;}
.y59{bottom:518.115000px;}
.yd5{bottom:518.655000px;}
.y3a{bottom:519.735000px;}
.ya5{bottom:522.795000px;}
.y22{bottom:525.855000px;}
.y107{bottom:528.555000px;}
.ye4{bottom:534.855000px;}
.y138{bottom:536.475000px;}
.ye{bottom:538.275000px;}
.y8d{bottom:538.815000px;}
.y14f{bottom:544.755000px;}
.y106{bottom:548.535000px;}
.yc2{bottom:548.895000px;}
.y58{bottom:549.255000px;}
.yd4{bottom:549.795000px;}
.y39{bottom:550.875000px;}
.ya4{bottom:553.755000px;}
.y163{bottom:554.865000px;}
.y137{bottom:556.635000px;}
.y21{bottom:556.815000px;}
.ya3{bottom:560.595000px;}
.ye3{bottom:565.815000px;}
.y105{bottom:568.695000px;}
.y8c{bottom:569.955000px;}
.y14e{bottom:575.895000px;}
.y136{bottom:576.795000px;}
.yd{bottom:579.675000px;}
.yc1{bottom:579.855000px;}
.y57{bottom:580.215000px;}
.yd3{bottom:580.755000px;}
.y38{bottom:581.835000px;}
.ya2{bottom:584.895000px;}
.yc0{bottom:586.695000px;}
.y20{bottom:587.955000px;}
.y104{bottom:588.855000px;}
.y161{bottom:588.885000px;}
.ye2{bottom:596.955000px;}
.y8b{bottom:600.915000px;}
.y14d{bottom:606.855000px;}
.y103{bottom:609.015000px;}
.ybf{bottom:610.995000px;}
.y56{bottom:611.355000px;}
.yd2{bottom:611.895000px;}
.y37{bottom:612.975000px;}
.ya1{bottom:615.855000px;}
.y135{bottom:617.115000px;}
.y1f{bottom:618.915000px;}
.y15e{bottom:623.625000px;}
.y102{bottom:629.175000px;}
.y8a{bottom:632.055000px;}
.yc{bottom:633.135000px;}
.y187{bottom:635.835000px;}
.y134{bottom:637.275000px;}
.y14c{bottom:637.995000px;}
.ybe{bottom:641.955000px;}
.y55{bottom:642.315000px;}
.yd1{bottom:642.855000px;}
.y36{bottom:643.935000px;}
.ya0{bottom:646.995000px;}
.y101{bottom:649.335000px;}
.y1e{bottom:650.055000px;}
.y186{bottom:651.315000px;}
.y133{bottom:657.435000px;}
.y15d{bottom:658.950000px;}
.y89{bottom:663.015000px;}
.y17d{bottom:663.915000px;}
.y14b{bottom:668.985000px;}
.y100{bottom:669.525000px;}
.ybd{bottom:673.125000px;}
.y54{bottom:673.485000px;}
.yd0{bottom:674.025000px;}
.y35{bottom:675.105000px;}
.y15c{bottom:676.230000px;}
.y132{bottom:677.625000px;}
.y9f{bottom:677.985000px;}
.y1d{bottom:681.045000px;}
.yb{bottom:686.445000px;}
.yff{bottom:689.685000px;}
.y15b{bottom:693.510000px;}
.y88{bottom:694.185000px;}
.y131{bottom:697.785000px;}
.y14a{bottom:700.125000px;}
.ybc{bottom:704.085000px;}
.y53{bottom:704.445000px;}
.ycf{bottom:704.985000px;}
.y34{bottom:706.065000px;}
.y9e{bottom:709.125000px;}
.yfe{bottom:709.845000px;}
.y15a{bottom:711.510000px;}
.y1c{bottom:712.185000px;}
.y130{bottom:717.765000px;}
.y87{bottom:725.145000px;}
.y159{bottom:728.790000px;}
.yfd{bottom:730.005000px;}
.y149{bottom:731.085000px;}
.ybb{bottom:735.225000px;}
.y52{bottom:735.405000px;}
.yce{bottom:736.125000px;}
.y12f{bottom:737.925000px;}
.ya{bottom:739.905000px;}
.y9d{bottom:740.085000px;}
.y1b{bottom:743.145000px;}
.y158{bottom:745.890000px;}
.yfc{bottom:749.985000px;}
.y33{bottom:752.145000px;}
.y12e{bottom:758.085000px;}
.y148{bottom:762.225000px;}
.y157{bottom:763.170000px;}
.yba{bottom:766.185000px;}
.y51{bottom:766.545000px;}
.ycd{bottom:767.085000px;}
.y86{bottom:768.165000px;}
.yfb{bottom:770.145000px;}
.y1a{bottom:774.105000px;}
.y12d{bottom:778.245000px;}
.y156{bottom:780.450000px;}
.y9{bottom:781.305000px;}
.y32{bottom:783.105000px;}
.y9c{bottom:786.165000px;}
.y17c{bottom:789.045000px;}
.yfa{bottom:790.305000px;}
.y147{bottom:793.185000px;}
.yb9{bottom:797.325000px;}
.y50{bottom:797.505000px;}
.ycc{bottom:798.225000px;}
.y12c{bottom:798.405000px;}
.y153{bottom:798.450000px;}
.y19{bottom:805.245000px;}
.yf9{bottom:810.465000px;}
.y85{bottom:811.185000px;}
.y31{bottom:814.245000px;}
.y17b{bottom:814.425000px;}
.y151{bottom:816.480000px;}
.y12b{bottom:818.565000px;}
.y8{bottom:822.705000px;}
.y146{bottom:824.325000px;}
.y4f{bottom:828.645000px;}
.y9b{bottom:829.185000px;}
.yf8{bottom:830.625000px;}
.y18{bottom:836.205000px;}
.y12a{bottom:838.725000px;}
.y17a{bottom:839.985000px;}
.y84{bottom:842.325000px;}
.yb8{bottom:843.405000px;}
.y30{bottom:845.205000px;}
.y71{bottom:848.265000px;}
.yf7{bottom:850.785000px;}
.y145{bottom:855.285000px;}
.y129{bottom:858.885000px;}
.y4e{bottom:859.605000px;}
.y9a{bottom:860.325000px;}
.y179{bottom:865.545000px;}
.y17{bottom:867.345000px;}
.yf6{bottom:870.945000px;}
.y83{bottom:873.285000px;}
.y7{bottom:876.165000px;}
.y2f{bottom:876.345000px;}
.y128{bottom:879.045000px;}
.yb7{bottom:886.425000px;}
.y4d{bottom:890.925000px;}
.yf5{bottom:891.105000px;}
.y70{bottom:891.285000px;}
.y16{bottom:898.305000px;}
.y127{bottom:899.025000px;}
.y82{bottom:904.425000px;}
.y2e{bottom:907.350000px;}
.yf4{bottom:911.310000px;}
.y178{bottom:916.530000px;}
.yb6{bottom:917.430000px;}
.y6{bottom:917.610000px;}
.y126{bottom:919.230000px;}
.y4c{bottom:922.470000px;}
.y15{bottom:929.490000px;}
.yf3{bottom:931.470000px;}
.y81{bottom:935.430000px;}
.y2d{bottom:938.490000px;}
.y125{bottom:939.390000px;}
.y177{bottom:942.090000px;}
.yb5{bottom:948.570000px;}
.yf2{bottom:951.450000px;}
.y4b{bottom:953.430000px;}
.y124{bottom:959.550000px;}
.y14{bottom:960.450000px;}
.y80{bottom:966.570000px;}
.y176{bottom:967.470000px;}
.y2c{bottom:969.450000px;}
.y5{bottom:970.890000px;}
.yf1{bottom:971.610000px;}
.y65{bottom:972.510000px;}
.yb4{bottom:979.530000px;}
.y123{bottom:979.710000px;}
.y4a{bottom:984.570000px;}
.y13{bottom:991.590000px;}
.y175{bottom:993.030000px;}
.y7f{bottom:997.530000px;}
.y122{bottom:999.870000px;}
.y2b{bottom:1000.590000px;}
.y144{bottom:1003.650000px;}
.yb3{bottom:1010.670000px;}
.y4{bottom:1012.290000px;}
.y49{bottom:1015.530000px;}
.yf0{bottom:1016.610000px;}
.y173{bottom:1018.590000px;}
.y121{bottom:1020.030000px;}
.y12{bottom:1022.550000px;}
.y7e{bottom:1028.670000px;}
.y2a{bottom:1031.550000px;}
.y143{bottom:1034.610000px;}
.y120{bottom:1040.190000px;}
.y172{bottom:1043.970000px;}
.y48{bottom:1046.670000px;}
.yb2{bottom:1053.690000px;}
.y7d{bottom:1059.630000px;}
.y11f{bottom:1060.350000px;}
.y29{bottom:1062.690000px;}
.y3{bottom:1065.750000px;}
.y170{bottom:1069.530000px;}
.y47{bottom:1077.630000px;}
.y11e{bottom:1080.510000px;}
.y7c{bottom:1090.590000px;}
.y28{bottom:1093.650000px;}
.y16f{bottom:1095.810000px;}
.yb1{bottom:1096.710000px;}
.y11d{bottom:1100.490000px;}
.y2{bottom:1108.770000px;}
.y11c{bottom:1120.650000px;}
.y16e{bottom:1131.090000px;}
.y11{bottom:1139.730000px;}
.y1{bottom:1139.910000px;}
.y11b{bottom:1140.810000px;}
.h15{height:17.100000px;}
.h14{height:17.280000px;}
.h11{height:17.316000px;}
.hf{height:22.500000px;}
.h1e{height:25.380000px;}
.h1b{height:25.416000px;}
.h1d{height:25.560000px;}
.h1f{height:25.596000px;}
.hc{height:33.683203px;}
.h18{height:34.020000px;}
.h1c{height:34.380000px;}
.h16{height:34.596000px;}
.h1a{height:37.494141px;}
.h21{height:39.471680px;}
.h12{height:43.506914px;}
.h13{height:43.681992px;}
.h22{height:44.314453px;}
.h23{height:44.434453px;}
.h10{height:44.936719px;}
.h17{height:46.419609px;}
.h2{height:48.796875px;}
.h8{height:50.273438px;}
.h7{height:50.800781px;}
.h3{height:52.066406px;}
.h5{height:52.417969px;}
.h9{height:59.343750px;}
.hb{height:60.679688px;}
.ha{height:61.043203px;}
.h4{height:62.244492px;}
.h6{height:65.884219px;}
.h20{height:124.236000px;}
.h19{height:242.175000px;}
.hd{height:892.980000px;}
.he{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:12.060000px;}
.w1b{width:95.256000px;}
.w1f{width:95.796000px;}
.w9{width:99.180000px;}
.w8{width:99.396000px;}
.w17{width:101.736000px;}
.wa{width:109.260000px;}
.wb{width:109.296000px;}
.wc{width:109.440000px;}
.wd{width:111.816000px;}
.w15{width:116.856000px;}
.w13{width:117.000000px;}
.w16{width:117.900000px;}
.w10{width:124.596000px;}
.w12{width:127.656000px;}
.w1c{width:128.016000px;}
.w20{width:130.176000px;}
.w1d{width:146.160000px;}
.w14{width:159.510000px;}
.w11{width:161.850000px;}
.w1a{width:162.210000px;}
.w7{width:174.090000px;}
.w1e{width:225.930000px;}
.w19{width:757.800000px;}
.wf{width:857.670000px;}
.w21{width:892.500000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w6{width:1031.760000px;}
.w18{width:1262.879981px;}
.w4{width:1262.880000px;}
.w5{width:1263.000000px;}
.x0{left:0.000000px;}
.xa{left:5.220000px;}
.x42{left:6.660000px;}
.x40{left:9.180000px;}
.x20{left:10.440000px;}
.x26{left:12.096000px;}
.x32{left:13.320000px;}
.xd{left:14.580000px;}
.x21{left:15.690000px;}
.x22{left:16.740000px;}
.x34{left:18.000000px;}
.x10{left:19.620000px;}
.x16{left:20.880000px;}
.x43{left:22.320000px;}
.x2f{left:24.120000px;}
.x36{left:25.560000px;}
.x1b{left:26.640000px;}
.x31{left:30.060000px;}
.x1c{left:31.680000px;}
.x1d{left:32.940000px;}
.x3f{left:34.056000px;}
.x39{left:35.505000px;}
.x29{left:36.540000px;}
.x3e{left:37.620000px;}
.x18{left:39.456000px;}
.x33{left:41.760000px;}
.x35{left:46.440000px;}
.x3b{left:47.700000px;}
.xb{left:49.170000px;}
.x23{left:54.540000px;}
.x24{left:55.830000px;}
.x1e{left:62.130000px;}
.x2b{left:68.040000px;}
.x1a{left:69.150000px;}
.x7{left:75.239973px;}
.x5{left:83.699973px;}
.x1f{left:86.970000px;}
.x3{left:92.195973px;}
.x44{left:93.635987px;}
.x4{left:100.655987px;}
.x9{left:109.980000px;}
.x25{left:115.200000px;}
.x1{left:127.655987px;}
.x2{left:154.649987px;}
.x37{left:156.990000px;}
.x38{left:229.890000px;}
.x27{left:277.050000px;}
.xc{left:284.070000px;}
.x3a{left:325.155000px;}
.xe{left:383.475000px;}
.x28{left:404.535000px;}
.x19{left:428.655000px;}
.x3c{left:453.345000px;}
.xf{left:482.655000px;}
.x2a{left:521.535000px;}
.x11{left:591.915000px;}
.x3d{left:599.550000px;}
.x2c{left:681.045000px;}
.x41{left:695.310000px;}
.x12{left:701.205000px;}
.x8{left:748.769987px;}
.x6{left:757.229987px;}
.x2d{left:798.045000px;}
.x13{left:810.645000px;}
.x2e{left:915.090000px;}
.x14{left:919.950000px;}
.x15{left:1029.210000px;}
.x30{left:1032.990000px;}
.x17{left:1141.020000px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v2{vertical-align:-5.120000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.560000pt;}
.v4{vertical-align:5.120000pt;}
.v5{vertical-align:16.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls8{letter-spacing:-1.920000pt;}
.ls1a{letter-spacing:-1.280000pt;}
.ls18{letter-spacing:-0.864000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls30{letter-spacing:-0.544000pt;}
.ls14{letter-spacing:-0.512000pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.412267pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.230933pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.184533pt;}
.ls25{letter-spacing:-0.183467pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls23{letter-spacing:-0.094933pt;}
.ls26{letter-spacing:-0.047360pt;}
.ls1b{letter-spacing:-0.030720pt;}
.ls31{letter-spacing:-0.016000pt;}
.ls2d{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.003840pt;}
.ls2b{letter-spacing:0.011520pt;}
.ls1d{letter-spacing:0.028160pt;}
.ls2c{letter-spacing:0.047360pt;}
.ls21{letter-spacing:0.059307pt;}
.lse{letter-spacing:0.064000pt;}
.ls1e{letter-spacing:0.066560pt;}
.ls2f{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.135680pt;}
.ls1c{letter-spacing:0.167680pt;}
.lsa{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.227733pt;}
.ls20{letter-spacing:0.231040pt;}
.ls15{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.277333pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.480000pt;}
.ls2e{letter-spacing:0.592000pt;}
.ls27{letter-spacing:0.624640pt;}
.ls28{letter-spacing:0.632320pt;}
.ls12{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.832000pt;}
.ls29{letter-spacing:0.871040pt;}
.ls1{letter-spacing:0.960000pt;}
.ls17{letter-spacing:3.333120pt;}
.ls11{letter-spacing:10.880000pt;}
.ls5{letter-spacing:12.960000pt;}
.ls2{letter-spacing:30.186667pt;}
.ws7{word-spacing:-64.000000pt;}
.ws1a{word-spacing:-20.183040pt;}
.ws21{word-spacing:-18.688000pt;}
.wsd{word-spacing:-16.832000pt;}
.wsa{word-spacing:-16.640000pt;}
.wsc{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.wsb{word-spacing:-15.488000pt;}
.ws1e{word-spacing:-15.359360pt;}
.ws19{word-spacing:-14.814720pt;}
.ws14{word-spacing:-14.767360pt;}
.ws9{word-spacing:-14.720000pt;}
.ws16{word-spacing:-14.672427pt;}
.ws18{word-spacing:-14.583893pt;}
.ws15{word-spacing:-14.536427pt;}
.wse{word-spacing:-13.534613pt;}
.ws11{word-spacing:-13.335040pt;}
.ws1f{word-spacing:-13.328000pt;}
.wsf{word-spacing:-13.306880pt;}
.ws10{word-spacing:-13.276160pt;}
.ws12{word-spacing:-13.122347pt;}
.ws4{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.240000pt;}
.ws1d{word-spacing:-9.619200pt;}
.ws1c{word-spacing:-9.611520pt;}
.ws17{word-spacing:-9.607680pt;}
.ws1b{word-spacing:-9.600000pt;}
.ws20{word-spacing:-8.896000pt;}
.ws2{word-spacing:0.000000pt;}
._17{margin-left:-4.288000pt;}
._6{margin-left:-3.264000pt;}
._7{margin-left:-2.176000pt;}
._2{margin-left:-0.960000pt;}
._1{width:1.237333pt;}
._b{width:2.752000pt;}
._a{width:4.480000pt;}
._9{width:5.632000pt;}
._e{width:6.570667pt;}
._11{width:8.234667pt;}
._4{width:9.536000pt;}
._c{width:10.688000pt;}
._5{width:12.032000pt;}
._8{width:13.450667pt;}
._14{width:14.368000pt;}
._19{width:15.447893pt;}
._0{width:17.024000pt;}
._3{width:18.432000pt;}
._12{width:19.584000pt;}
._13{width:20.544000pt;}
._d{width:21.568000pt;}
._f{width:22.570667pt;}
._18{width:23.957333pt;}
._16{width:29.130667pt;}
._15{width:30.336000pt;}
._10{width:752.128000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y185{bottom:2.720000pt;}
.y154{bottom:2.880000pt;}
.y152{bottom:5.280000pt;}
.y174{bottom:6.400000pt;}
.y171{bottom:6.560000pt;}
.y155{bottom:7.680000pt;}
.y164{bottom:10.240000pt;}
.y162{bottom:10.400000pt;}
.y15f{bottom:10.560000pt;}
.y184{bottom:16.506667pt;}
.y16c{bottom:18.240000pt;}
.y160{bottom:18.280000pt;}
.y183{bottom:30.266667pt;}
.y16b{bottom:33.600000pt;}
.y182{bottom:44.026667pt;}
.y16a{bottom:48.826667pt;}
.y27{bottom:51.200000pt;}
.y181{bottom:57.946667pt;}
.y169{bottom:64.186667pt;}
.y26{bottom:68.960000pt;}
.y180{bottom:71.706667pt;}
.y168{bottom:79.546667pt;}
.y17f{bottom:85.466667pt;}
.y167{bottom:94.906667pt;}
.y17e{bottom:99.226667pt;}
.yef{bottom:103.520000pt;}
.y46{bottom:104.160000pt;}
.y166{bottom:110.266667pt;}
.y6f{bottom:114.240000pt;}
.y99{bottom:115.680000pt;}
.ye1{bottom:116.480000pt;}
.y64{bottom:122.240000pt;}
.yb0{bottom:129.120000pt;}
.y11a{bottom:129.600000pt;}
.yee{bottom:131.360000pt;}
.y45{bottom:131.680000pt;}
.y7b{bottom:136.160000pt;}
.y6e{bottom:142.080000pt;}
.y98{bottom:143.360000pt;}
.ye0{bottom:144.160000pt;}
.y119{bottom:147.360000pt;}
.y63{bottom:149.920000pt;}
.yaf{bottom:156.640000pt;}
.yed{bottom:159.360000pt;}
.y7a{bottom:163.680000pt;}
.y118{bottom:165.280000pt;}
.y6d{bottom:169.920000pt;}
.y97{bottom:170.880000pt;}
.ydf{bottom:171.706667pt;}
.y44{bottom:172.666667pt;}
.y62{bottom:177.466667pt;}
.y117{bottom:183.226667pt;}
.yae{bottom:184.346667pt;}
.yec{bottom:186.906667pt;}
.y79{bottom:191.386667pt;}
.y6c{bottom:197.626667pt;}
.y96{bottom:198.586667pt;}
.yde{bottom:199.386667pt;}
.y43{bottom:200.346667pt;}
.y116{bottom:201.146667pt;}
.y61{bottom:205.146667pt;}
.yad{bottom:211.866667pt;}
.y78{bottom:218.906667pt;}
.y115{bottom:219.066667pt;}
.y6b{bottom:225.146667pt;}
.ycb{bottom:226.106667pt;}
.ydd{bottom:226.906667pt;}
.y42{bottom:227.866667pt;}
.y60{bottom:232.666667pt;}
.y95{bottom:236.826667pt;}
.y114{bottom:236.986667pt;}
.yac{bottom:239.546667pt;}
.y77{bottom:246.586667pt;}
.y6a{bottom:252.826667pt;}
.yca{bottom:253.786667pt;}
.ydc{bottom:254.586667pt;}
.y113{bottom:254.906667pt;}
.y41{bottom:255.546667pt;}
.y5f{bottom:260.346667pt;}
.yab{bottom:267.066667pt;}
.y142{bottom:268.346667pt;}
.yeb{bottom:268.826667pt;}
.y112{bottom:272.826667pt;}
.y76{bottom:274.106667pt;}
.y94{bottom:275.066667pt;}
.y69{bottom:280.346667pt;}
.yc9{bottom:281.306667pt;}
.ydb{bottom:282.106667pt;}
.y40{bottom:283.066667pt;}
.y5e{bottom:287.866667pt;}
.y111{bottom:290.746667pt;}
.yea{bottom:296.346667pt;}
.y141{bottom:297.786667pt;}
.y75{bottom:301.786667pt;}
.yaa{bottom:305.306667pt;}
.y68{bottom:308.026667pt;}
.y110{bottom:308.506667pt;}
.yc8{bottom:308.986667pt;}
.yda{bottom:309.786667pt;}
.y3f{bottom:310.746667pt;}
.y93{bottom:313.306667pt;}
.y5d{bottom:315.386667pt;}
.y140{bottom:315.706667pt;}
.ye9{bottom:324.026667pt;}
.y10f{bottom:326.426667pt;}
.y74{bottom:329.306667pt;}
.y13f{bottom:333.626667pt;}
.y67{bottom:335.546667pt;}
.yd9{bottom:337.306667pt;}
.y3e{bottom:338.266667pt;}
.y92{bottom:340.986667pt;}
.y5c{bottom:343.066667pt;}
.ya9{bottom:343.546667pt;}
.y10e{bottom:344.346667pt;}
.yc7{bottom:349.786667pt;}
.ye8{bottom:351.546667pt;}
.y73{bottom:356.986667pt;}
.y16d{bottom:358.626667pt;}
.y10d{bottom:362.266667pt;}
.yd8{bottom:364.986667pt;}
.y3d{bottom:365.786667pt;}
.y91{bottom:368.506667pt;}
.y13e{bottom:369.466667pt;}
.y165{bottom:369.826667pt;}
.y25{bottom:373.786667pt;}
.yc6{bottom:377.466667pt;}
.ye7{bottom:379.226667pt;}
.y10c{bottom:380.186667pt;}
.y5b{bottom:381.306667pt;}
.ya8{bottom:381.786667pt;}
.y10{bottom:383.586667pt;}
.y72{bottom:384.546667pt;}
.y13d{bottom:387.426667pt;}
.y90{bottom:396.226667pt;}
.y10b{bottom:398.146667pt;}
.y24{bottom:401.506667pt;}
.yc5{bottom:405.026667pt;}
.y13c{bottom:405.346667pt;}
.yd7{bottom:405.826667pt;}
.y3c{bottom:406.786667pt;}
.ya7{bottom:409.506667pt;}
.y66{bottom:412.226667pt;}
.y10a{bottom:416.066667pt;}
.y5a{bottom:419.586667pt;}
.ye6{bottom:420.226667pt;}
.y13b{bottom:423.266667pt;}
.y8f{bottom:423.746667pt;}
.yf{bottom:431.106667pt;}
.yc4{bottom:432.706667pt;}
.yd6{bottom:433.506667pt;}
.y109{bottom:433.986667pt;}
.y3b{bottom:434.466667pt;}
.ya6{bottom:437.026667pt;}
.y23{bottom:439.746667pt;}
.y13a{bottom:441.186667pt;}
.y150{bottom:445.986667pt;}
.ye5{bottom:447.746667pt;}
.y8e{bottom:451.426667pt;}
.y108{bottom:451.906667pt;}
.y139{bottom:458.946667pt;}
.yc3{bottom:460.226667pt;}
.y59{bottom:460.546667pt;}
.yd5{bottom:461.026667pt;}
.y3a{bottom:461.986667pt;}
.ya5{bottom:464.706667pt;}
.y22{bottom:467.426667pt;}
.y107{bottom:469.826667pt;}
.ye4{bottom:475.426667pt;}
.y138{bottom:476.866667pt;}
.ye{bottom:478.466667pt;}
.y8d{bottom:478.946667pt;}
.y14f{bottom:484.226667pt;}
.y106{bottom:487.586667pt;}
.yc2{bottom:487.906667pt;}
.y58{bottom:488.226667pt;}
.yd4{bottom:488.706667pt;}
.y39{bottom:489.666667pt;}
.ya4{bottom:492.226667pt;}
.y163{bottom:493.213333pt;}
.y137{bottom:494.786667pt;}
.y21{bottom:494.946667pt;}
.ya3{bottom:498.306667pt;}
.ye3{bottom:502.946667pt;}
.y105{bottom:505.506667pt;}
.y8c{bottom:506.626667pt;}
.y14e{bottom:511.906667pt;}
.y136{bottom:512.706667pt;}
.yd{bottom:515.266667pt;}
.yc1{bottom:515.426667pt;}
.y57{bottom:515.746667pt;}
.yd3{bottom:516.226667pt;}
.y38{bottom:517.186667pt;}
.ya2{bottom:519.906667pt;}
.yc0{bottom:521.506667pt;}
.y20{bottom:522.626667pt;}
.y104{bottom:523.426667pt;}
.y161{bottom:523.453333pt;}
.ye2{bottom:530.626667pt;}
.y8b{bottom:534.146667pt;}
.y14d{bottom:539.426667pt;}
.y103{bottom:541.346667pt;}
.ybf{bottom:543.106667pt;}
.y56{bottom:543.426667pt;}
.yd2{bottom:543.906667pt;}
.y37{bottom:544.866667pt;}
.ya1{bottom:547.426667pt;}
.y135{bottom:548.546667pt;}
.y1f{bottom:550.146667pt;}
.y15e{bottom:554.333333pt;}
.y102{bottom:559.266667pt;}
.y8a{bottom:561.826667pt;}
.yc{bottom:562.786667pt;}
.y187{bottom:565.186667pt;}
.y134{bottom:566.466667pt;}
.y14c{bottom:567.106667pt;}
.ybe{bottom:570.626667pt;}
.y55{bottom:570.946667pt;}
.yd1{bottom:571.426667pt;}
.y36{bottom:572.386667pt;}
.ya0{bottom:575.106667pt;}
.y101{bottom:577.186667pt;}
.y1e{bottom:577.826667pt;}
.y186{bottom:578.946667pt;}
.y133{bottom:584.386667pt;}
.y15d{bottom:585.733333pt;}
.y89{bottom:589.346667pt;}
.y17d{bottom:590.146667pt;}
.y14b{bottom:594.653333pt;}
.y100{bottom:595.133333pt;}
.ybd{bottom:598.333333pt;}
.y54{bottom:598.653333pt;}
.yd0{bottom:599.133333pt;}
.y35{bottom:600.093333pt;}
.y15c{bottom:601.093333pt;}
.y132{bottom:602.333333pt;}
.y9f{bottom:602.653333pt;}
.y1d{bottom:605.373333pt;}
.yb{bottom:610.173333pt;}
.yff{bottom:613.053333pt;}
.y15b{bottom:616.453333pt;}
.y88{bottom:617.053333pt;}
.y131{bottom:620.253333pt;}
.y14a{bottom:622.333333pt;}
.ybc{bottom:625.853333pt;}
.y53{bottom:626.173333pt;}
.ycf{bottom:626.653333pt;}
.y34{bottom:627.613333pt;}
.y9e{bottom:630.333333pt;}
.yfe{bottom:630.973333pt;}
.y15a{bottom:632.453333pt;}
.y1c{bottom:633.053333pt;}
.y130{bottom:638.013333pt;}
.y87{bottom:644.573333pt;}
.y159{bottom:647.813333pt;}
.yfd{bottom:648.893333pt;}
.y149{bottom:649.853333pt;}
.ybb{bottom:653.533333pt;}
.y52{bottom:653.693333pt;}
.yce{bottom:654.333333pt;}
.y12f{bottom:655.933333pt;}
.ya{bottom:657.693333pt;}
.y9d{bottom:657.853333pt;}
.y1b{bottom:660.573333pt;}
.y158{bottom:663.013333pt;}
.yfc{bottom:666.653333pt;}
.y33{bottom:668.573333pt;}
.y12e{bottom:673.853333pt;}
.y148{bottom:677.533333pt;}
.y157{bottom:678.373333pt;}
.yba{bottom:681.053333pt;}
.y51{bottom:681.373333pt;}
.ycd{bottom:681.853333pt;}
.y86{bottom:682.813333pt;}
.yfb{bottom:684.573333pt;}
.y1a{bottom:688.093333pt;}
.y12d{bottom:691.773333pt;}
.y156{bottom:693.733333pt;}
.y9{bottom:694.493333pt;}
.y32{bottom:696.093333pt;}
.y9c{bottom:698.813333pt;}
.y17c{bottom:701.373333pt;}
.yfa{bottom:702.493333pt;}
.y147{bottom:705.053333pt;}
.yb9{bottom:708.733333pt;}
.y50{bottom:708.893333pt;}
.ycc{bottom:709.533333pt;}
.y12c{bottom:709.693333pt;}
.y153{bottom:709.733333pt;}
.y19{bottom:715.773333pt;}
.yf9{bottom:720.413333pt;}
.y85{bottom:721.053333pt;}
.y31{bottom:723.773333pt;}
.y17b{bottom:723.933333pt;}
.y151{bottom:725.760000pt;}
.y12b{bottom:727.613333pt;}
.y8{bottom:731.293333pt;}
.y146{bottom:732.733333pt;}
.y4f{bottom:736.573333pt;}
.y9b{bottom:737.053333pt;}
.yf8{bottom:738.333333pt;}
.y18{bottom:743.293333pt;}
.y12a{bottom:745.533333pt;}
.y17a{bottom:746.653333pt;}
.y84{bottom:748.733333pt;}
.yb8{bottom:749.693333pt;}
.y30{bottom:751.293333pt;}
.y71{bottom:754.013333pt;}
.yf7{bottom:756.253333pt;}
.y145{bottom:760.253333pt;}
.y129{bottom:763.453333pt;}
.y4e{bottom:764.093333pt;}
.y9a{bottom:764.733333pt;}
.y179{bottom:769.373333pt;}
.y17{bottom:770.973333pt;}
.yf6{bottom:774.173333pt;}
.y83{bottom:776.253333pt;}
.y7{bottom:778.813333pt;}
.y2f{bottom:778.973333pt;}
.y128{bottom:781.373333pt;}
.yb7{bottom:787.933333pt;}
.y4d{bottom:791.933333pt;}
.yf5{bottom:792.093333pt;}
.y70{bottom:792.253333pt;}
.y16{bottom:798.493333pt;}
.y127{bottom:799.133333pt;}
.y82{bottom:803.933333pt;}
.y2e{bottom:806.533333pt;}
.yf4{bottom:810.053333pt;}
.y178{bottom:814.693333pt;}
.yb6{bottom:815.493333pt;}
.y6{bottom:815.653333pt;}
.y126{bottom:817.093333pt;}
.y4c{bottom:819.973333pt;}
.y15{bottom:826.213333pt;}
.yf3{bottom:827.973333pt;}
.y81{bottom:831.493333pt;}
.y2d{bottom:834.213333pt;}
.y125{bottom:835.013333pt;}
.y177{bottom:837.413333pt;}
.yb5{bottom:843.173333pt;}
.yf2{bottom:845.733333pt;}
.y4b{bottom:847.493333pt;}
.y124{bottom:852.933333pt;}
.y14{bottom:853.733333pt;}
.y80{bottom:859.173333pt;}
.y176{bottom:859.973333pt;}
.y2c{bottom:861.733333pt;}
.y5{bottom:863.013333pt;}
.yf1{bottom:863.653333pt;}
.y65{bottom:864.453333pt;}
.yb4{bottom:870.693333pt;}
.y123{bottom:870.853333pt;}
.y4a{bottom:875.173333pt;}
.y13{bottom:881.413333pt;}
.y175{bottom:882.693333pt;}
.y7f{bottom:886.693333pt;}
.y122{bottom:888.773333pt;}
.y2b{bottom:889.413333pt;}
.y144{bottom:892.133333pt;}
.yb3{bottom:898.373333pt;}
.y4{bottom:899.813333pt;}
.y49{bottom:902.693333pt;}
.yf0{bottom:903.653333pt;}
.y173{bottom:905.413333pt;}
.y121{bottom:906.693333pt;}
.y12{bottom:908.933333pt;}
.y7e{bottom:914.373333pt;}
.y2a{bottom:916.933333pt;}
.y143{bottom:919.653333pt;}
.y120{bottom:924.613333pt;}
.y172{bottom:927.973333pt;}
.y48{bottom:930.373333pt;}
.yb2{bottom:936.613333pt;}
.y7d{bottom:941.893333pt;}
.y11f{bottom:942.533333pt;}
.y29{bottom:944.613333pt;}
.y3{bottom:947.333333pt;}
.y170{bottom:950.693333pt;}
.y47{bottom:957.893333pt;}
.y11e{bottom:960.453333pt;}
.y7c{bottom:969.413333pt;}
.y28{bottom:972.133333pt;}
.y16f{bottom:974.053333pt;}
.yb1{bottom:974.853333pt;}
.y11d{bottom:978.213333pt;}
.y2{bottom:985.573333pt;}
.y11c{bottom:996.133333pt;}
.y16e{bottom:1005.413333pt;}
.y11{bottom:1013.093333pt;}
.y1{bottom:1013.253333pt;}
.y11b{bottom:1014.053333pt;}
.h15{height:15.200000pt;}
.h14{height:15.360000pt;}
.h11{height:15.392000pt;}
.hf{height:20.000000pt;}
.h1e{height:22.560000pt;}
.h1b{height:22.592000pt;}
.h1d{height:22.720000pt;}
.h1f{height:22.752000pt;}
.hc{height:29.940625pt;}
.h18{height:30.240000pt;}
.h1c{height:30.560000pt;}
.h16{height:30.752000pt;}
.h1a{height:33.328125pt;}
.h21{height:35.085938pt;}
.h12{height:38.672812pt;}
.h13{height:38.828437pt;}
.h22{height:39.390625pt;}
.h23{height:39.497292pt;}
.h10{height:39.943750pt;}
.h17{height:41.261875pt;}
.h2{height:43.375000pt;}
.h8{height:44.687500pt;}
.h7{height:45.156250pt;}
.h3{height:46.281250pt;}
.h5{height:46.593750pt;}
.h9{height:52.750000pt;}
.hb{height:53.937500pt;}
.ha{height:54.260625pt;}
.h4{height:55.328437pt;}
.h6{height:58.563750pt;}
.h20{height:110.432000pt;}
.h19{height:215.266667pt;}
.hd{height:793.760000pt;}
.he{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:10.720000pt;}
.w1b{width:84.672000pt;}
.w1f{width:85.152000pt;}
.w9{width:88.160000pt;}
.w8{width:88.352000pt;}
.w17{width:90.432000pt;}
.wa{width:97.120000pt;}
.wb{width:97.152000pt;}
.wc{width:97.280000pt;}
.wd{width:99.392000pt;}
.w15{width:103.872000pt;}
.w13{width:104.000000pt;}
.w16{width:104.800000pt;}
.w10{width:110.752000pt;}
.w12{width:113.472000pt;}
.w1c{width:113.792000pt;}
.w20{width:115.712000pt;}
.w1d{width:129.920000pt;}
.w14{width:141.786667pt;}
.w11{width:143.866667pt;}
.w1a{width:144.186667pt;}
.w7{width:154.746667pt;}
.w1e{width:200.826667pt;}
.w19{width:673.600000pt;}
.wf{width:762.373333pt;}
.w21{width:793.333333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w6{width:917.120000pt;}
.w18{width:1122.559983pt;}
.w4{width:1122.560000pt;}
.w5{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xa{left:4.640000pt;}
.x42{left:5.920000pt;}
.x40{left:8.160000pt;}
.x20{left:9.280000pt;}
.x26{left:10.752000pt;}
.x32{left:11.840000pt;}
.xd{left:12.960000pt;}
.x21{left:13.946667pt;}
.x22{left:14.880000pt;}
.x34{left:16.000000pt;}
.x10{left:17.440000pt;}
.x16{left:18.560000pt;}
.x43{left:19.840000pt;}
.x2f{left:21.440000pt;}
.x36{left:22.720000pt;}
.x1b{left:23.680000pt;}
.x31{left:26.720000pt;}
.x1c{left:28.160000pt;}
.x1d{left:29.280000pt;}
.x3f{left:30.272000pt;}
.x39{left:31.560000pt;}
.x29{left:32.480000pt;}
.x3e{left:33.440000pt;}
.x18{left:35.072000pt;}
.x33{left:37.120000pt;}
.x35{left:41.280000pt;}
.x3b{left:42.400000pt;}
.xb{left:43.706667pt;}
.x23{left:48.480000pt;}
.x24{left:49.626667pt;}
.x1e{left:55.226667pt;}
.x2b{left:60.480000pt;}
.x1a{left:61.466667pt;}
.x7{left:66.879976pt;}
.x5{left:74.399976pt;}
.x1f{left:77.306667pt;}
.x3{left:81.951976pt;}
.x44{left:83.231988pt;}
.x4{left:89.471988pt;}
.x9{left:97.760000pt;}
.x25{left:102.400000pt;}
.x1{left:113.471988pt;}
.x2{left:137.466655pt;}
.x37{left:139.546667pt;}
.x38{left:204.346667pt;}
.x27{left:246.266667pt;}
.xc{left:252.506667pt;}
.x3a{left:289.026667pt;}
.xe{left:340.866667pt;}
.x28{left:359.586667pt;}
.x19{left:381.026667pt;}
.x3c{left:402.973333pt;}
.xf{left:429.026667pt;}
.x2a{left:463.586667pt;}
.x11{left:526.146667pt;}
.x3d{left:532.933333pt;}
.x2c{left:605.373333pt;}
.x41{left:618.053333pt;}
.x12{left:623.293333pt;}
.x8{left:665.573322pt;}
.x6{left:673.093322pt;}
.x2d{left:709.373333pt;}
.x13{left:720.573333pt;}
.x2e{left:813.413333pt;}
.x14{left:817.733333pt;}
.x15{left:914.853333pt;}
.x30{left:918.213333pt;}
.x17{left:1014.240000pt;}
}

