
    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_99146cbf5fa8354f6f245005.woff')format("woff");}.ff1{font-family:ff1;line-height:1.095703;font-style:normal;font-weight: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_164d7b9f8c411d8d15f1342d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;font-style:normal;font-weight: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_117d27071dee15690c4f9c1c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.093262;font-style:normal;font-weight: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_a9903c9fd41d9e5806c9d890.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight: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_45dfd6dfc6342a6be3bc9f91.woff')format("woff");}.ff5{font-family:ff5;line-height:1.102539;font-style:normal;font-weight: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_58ad4e48a6f62b26ecb61338.woff')format("woff");}.ff6{font-family:ff6;line-height:0.905762;font-style:normal;font-weight: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_20d09fd94805d2154dc23b69.woff')format("woff");}.ff7{font-family:ff7;line-height:0.900391;font-style:normal;font-weight: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_73c0e7e62e3bfc67c4e5dc70.woff')format("woff");}.ff8{font-family:ff8;line-height:1.126062;font-style:normal;font-weight: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_d55916cfa17c1420c2a73234.woff')format("woff");}.ff9{font-family:ff9;line-height:0.908203;font-style:normal;font-weight: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_9e64f5b4562ae8b1462eca25.woff')format("woff");}.ffa{font-family:ffa;line-height:0.893066;font-style:normal;font-weight: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_8ac0bf92194b824128f124ec.woff')format("woff");}.ffb{font-family:ffb;line-height:0.905115;font-style:normal;font-weight: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_7e26babaac7c5797a29a872a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.894531;font-style:normal;font-weight: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_a7ce5c1b7e4cd37e17c429bd.woff')format("woff");}.ffd{font-family:ffd;line-height:0.893555;font-style:normal;font-weight: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_0340f79e0bd3cf938906cb3b.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_3bd7d32e807e360fa6a2790d.woff')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.249691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249691,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);}
.m1{transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-50.765400px;}
.v1{vertical-align:-19.799400px;}
.v4{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.550800px;}
.ls0{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.000600px;}
.ls45{letter-spacing:0.009600px;}
.ls4f{letter-spacing:0.016200px;}
.ls7{letter-spacing:0.060000px;}
.ls41{letter-spacing:0.110400px;}
.ls5{letter-spacing:0.120000px;}
.ls43{letter-spacing:0.180000px;}
.ls57{letter-spacing:0.201000px;}
.ls48{letter-spacing:0.208800px;}
.ls8{letter-spacing:0.240000px;}
.ls3f{letter-spacing:0.243000px;}
.ls3e{letter-spacing:0.246600px;}
.ls2{letter-spacing:0.300000px;}
.ls2f{letter-spacing:0.309600px;}
.ls4b{letter-spacing:0.313200px;}
.ls3{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.420000px;}
.ls10{letter-spacing:0.432600px;}
.ls22{letter-spacing:0.447000px;}
.lsf{letter-spacing:0.480000px;}
.ls2c{letter-spacing:0.507600px;}
.ls14{letter-spacing:0.540000px;}
.ls1b{letter-spacing:0.600000px;}
.ls12{letter-spacing:0.660000px;}
.ls18{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.765000px;}
.lsd{letter-spacing:0.780000px;}
.ls37{letter-spacing:0.828600px;}
.ls4a{letter-spacing:0.835200px;}
.ls1e{letter-spacing:0.840000px;}
.ls34{letter-spacing:0.893400px;}
.ls9{letter-spacing:0.900000px;}
.ls15{letter-spacing:0.960000px;}
.ls6{letter-spacing:1.020000px;}
.ls29{letter-spacing:1.068600px;}
.ls28{letter-spacing:1.080000px;}
.ls25{letter-spacing:1.089600px;}
.ls47{letter-spacing:1.113600px;}
.ls3d{letter-spacing:1.116600px;}
.lse{letter-spacing:1.140000px;}
.ls1{letter-spacing:1.200000px;}
.ls21{letter-spacing:1.260000px;}
.ls2e{letter-spacing:1.307400px;}
.lsa{letter-spacing:1.320000px;}
.ls13{letter-spacing:1.380000px;}
.ls36{letter-spacing:1.419600px;}
.ls35{letter-spacing:1.440000px;}
.ls49{letter-spacing:1.461600px;}
.ls1f{letter-spacing:1.476000px;}
.ls20{letter-spacing:1.485000px;}
.ls1c{letter-spacing:1.500000px;}
.ls32{letter-spacing:1.531200px;}
.ls33{letter-spacing:1.531800px;}
.ls19{letter-spacing:1.560000px;}
.ls53{letter-spacing:1.620000px;}
.lsb{letter-spacing:1.680000px;}
.ls30{letter-spacing:1.740000px;}
.ls31{letter-spacing:1.743000px;}
.ls55{letter-spacing:1.800000px;}
.ls17{letter-spacing:1.860000px;}
.ls24{letter-spacing:1.870200px;}
.ls26{letter-spacing:1.878600px;}
.ls3c{letter-spacing:1.915800px;}
.ls38{letter-spacing:1.920000px;}
.ls39{letter-spacing:1.924800px;}
.ls3a{letter-spacing:1.925400px;}
.ls3b{letter-spacing:1.934400px;}
.ls2a{letter-spacing:1.980000px;}
.ls2b{letter-spacing:2.007000px;}
.lsc{letter-spacing:2.040000px;}
.ls1a{letter-spacing:2.100000px;}
.ls44{letter-spacing:2.160000px;}
.ls4e{letter-spacing:2.220000px;}
.ls52{letter-spacing:2.280000px;}
.ls27{letter-spacing:2.340000px;}
.ls16{letter-spacing:2.400000px;}
.ls4d{letter-spacing:2.460000px;}
.ls51{letter-spacing:2.520000px;}
.ls4c{letter-spacing:2.580000px;}
.ls50{letter-spacing:2.640000px;}
.ls40{letter-spacing:2.940000px;}
.ls54{letter-spacing:3.000000px;}
.ls2d{letter-spacing:3.180000px;}
.ls1d{letter-spacing:3.360000px;}
.ls56{letter-spacing:3.600000px;}
.ls58{letter-spacing:4.416600px;}
.ls23{letter-spacing:77.173341px;}
.ls46{letter-spacing:474.742023px;}
.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;}
}
.ws9{word-spacing:-65.975400px;}
.ws12{word-spacing:-64.980000px;}
.ws6{word-spacing:-60.000000px;}
.wsa{word-spacing:-41.984400px;}
.ws3{word-spacing:-17.040000px;}
.ws13{word-spacing:-16.920000px;}
.wsc{word-spacing:-16.740000px;}
.ws11{word-spacing:-16.245000px;}
.wse{word-spacing:-16.080000px;}
.wsd{word-spacing:-15.600000px;}
.ws18{word-spacing:-15.540000px;}
.ws15{word-spacing:-15.360000px;}
.ws1e{word-spacing:-15.300000px;}
.ws1d{word-spacing:-15.180000px;}
.wsb{word-spacing:-15.060000px;}
.ws4{word-spacing:-15.000000px;}
.ws2{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.000000px;}
.ws14{word-spacing:-9.813600px;}
.ws17{word-spacing:-9.535200px;}
.ws10{word-spacing:-9.476250px;}
.ws19{word-spacing:-9.013200px;}
.ws16{word-spacing:-8.908800px;}
.ws5{word-spacing:-8.700000px;}
.ws1b{word-spacing:-6.960000px;}
.ws8{word-spacing:-0.065975px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:85.273056px;}
.ws1a{word-spacing:128.053800px;}
.ws1c{word-spacing:226.452000px;}
.wsf{word-spacing:600.815847px;}
._1c{margin-left:-573.482172px;}
._1b{margin-left:-442.913469px;}
._e{margin-left:-426.827911px;}
._1d{margin-left:-378.172795px;}
._10{margin-left:-322.323055px;}
._11{margin-left:-203.870296px;}
._14{margin-left:-155.325329px;}
._13{margin-left:-149.810447px;}
._12{margin-left:-134.332830px;}
._16{margin-left:-95.401333px;}
._f{margin-left:-87.008326px;}
._15{margin-left:-80.882601px;}
._17{margin-left:-70.575702px;}
._d{margin-left:-17.232000px;}
._18{margin-left:-14.740200px;}
._44{margin-left:-8.440800px;}
._41{margin-left:-7.260000px;}
._0{margin-left:-6.048000px;}
._c{margin-left:-4.740000px;}
._7{margin-left:-3.600000px;}
._1{margin-left:-1.998000px;}
._a{width:1.134000px;}
._9{width:2.214000px;}
._8{width:4.212000px;}
._b{width:5.670000px;}
._45{width:6.780000px;}
._46{width:8.577600px;}
._42{width:10.140000px;}
._47{width:12.180000px;}
._43{width:13.920000px;}
._48{width:15.000000px;}
._49{width:16.803000px;}
._1e{width:99.000000px;}
._3b{width:187.178400px;}
._2a{width:192.342600px;}
._2e{width:193.344600px;}
._23{width:196.452000px;}
._29{width:198.364200px;}
._1f{width:201.000000px;}
._24{width:204.304200px;}
._39{width:212.558400px;}
._21{width:218.983800px;}
._2b{width:220.509600px;}
._22{width:227.974800px;}
._25{width:229.500000px;}
._19{width:230.868600px;}
._2c{width:247.508400px;}
._26{width:248.510400px;}
._20{width:252.989400px;}
._5{width:259.470000px;}
._32{width:263.986800px;}
._27{width:275.505600px;}
._28{width:276.692400px;}
._2d{width:289.196400px;}
._30{width:302.696400px;}
._2f{width:322.946400px;}
._3e{width:363.730200px;}
._3c{width:365.034000px;}
._3a{width:366.036000px;}
._3d{width:378.534000px;}
._40{width:392.350200px;}
._3f{width:412.284000px;}
._35{width:422.220000px;}
._34{width:436.368000px;}
._38{width:468.572400px;}
._36{width:479.102400px;}
._37{width:482.072400px;}
._33{width:485.042400px;}
._3{width:497.880000px;}
._4{width:529.470000px;}
._31{width:556.350000px;}
._2{width:696.624000px;}
._1a{width:698.628000px;}
._6{width:1345.842000px;}
.fc3{color:rgb(60,75,167);}
.fc2{color:rgb(5,3,1);}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:27.840000px;}
.fs4{font-size:34.800000px;}
.fsb{font-size:37.905000px;}
.fs8{font-size:41.984400px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fsc{font-size:64.980000px;}
.fs6{font-size:65.975400px;}
.fs5{font-size:88.092000px;}
.fsa{font-size:101.869800px;}
.fs7{font-size:107.959800px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.ye6{bottom:3.553950px;}
.y72{bottom:8.312850px;}
.y84{bottom:10.843500px;}
.y6f{bottom:13.092750px;}
.y78{bottom:14.966400px;}
.y7e{bottom:14.967150px;}
.y6e{bottom:15.107700px;}
.ye8{bottom:16.245300px;}
.yea{bottom:20.306550px;}
.y70{bottom:27.618900px;}
.ye7{bottom:28.979100px;}
.ye9{bottom:33.040350px;}
.ye5{bottom:33.294150px;}
.y71{bottom:43.316100px;}
.y88{bottom:57.701400px;}
.y76{bottom:58.965300px;}
.y81{bottom:61.824600px;}
.y73{bottom:71.335800px;}
.yd2{bottom:72.676200px;}
.y22{bottom:72.676500px;}
.y15e{bottom:72.676650px;}
.y11b{bottom:75.676200px;}
.y1{bottom:75.676500px;}
.y74{bottom:78.271500px;}
.y7c{bottom:79.817550px;}
.y86{bottom:79.817700px;}
.y82{bottom:79.818000px;}
.y7a{bottom:84.456600px;}
.y83{bottom:84.457350px;}
.y5{bottom:87.621300px;}
.y7d{bottom:93.266100px;}
.y87{bottom:93.266250px;}
.y75{bottom:93.968550px;}
.y79{bottom:97.389450px;}
.y7f{bottom:97.390200px;}
.y134{bottom:104.032350px;}
.y128{bottom:104.079600px;}
.yb6{bottom:105.234900px;}
.y8d{bottom:105.235050px;}
.y11a{bottom:105.249450px;}
.y4e{bottom:105.249600px;}
.y15d{bottom:105.613800px;}
.yd1{bottom:106.881150px;}
.yff{bottom:107.514450px;}
.y80{bottom:107.839050px;}
.yc2{bottom:108.167700px;}
.y77{bottom:109.665750px;}
.y7b{bottom:115.289100px;}
.y85{bottom:115.289250px;}
.y4{bottom:116.421300px;}
.y15c{bottom:120.013800px;}
.y133{bottom:122.032350px;}
.y127{bottom:122.079600px;}
.yb5{bottom:123.234900px;}
.y8c{bottom:123.235050px;}
.y119{bottom:123.249450px;}
.y4d{bottom:123.249600px;}
.yc1{bottom:123.467700px;}
.yfe{bottom:125.514450px;}
.y3{bottom:130.821300px;}
.yc0{bottom:138.767700px;}
.y132{bottom:140.032200px;}
.y126{bottom:140.079600px;}
.yb4{bottom:141.234900px;}
.y8b{bottom:141.235050px;}
.y118{bottom:141.249450px;}
.y4c{bottom:141.249600px;}
.yfd{bottom:143.514450px;}
.ybf{bottom:154.067700px;}
.y15b{bottom:156.264900px;}
.y131{bottom:158.032200px;}
.y125{bottom:158.079600px;}
.yb3{bottom:159.234900px;}
.y8a{bottom:159.235050px;}
.y117{bottom:159.249450px;}
.y4b{bottom:159.249600px;}
.yfc{bottom:161.514450px;}
.ybe{bottom:169.367700px;}
.y130{bottom:176.032200px;}
.y124{bottom:176.079600px;}
.yb2{bottom:177.234900px;}
.y89{bottom:177.235050px;}
.y116{bottom:177.249450px;}
.y4a{bottom:177.249600px;}
.y15a{bottom:177.471150px;}
.yfb{bottom:179.514450px;}
.ybd{bottom:184.667700px;}
.y12f{bottom:194.032200px;}
.y123{bottom:194.079600px;}
.yb1{bottom:195.234900px;}
.y115{bottom:195.249450px;}
.y49{bottom:195.249600px;}
.yfa{bottom:197.514450px;}
.y159{bottom:198.771150px;}
.ybc{bottom:199.967700px;}
.y6d{bottom:211.735500px;}
.y12e{bottom:212.032200px;}
.y122{bottom:212.079600px;}
.yb0{bottom:213.234900px;}
.y114{bottom:213.249450px;}
.y48{bottom:213.249600px;}
.ybb{bottom:215.267700px;}
.yf9{bottom:215.514450px;}
.y158{bottom:220.071150px;}
.y12d{bottom:230.032200px;}
.y121{bottom:230.079600px;}
.yba{bottom:230.567700px;}
.yaf{bottom:231.234900px;}
.y113{bottom:231.249450px;}
.y47{bottom:231.249600px;}
.y21{bottom:232.138200px;}
.y157{bottom:241.371150px;}
.yb9{bottom:247.958100px;}
.y12c{bottom:248.032200px;}
.y120{bottom:248.079600px;}
.y20{bottom:248.338200px;}
.yae{bottom:249.234900px;}
.y112{bottom:249.249450px;}
.y46{bottom:249.249600px;}
.yf8{bottom:251.514450px;}
.y156{bottom:262.671150px;}
.y1f{bottom:264.538200px;}
.y12b{bottom:266.032200px;}
.y11f{bottom:266.079600px;}
.yad{bottom:267.234900px;}
.y111{bottom:267.249450px;}
.y45{bottom:267.249600px;}
.y1e{bottom:280.738200px;}
.y155{bottom:283.971150px;}
.y12a{bottom:284.032200px;}
.y11e{bottom:284.079600px;}
.yb8{bottom:284.868000px;}
.yac{bottom:285.234900px;}
.y110{bottom:285.249450px;}
.y44{bottom:285.249600px;}
.yf7{bottom:287.514450px;}
.y1d{bottom:296.938200px;}
.yb7{bottom:301.068000px;}
.y129{bottom:302.032200px;}
.y11d{bottom:302.079600px;}
.yab{bottom:303.234900px;}
.y10f{bottom:303.249450px;}
.y43{bottom:303.249600px;}
.y154{bottom:305.271150px;}
.yf6{bottom:305.514450px;}
.y1c{bottom:313.138200px;}
.y10e{bottom:321.249450px;}
.y42{bottom:321.249600px;}
.yf5{bottom:323.514450px;}
.y153{bottom:326.571150px;}
.y1b{bottom:329.338200px;}
.yaa{bottom:339.234900px;}
.y10d{bottom:339.249450px;}
.y41{bottom:339.249600px;}
.yf4{bottom:341.514450px;}
.y14c{bottom:342.743850px;}
.y1a{bottom:345.538200px;}
.y152{bottom:347.871150px;}
.y14b{bottom:357.143850px;}
.y6c{bottom:357.235050px;}
.y10c{bottom:357.249450px;}
.y40{bottom:357.249600px;}
.yf3{bottom:359.514450px;}
.y19{bottom:361.738200px;}
.y151{bottom:369.171150px;}
.ya9{bottom:375.234900px;}
.y6b{bottom:375.235050px;}
.y10b{bottom:375.249450px;}
.y3f{bottom:375.249600px;}
.yf2{bottom:377.514450px;}
.y14a{bottom:386.607450px;}
.y150{bottom:390.377400px;}
.y6a{bottom:393.235050px;}
.y10a{bottom:393.249450px;}
.y3e{bottom:393.249600px;}
.y18{bottom:394.138200px;}
.yf1{bottom:395.514450px;}
.y149{bottom:408.601200px;}
.y17{bottom:410.338200px;}
.ya8{bottom:411.234900px;}
.y69{bottom:411.235050px;}
.y109{bottom:411.249450px;}
.y3d{bottom:411.249600px;}
.y14f{bottom:411.936150px;}
.yf0{bottom:413.514450px;}
.y16{bottom:426.538200px;}
.ya7{bottom:429.234900px;}
.y68{bottom:429.235050px;}
.y108{bottom:429.249450px;}
.y3c{bottom:429.249600px;}
.y178{bottom:429.249750px;}
.y148{bottom:430.651200px;}
.yef{bottom:431.514450px;}
.y14e{bottom:433.026300px;}
.y15{bottom:442.738200px;}
.ya6{bottom:447.234900px;}
.y67{bottom:447.235050px;}
.y107{bottom:447.249450px;}
.y3b{bottom:447.249600px;}
.y177{bottom:447.249750px;}
.y14d{bottom:449.226300px;}
.yee{bottom:449.514450px;}
.y147{bottom:452.701200px;}
.y14{bottom:458.938200px;}
.ya5{bottom:465.234900px;}
.y66{bottom:465.235050px;}
.y106{bottom:465.249450px;}
.y3a{bottom:465.249600px;}
.y176{bottom:465.249750px;}
.yed{bottom:467.514450px;}
.y146{bottom:474.751200px;}
.y13{bottom:475.138200px;}
.ya4{bottom:483.234900px;}
.y65{bottom:483.235050px;}
.y105{bottom:483.249450px;}
.y39{bottom:483.249600px;}
.y175{bottom:483.249750px;}
.yec{bottom:485.514450px;}
.y12{bottom:491.338200px;}
.y145{bottom:496.801200px;}
.ya3{bottom:501.234900px;}
.y64{bottom:501.235050px;}
.y104{bottom:501.249450px;}
.y38{bottom:501.249600px;}
.y174{bottom:501.249750px;}
.yeb{bottom:503.514450px;}
.y11{bottom:507.538200px;}
.y144{bottom:518.851200px;}
.ya2{bottom:519.234900px;}
.y63{bottom:519.235050px;}
.y103{bottom:519.249450px;}
.y37{bottom:519.249600px;}
.y173{bottom:519.249750px;}
.ye4{bottom:521.514000px;}
.y10{bottom:523.738200px;}
.ya1{bottom:537.234900px;}
.y62{bottom:537.235050px;}
.y102{bottom:537.249450px;}
.y36{bottom:537.249600px;}
.y172{bottom:537.249750px;}
.yf{bottom:539.938200px;}
.y143{bottom:540.901200px;}
.ya0{bottom:555.234900px;}
.y61{bottom:555.235050px;}
.y101{bottom:555.249450px;}
.y35{bottom:555.249600px;}
.y171{bottom:555.249750px;}
.y142{bottom:562.951200px;}
.y9f{bottom:573.234900px;}
.y60{bottom:573.235050px;}
.y100{bottom:573.249450px;}
.y34{bottom:573.249600px;}
.y170{bottom:573.249750px;}
.y141{bottom:585.001200px;}
.y9e{bottom:591.234900px;}
.y5f{bottom:591.235050px;}
.ye3{bottom:591.249450px;}
.y33{bottom:591.249600px;}
.y16f{bottom:591.249750px;}
.ye{bottom:592.138200px;}
.y140{bottom:607.088700px;}
.yd{bottom:608.338200px;}
.y9d{bottom:609.234900px;}
.y5e{bottom:609.235050px;}
.ye2{bottom:609.249450px;}
.y32{bottom:609.249600px;}
.y16e{bottom:609.249750px;}
.yd0{bottom:609.491250px;}
.yc{bottom:626.338200px;}
.y9c{bottom:627.234900px;}
.y5d{bottom:627.235050px;}
.ye1{bottom:627.249450px;}
.y31{bottom:627.249600px;}
.y16d{bottom:627.249750px;}
.ycf{bottom:627.491250px;}
.y13f{bottom:629.176200px;}
.yb{bottom:642.538200px;}
.y9b{bottom:645.234900px;}
.y5c{bottom:645.235050px;}
.ye0{bottom:645.249450px;}
.y30{bottom:645.249600px;}
.y16c{bottom:645.249750px;}
.yce{bottom:645.491250px;}
.y13e{bottom:651.226200px;}
.y9a{bottom:663.234900px;}
.y5b{bottom:663.235050px;}
.ydf{bottom:663.249450px;}
.y2f{bottom:663.249600px;}
.y16b{bottom:663.249750px;}
.ycd{bottom:663.491250px;}
.y13d{bottom:673.276200px;}
.y99{bottom:681.234900px;}
.y5a{bottom:681.235050px;}
.yde{bottom:681.249450px;}
.y2e{bottom:681.249600px;}
.y16a{bottom:681.249750px;}
.ycc{bottom:681.491250px;}
.y13c{bottom:695.326200px;}
.ya{bottom:696.538200px;}
.y98{bottom:699.234900px;}
.y59{bottom:699.235050px;}
.ydd{bottom:699.249450px;}
.y2d{bottom:699.249600px;}
.y169{bottom:699.249750px;}
.ycb{bottom:699.491250px;}
.y97{bottom:717.234900px;}
.y58{bottom:717.235050px;}
.ydc{bottom:717.249450px;}
.y2c{bottom:717.249600px;}
.y168{bottom:717.249750px;}
.y13b{bottom:717.376200px;}
.yca{bottom:717.491250px;}
.y9{bottom:732.538200px;}
.y96{bottom:735.234900px;}
.y57{bottom:735.235050px;}
.ydb{bottom:735.249450px;}
.y2b{bottom:735.249600px;}
.y167{bottom:735.249750px;}
.yc9{bottom:735.491250px;}
.y13a{bottom:739.426200px;}
.y95{bottom:753.234900px;}
.y56{bottom:753.235050px;}
.yda{bottom:753.249450px;}
.y2a{bottom:753.249600px;}
.y166{bottom:753.249750px;}
.yc8{bottom:753.491250px;}
.y139{bottom:761.476200px;}
.y94{bottom:771.234900px;}
.y55{bottom:771.235050px;}
.yd9{bottom:771.249450px;}
.y29{bottom:771.249600px;}
.y165{bottom:771.249750px;}
.yc7{bottom:771.491250px;}
.y138{bottom:783.526200px;}
.y93{bottom:789.234900px;}
.y54{bottom:789.235050px;}
.yd8{bottom:789.249450px;}
.y28{bottom:789.249600px;}
.y164{bottom:789.249750px;}
.yc6{bottom:789.491250px;}
.y137{bottom:805.482450px;}
.y92{bottom:807.234900px;}
.y53{bottom:807.235050px;}
.yd7{bottom:807.249450px;}
.y27{bottom:807.249600px;}
.y163{bottom:807.249750px;}
.yc5{bottom:807.491250px;}
.y136{bottom:823.407450px;}
.y91{bottom:825.234900px;}
.y52{bottom:825.235050px;}
.yd6{bottom:825.249450px;}
.y26{bottom:825.249600px;}
.y162{bottom:825.249750px;}
.yc4{bottom:825.491250px;}
.y90{bottom:843.234900px;}
.y51{bottom:843.235050px;}
.yd5{bottom:843.249450px;}
.y25{bottom:843.249600px;}
.y161{bottom:843.249750px;}
.y8f{bottom:861.234900px;}
.y50{bottom:861.235050px;}
.yd4{bottom:861.249450px;}
.y24{bottom:861.249600px;}
.y160{bottom:861.249750px;}
.yc3{bottom:861.491250px;}
.y135{bottom:862.276200px;}
.y8{bottom:869.961450px;}
.y7{bottom:886.161450px;}
.yd3{bottom:893.433150px;}
.y8e{bottom:893.433300px;}
.y23{bottom:893.433450px;}
.y15f{bottom:893.436150px;}
.y11c{bottom:894.850500px;}
.y4f{bottom:894.850650px;}
.y2{bottom:894.856500px;}
.y6{bottom:902.361450px;}
.h12{height:28.433771px;}
.h10{height:29.151278px;}
.h17{height:33.351958px;}
.h1b{height:35.991211px;}
.he{height:39.255414px;}
.h9{height:41.074219px;}
.h1c{height:42.117188px;}
.h3{height:42.234375px;}
.h19{height:43.735570px;}
.h11{height:44.681582px;}
.h14{height:44.749512px;}
.h13{height:45.222656px;}
.hf{height:45.809091px;}
.h4{height:47.381836px;}
.h2{height:47.513672px;}
.h1a{height:47.882812px;}
.h15{height:48.735000px;}
.h7{height:52.646484px;}
.h8{height:52.792969px;}
.h6{height:53.203125px;}
.h18{height:57.174785px;}
.hc{height:61.686999px;}
.h16{height:68.564693px;}
.hb{height:82.366020px;}
.h5{height:85.800000px;}
.ha{height:127.500000px;}
.hd{height:134.493213px;}
.h0{height:977.925000px;}
.h1{height:978.000000px;}
.w2{width:235.500000px;}
.w3{width:255.544500px;}
.w0{width:722.849985px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x24{left:2.704200px;}
.x22{left:13.182750px;}
.x1c{left:14.742900px;}
.x19{left:31.942500px;}
.x26{left:39.801750px;}
.x16{left:43.314300px;}
.xd{left:49.282800px;}
.x1f{left:54.125250px;}
.x15{left:74.799750px;}
.x10{left:76.257300px;}
.x1{left:85.050000px;}
.xc{left:87.770400px;}
.x1a{left:106.568100px;}
.x9{left:110.550000px;}
.x11{left:112.488900px;}
.x2{left:118.128900px;}
.x8{left:127.575000px;}
.x12{left:141.248550px;}
.x20{left:142.728300px;}
.x7{left:153.075000px;}
.x23{left:155.573100px;}
.x1b{left:165.827400px;}
.x17{left:176.259000px;}
.x18{left:181.898100px;}
.xe{left:190.826850px;}
.xf{left:196.465950px;}
.x13{left:203.327100px;}
.x21{left:205.642050px;}
.x14{left:208.966200px;}
.x25{left:228.416100px;}
.xa{left:376.312500px;}
.x1d{left:378.412500px;}
.xb{left:401.812500px;}
.x6{left:408.702150px;}
.x3{left:464.860500px;}
.x5{left:491.908950px;}
.x4{left:514.830000px;}
.x1e{left:526.295400px;}
@media print{
.v3{vertical-align:-45.124800pt;}
.v1{vertical-align:-17.599467pt;}
.v4{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.822933pt;}
.ls0{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.000533pt;}
.ls45{letter-spacing:0.008533pt;}
.ls4f{letter-spacing:0.014400pt;}
.ls7{letter-spacing:0.053333pt;}
.ls41{letter-spacing:0.098133pt;}
.ls5{letter-spacing:0.106667pt;}
.ls43{letter-spacing:0.160000pt;}
.ls57{letter-spacing:0.178667pt;}
.ls48{letter-spacing:0.185600pt;}
.ls8{letter-spacing:0.213333pt;}
.ls3f{letter-spacing:0.216000pt;}
.ls3e{letter-spacing:0.219200pt;}
.ls2{letter-spacing:0.266667pt;}
.ls2f{letter-spacing:0.275200pt;}
.ls4b{letter-spacing:0.278400pt;}
.ls3{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.373333pt;}
.ls10{letter-spacing:0.384533pt;}
.ls22{letter-spacing:0.397333pt;}
.lsf{letter-spacing:0.426667pt;}
.ls2c{letter-spacing:0.451200pt;}
.ls14{letter-spacing:0.480000pt;}
.ls1b{letter-spacing:0.533333pt;}
.ls12{letter-spacing:0.586667pt;}
.ls18{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.680000pt;}
.lsd{letter-spacing:0.693333pt;}
.ls37{letter-spacing:0.736533pt;}
.ls4a{letter-spacing:0.742400pt;}
.ls1e{letter-spacing:0.746667pt;}
.ls34{letter-spacing:0.794133pt;}
.ls9{letter-spacing:0.800000pt;}
.ls15{letter-spacing:0.853333pt;}
.ls6{letter-spacing:0.906667pt;}
.ls29{letter-spacing:0.949867pt;}
.ls28{letter-spacing:0.960000pt;}
.ls25{letter-spacing:0.968533pt;}
.ls47{letter-spacing:0.989867pt;}
.ls3d{letter-spacing:0.992533pt;}
.lse{letter-spacing:1.013333pt;}
.ls1{letter-spacing:1.066667pt;}
.ls21{letter-spacing:1.120000pt;}
.ls2e{letter-spacing:1.162133pt;}
.lsa{letter-spacing:1.173333pt;}
.ls13{letter-spacing:1.226667pt;}
.ls36{letter-spacing:1.261867pt;}
.ls35{letter-spacing:1.280000pt;}
.ls49{letter-spacing:1.299200pt;}
.ls1f{letter-spacing:1.312000pt;}
.ls20{letter-spacing:1.320000pt;}
.ls1c{letter-spacing:1.333333pt;}
.ls32{letter-spacing:1.361067pt;}
.ls33{letter-spacing:1.361600pt;}
.ls19{letter-spacing:1.386667pt;}
.ls53{letter-spacing:1.440000pt;}
.lsb{letter-spacing:1.493333pt;}
.ls30{letter-spacing:1.546667pt;}
.ls31{letter-spacing:1.549333pt;}
.ls55{letter-spacing:1.600000pt;}
.ls17{letter-spacing:1.653333pt;}
.ls24{letter-spacing:1.662400pt;}
.ls26{letter-spacing:1.669867pt;}
.ls3c{letter-spacing:1.702933pt;}
.ls38{letter-spacing:1.706667pt;}
.ls39{letter-spacing:1.710933pt;}
.ls3a{letter-spacing:1.711467pt;}
.ls3b{letter-spacing:1.719467pt;}
.ls2a{letter-spacing:1.760000pt;}
.ls2b{letter-spacing:1.784000pt;}
.lsc{letter-spacing:1.813333pt;}
.ls1a{letter-spacing:1.866667pt;}
.ls44{letter-spacing:1.920000pt;}
.ls4e{letter-spacing:1.973333pt;}
.ls52{letter-spacing:2.026667pt;}
.ls27{letter-spacing:2.080000pt;}
.ls16{letter-spacing:2.133333pt;}
.ls4d{letter-spacing:2.186667pt;}
.ls51{letter-spacing:2.240000pt;}
.ls4c{letter-spacing:2.293333pt;}
.ls50{letter-spacing:2.346667pt;}
.ls40{letter-spacing:2.613333pt;}
.ls54{letter-spacing:2.666667pt;}
.ls2d{letter-spacing:2.826667pt;}
.ls1d{letter-spacing:2.986667pt;}
.ls56{letter-spacing:3.200000pt;}
.ls58{letter-spacing:3.925867pt;}
.ls23{letter-spacing:68.598525pt;}
.ls46{letter-spacing:421.992909pt;}
.ws9{word-spacing:-58.644800pt;}
.ws12{word-spacing:-57.760000pt;}
.ws6{word-spacing:-53.333333pt;}
.wsa{word-spacing:-37.319467pt;}
.ws3{word-spacing:-15.146667pt;}
.ws13{word-spacing:-15.040000pt;}
.wsc{word-spacing:-14.880000pt;}
.ws11{word-spacing:-14.440000pt;}
.wse{word-spacing:-14.293333pt;}
.wsd{word-spacing:-13.866667pt;}
.ws18{word-spacing:-13.813333pt;}
.ws15{word-spacing:-13.653333pt;}
.ws1e{word-spacing:-13.600000pt;}
.ws1d{word-spacing:-13.493333pt;}
.wsb{word-spacing:-13.386667pt;}
.ws4{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.666667pt;}
.ws14{word-spacing:-8.723200pt;}
.ws17{word-spacing:-8.475733pt;}
.ws10{word-spacing:-8.423333pt;}
.ws19{word-spacing:-8.011733pt;}
.ws16{word-spacing:-7.918933pt;}
.ws5{word-spacing:-7.733333pt;}
.ws1b{word-spacing:-6.186667pt;}
.ws8{word-spacing:-0.058645pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:75.798272pt;}
.ws1a{word-spacing:113.825600pt;}
.ws1c{word-spacing:201.290667pt;}
.wsf{word-spacing:534.058531pt;}
._1c{margin-left:-509.761930pt;}
._1b{margin-left:-393.700862pt;}
._e{margin-left:-379.402587pt;}
._1d{margin-left:-336.153596pt;}
._10{margin-left:-286.509383pt;}
._11{margin-left:-181.218041pt;}
._14{margin-left:-138.066959pt;}
._13{margin-left:-133.164842pt;}
._12{margin-left:-119.406960pt;}
._16{margin-left:-84.801185pt;}
._f{margin-left:-77.340734pt;}
._15{margin-left:-71.895645pt;}
._17{margin-left:-62.733957pt;}
._d{margin-left:-15.317333pt;}
._18{margin-left:-13.102400pt;}
._44{margin-left:-7.502933pt;}
._41{margin-left:-6.453333pt;}
._0{margin-left:-5.376000pt;}
._c{margin-left:-4.213333pt;}
._7{margin-left:-3.200000pt;}
._1{margin-left:-1.776000pt;}
._a{width:1.008000pt;}
._9{width:1.968000pt;}
._8{width:3.744000pt;}
._b{width:5.040000pt;}
._45{width:6.026667pt;}
._46{width:7.624533pt;}
._42{width:9.013333pt;}
._47{width:10.826667pt;}
._43{width:12.373333pt;}
._48{width:13.333333pt;}
._49{width:14.936000pt;}
._1e{width:88.000000pt;}
._3b{width:166.380800pt;}
._2a{width:170.971200pt;}
._2e{width:171.861867pt;}
._23{width:174.624000pt;}
._29{width:176.323733pt;}
._1f{width:178.666667pt;}
._24{width:181.603733pt;}
._39{width:188.940800pt;}
._21{width:194.652267pt;}
._2b{width:196.008533pt;}
._22{width:202.644267pt;}
._25{width:204.000000pt;}
._19{width:205.216533pt;}
._2c{width:220.007467pt;}
._26{width:220.898133pt;}
._20{width:224.879467pt;}
._5{width:230.640000pt;}
._32{width:234.654933pt;}
._27{width:244.893867pt;}
._28{width:245.948800pt;}
._2d{width:257.063467pt;}
._30{width:269.063467pt;}
._2f{width:287.063467pt;}
._3e{width:323.315733pt;}
._3c{width:324.474667pt;}
._3a{width:325.365333pt;}
._3d{width:336.474667pt;}
._40{width:348.755733pt;}
._3f{width:366.474667pt;}
._35{width:375.306667pt;}
._34{width:387.882667pt;}
._38{width:416.508800pt;}
._36{width:425.868800pt;}
._37{width:428.508800pt;}
._33{width:431.148800pt;}
._3{width:442.560000pt;}
._4{width:470.640000pt;}
._31{width:494.533333pt;}
._2{width:619.221333pt;}
._1a{width:621.002667pt;}
._6{width:1196.304000pt;}
.fsd{font-size:24.746667pt;}
.fs4{font-size:30.933333pt;}
.fsb{font-size:33.693333pt;}
.fs8{font-size:37.319467pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fsc{font-size:57.760000pt;}
.fs6{font-size:58.644800pt;}
.fs5{font-size:78.304000pt;}
.fsa{font-size:90.550933pt;}
.fs7{font-size:95.964267pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.ye6{bottom:3.159067pt;}
.y72{bottom:7.389200pt;}
.y84{bottom:9.638667pt;}
.y6f{bottom:11.638000pt;}
.y78{bottom:13.303467pt;}
.y7e{bottom:13.304133pt;}
.y6e{bottom:13.429067pt;}
.ye8{bottom:14.440267pt;}
.yea{bottom:18.050267pt;}
.y70{bottom:24.550133pt;}
.ye7{bottom:25.759200pt;}
.ye9{bottom:29.369200pt;}
.ye5{bottom:29.594800pt;}
.y71{bottom:38.503200pt;}
.y88{bottom:51.290133pt;}
.y76{bottom:52.413600pt;}
.y81{bottom:54.955200pt;}
.y73{bottom:63.409600pt;}
.yd2{bottom:64.601067pt;}
.y22{bottom:64.601333pt;}
.y15e{bottom:64.601467pt;}
.y11b{bottom:67.267733pt;}
.y1{bottom:67.268000pt;}
.y74{bottom:69.574667pt;}
.y7c{bottom:70.948933pt;}
.y86{bottom:70.949067pt;}
.y82{bottom:70.949333pt;}
.y7a{bottom:75.072533pt;}
.y83{bottom:75.073200pt;}
.y5{bottom:77.885600pt;}
.y7d{bottom:82.903200pt;}
.y87{bottom:82.903333pt;}
.y75{bottom:83.527600pt;}
.y79{bottom:86.568400pt;}
.y7f{bottom:86.569067pt;}
.y134{bottom:92.473200pt;}
.y128{bottom:92.515200pt;}
.yb6{bottom:93.542133pt;}
.y8d{bottom:93.542267pt;}
.y11a{bottom:93.555067pt;}
.y4e{bottom:93.555200pt;}
.y15d{bottom:93.878933pt;}
.yd1{bottom:95.005467pt;}
.yff{bottom:95.568400pt;}
.y80{bottom:95.856933pt;}
.yc2{bottom:96.149067pt;}
.y77{bottom:97.480667pt;}
.y7b{bottom:102.479200pt;}
.y85{bottom:102.479333pt;}
.y4{bottom:103.485600pt;}
.y15c{bottom:106.678933pt;}
.y133{bottom:108.473200pt;}
.y127{bottom:108.515200pt;}
.yb5{bottom:109.542133pt;}
.y8c{bottom:109.542267pt;}
.y119{bottom:109.555067pt;}
.y4d{bottom:109.555200pt;}
.yc1{bottom:109.749067pt;}
.yfe{bottom:111.568400pt;}
.y3{bottom:116.285600pt;}
.yc0{bottom:123.349067pt;}
.y132{bottom:124.473067pt;}
.y126{bottom:124.515200pt;}
.yb4{bottom:125.542133pt;}
.y8b{bottom:125.542267pt;}
.y118{bottom:125.555067pt;}
.y4c{bottom:125.555200pt;}
.yfd{bottom:127.568400pt;}
.ybf{bottom:136.949067pt;}
.y15b{bottom:138.902133pt;}
.y131{bottom:140.473067pt;}
.y125{bottom:140.515200pt;}
.yb3{bottom:141.542133pt;}
.y8a{bottom:141.542267pt;}
.y117{bottom:141.555067pt;}
.y4b{bottom:141.555200pt;}
.yfc{bottom:143.568400pt;}
.ybe{bottom:150.549067pt;}
.y130{bottom:156.473067pt;}
.y124{bottom:156.515200pt;}
.yb2{bottom:157.542133pt;}
.y89{bottom:157.542267pt;}
.y116{bottom:157.555067pt;}
.y4a{bottom:157.555200pt;}
.y15a{bottom:157.752133pt;}
.yfb{bottom:159.568400pt;}
.ybd{bottom:164.149067pt;}
.y12f{bottom:172.473067pt;}
.y123{bottom:172.515200pt;}
.yb1{bottom:173.542133pt;}
.y115{bottom:173.555067pt;}
.y49{bottom:173.555200pt;}
.yfa{bottom:175.568400pt;}
.y159{bottom:176.685467pt;}
.ybc{bottom:177.749067pt;}
.y6d{bottom:188.209333pt;}
.y12e{bottom:188.473067pt;}
.y122{bottom:188.515200pt;}
.yb0{bottom:189.542133pt;}
.y114{bottom:189.555067pt;}
.y48{bottom:189.555200pt;}
.ybb{bottom:191.349067pt;}
.yf9{bottom:191.568400pt;}
.y158{bottom:195.618800pt;}
.y12d{bottom:204.473067pt;}
.y121{bottom:204.515200pt;}
.yba{bottom:204.949067pt;}
.yaf{bottom:205.542133pt;}
.y113{bottom:205.555067pt;}
.y47{bottom:205.555200pt;}
.y21{bottom:206.345067pt;}
.y157{bottom:214.552133pt;}
.yb9{bottom:220.407200pt;}
.y12c{bottom:220.473067pt;}
.y120{bottom:220.515200pt;}
.y20{bottom:220.745067pt;}
.yae{bottom:221.542133pt;}
.y112{bottom:221.555067pt;}
.y46{bottom:221.555200pt;}
.yf8{bottom:223.568400pt;}
.y156{bottom:233.485467pt;}
.y1f{bottom:235.145067pt;}
.y12b{bottom:236.473067pt;}
.y11f{bottom:236.515200pt;}
.yad{bottom:237.542133pt;}
.y111{bottom:237.555067pt;}
.y45{bottom:237.555200pt;}
.y1e{bottom:249.545067pt;}
.y155{bottom:252.418800pt;}
.y12a{bottom:252.473067pt;}
.y11e{bottom:252.515200pt;}
.yb8{bottom:253.216000pt;}
.yac{bottom:253.542133pt;}
.y110{bottom:253.555067pt;}
.y44{bottom:253.555200pt;}
.yf7{bottom:255.568400pt;}
.y1d{bottom:263.945067pt;}
.yb7{bottom:267.616000pt;}
.y129{bottom:268.473067pt;}
.y11d{bottom:268.515200pt;}
.yab{bottom:269.542133pt;}
.y10f{bottom:269.555067pt;}
.y43{bottom:269.555200pt;}
.y154{bottom:271.352133pt;}
.yf6{bottom:271.568400pt;}
.y1c{bottom:278.345067pt;}
.y10e{bottom:285.555067pt;}
.y42{bottom:285.555200pt;}
.yf5{bottom:287.568400pt;}
.y153{bottom:290.285467pt;}
.y1b{bottom:292.745067pt;}
.yaa{bottom:301.542133pt;}
.y10d{bottom:301.555067pt;}
.y41{bottom:301.555200pt;}
.yf4{bottom:303.568400pt;}
.y14c{bottom:304.661200pt;}
.y1a{bottom:307.145067pt;}
.y152{bottom:309.218800pt;}
.y14b{bottom:317.461200pt;}
.y6c{bottom:317.542267pt;}
.y10c{bottom:317.555067pt;}
.y40{bottom:317.555200pt;}
.yf3{bottom:319.568400pt;}
.y19{bottom:321.545067pt;}
.y151{bottom:328.152133pt;}
.ya9{bottom:333.542133pt;}
.y6b{bottom:333.542267pt;}
.y10b{bottom:333.555067pt;}
.y3f{bottom:333.555200pt;}
.yf2{bottom:335.568400pt;}
.y14a{bottom:343.651067pt;}
.y150{bottom:347.002133pt;}
.y6a{bottom:349.542267pt;}
.y10a{bottom:349.555067pt;}
.y3e{bottom:349.555200pt;}
.y18{bottom:350.345067pt;}
.yf1{bottom:351.568400pt;}
.y149{bottom:363.201067pt;}
.y17{bottom:364.745067pt;}
.ya8{bottom:365.542133pt;}
.y69{bottom:365.542267pt;}
.y109{bottom:365.555067pt;}
.y3d{bottom:365.555200pt;}
.y14f{bottom:366.165467pt;}
.yf0{bottom:367.568400pt;}
.y16{bottom:379.145067pt;}
.ya7{bottom:381.542133pt;}
.y68{bottom:381.542267pt;}
.y108{bottom:381.555067pt;}
.y3c{bottom:381.555200pt;}
.y178{bottom:381.555333pt;}
.y148{bottom:382.801067pt;}
.yef{bottom:383.568400pt;}
.y14e{bottom:384.912267pt;}
.y15{bottom:393.545067pt;}
.ya6{bottom:397.542133pt;}
.y67{bottom:397.542267pt;}
.y107{bottom:397.555067pt;}
.y3b{bottom:397.555200pt;}
.y177{bottom:397.555333pt;}
.y14d{bottom:399.312267pt;}
.yee{bottom:399.568400pt;}
.y147{bottom:402.401067pt;}
.y14{bottom:407.945067pt;}
.ya5{bottom:413.542133pt;}
.y66{bottom:413.542267pt;}
.y106{bottom:413.555067pt;}
.y3a{bottom:413.555200pt;}
.y176{bottom:413.555333pt;}
.yed{bottom:415.568400pt;}
.y146{bottom:422.001067pt;}
.y13{bottom:422.345067pt;}
.ya4{bottom:429.542133pt;}
.y65{bottom:429.542267pt;}
.y105{bottom:429.555067pt;}
.y39{bottom:429.555200pt;}
.y175{bottom:429.555333pt;}
.yec{bottom:431.568400pt;}
.y12{bottom:436.745067pt;}
.y145{bottom:441.601067pt;}
.ya3{bottom:445.542133pt;}
.y64{bottom:445.542267pt;}
.y104{bottom:445.555067pt;}
.y38{bottom:445.555200pt;}
.y174{bottom:445.555333pt;}
.yeb{bottom:447.568400pt;}
.y11{bottom:451.145067pt;}
.y144{bottom:461.201067pt;}
.ya2{bottom:461.542133pt;}
.y63{bottom:461.542267pt;}
.y103{bottom:461.555067pt;}
.y37{bottom:461.555200pt;}
.y173{bottom:461.555333pt;}
.ye4{bottom:463.568000pt;}
.y10{bottom:465.545067pt;}
.ya1{bottom:477.542133pt;}
.y62{bottom:477.542267pt;}
.y102{bottom:477.555067pt;}
.y36{bottom:477.555200pt;}
.y172{bottom:477.555333pt;}
.yf{bottom:479.945067pt;}
.y143{bottom:480.801067pt;}
.ya0{bottom:493.542133pt;}
.y61{bottom:493.542267pt;}
.y101{bottom:493.555067pt;}
.y35{bottom:493.555200pt;}
.y171{bottom:493.555333pt;}
.y142{bottom:500.401067pt;}
.y9f{bottom:509.542133pt;}
.y60{bottom:509.542267pt;}
.y100{bottom:509.555067pt;}
.y34{bottom:509.555200pt;}
.y170{bottom:509.555333pt;}
.y141{bottom:520.001067pt;}
.y9e{bottom:525.542133pt;}
.y5f{bottom:525.542267pt;}
.ye3{bottom:525.555067pt;}
.y33{bottom:525.555200pt;}
.y16f{bottom:525.555333pt;}
.ye{bottom:526.345067pt;}
.y140{bottom:539.634400pt;}
.yd{bottom:540.745067pt;}
.y9d{bottom:541.542133pt;}
.y5e{bottom:541.542267pt;}
.ye2{bottom:541.555067pt;}
.y32{bottom:541.555200pt;}
.y16e{bottom:541.555333pt;}
.yd0{bottom:541.770000pt;}
.yc{bottom:556.745067pt;}
.y9c{bottom:557.542133pt;}
.y5d{bottom:557.542267pt;}
.ye1{bottom:557.555067pt;}
.y31{bottom:557.555200pt;}
.y16d{bottom:557.555333pt;}
.ycf{bottom:557.770000pt;}
.y13f{bottom:559.267733pt;}
.yb{bottom:571.145067pt;}
.y9b{bottom:573.542133pt;}
.y5c{bottom:573.542267pt;}
.ye0{bottom:573.555067pt;}
.y30{bottom:573.555200pt;}
.y16c{bottom:573.555333pt;}
.yce{bottom:573.770000pt;}
.y13e{bottom:578.867733pt;}
.y9a{bottom:589.542133pt;}
.y5b{bottom:589.542267pt;}
.ydf{bottom:589.555067pt;}
.y2f{bottom:589.555200pt;}
.y16b{bottom:589.555333pt;}
.ycd{bottom:589.770000pt;}
.y13d{bottom:598.467733pt;}
.y99{bottom:605.542133pt;}
.y5a{bottom:605.542267pt;}
.yde{bottom:605.555067pt;}
.y2e{bottom:605.555200pt;}
.y16a{bottom:605.555333pt;}
.ycc{bottom:605.770000pt;}
.y13c{bottom:618.067733pt;}
.ya{bottom:619.145067pt;}
.y98{bottom:621.542133pt;}
.y59{bottom:621.542267pt;}
.ydd{bottom:621.555067pt;}
.y2d{bottom:621.555200pt;}
.y169{bottom:621.555333pt;}
.ycb{bottom:621.770000pt;}
.y97{bottom:637.542133pt;}
.y58{bottom:637.542267pt;}
.ydc{bottom:637.555067pt;}
.y2c{bottom:637.555200pt;}
.y168{bottom:637.555333pt;}
.y13b{bottom:637.667733pt;}
.yca{bottom:637.770000pt;}
.y9{bottom:651.145067pt;}
.y96{bottom:653.542133pt;}
.y57{bottom:653.542267pt;}
.ydb{bottom:653.555067pt;}
.y2b{bottom:653.555200pt;}
.y167{bottom:653.555333pt;}
.yc9{bottom:653.770000pt;}
.y13a{bottom:657.267733pt;}
.y95{bottom:669.542133pt;}
.y56{bottom:669.542267pt;}
.yda{bottom:669.555067pt;}
.y2a{bottom:669.555200pt;}
.y166{bottom:669.555333pt;}
.yc8{bottom:669.770000pt;}
.y139{bottom:676.867733pt;}
.y94{bottom:685.542133pt;}
.y55{bottom:685.542267pt;}
.yd9{bottom:685.555067pt;}
.y29{bottom:685.555200pt;}
.y165{bottom:685.555333pt;}
.yc7{bottom:685.770000pt;}
.y138{bottom:696.467733pt;}
.y93{bottom:701.542133pt;}
.y54{bottom:701.542267pt;}
.yd8{bottom:701.555067pt;}
.y28{bottom:701.555200pt;}
.y164{bottom:701.555333pt;}
.yc6{bottom:701.770000pt;}
.y137{bottom:715.984400pt;}
.y92{bottom:717.542133pt;}
.y53{bottom:717.542267pt;}
.yd7{bottom:717.555067pt;}
.y27{bottom:717.555200pt;}
.y163{bottom:717.555333pt;}
.yc5{bottom:717.770000pt;}
.y136{bottom:731.917733pt;}
.y91{bottom:733.542133pt;}
.y52{bottom:733.542267pt;}
.yd6{bottom:733.555067pt;}
.y26{bottom:733.555200pt;}
.y162{bottom:733.555333pt;}
.yc4{bottom:733.770000pt;}
.y90{bottom:749.542133pt;}
.y51{bottom:749.542267pt;}
.yd5{bottom:749.555067pt;}
.y25{bottom:749.555200pt;}
.y161{bottom:749.555333pt;}
.y8f{bottom:765.542133pt;}
.y50{bottom:765.542267pt;}
.yd4{bottom:765.555067pt;}
.y24{bottom:765.555200pt;}
.y160{bottom:765.555333pt;}
.yc3{bottom:765.770000pt;}
.y135{bottom:766.467733pt;}
.y8{bottom:773.299067pt;}
.y7{bottom:787.699067pt;}
.yd3{bottom:794.162800pt;}
.y8e{bottom:794.162933pt;}
.y23{bottom:794.163067pt;}
.y15f{bottom:794.165467pt;}
.y11c{bottom:795.422667pt;}
.y4f{bottom:795.422800pt;}
.y2{bottom:795.428000pt;}
.y6{bottom:802.099067pt;}
.h12{height:25.274463pt;}
.h10{height:25.912247pt;}
.h17{height:29.646185pt;}
.h1b{height:31.992188pt;}
.he{height:34.893701pt;}
.h9{height:36.510417pt;}
.h1c{height:37.437500pt;}
.h3{height:37.541667pt;}
.h19{height:38.876062pt;}
.h11{height:39.716962pt;}
.h14{height:39.777344pt;}
.h13{height:40.197917pt;}
.hf{height:40.719192pt;}
.h4{height:42.117188pt;}
.h2{height:42.234375pt;}
.h1a{height:42.562500pt;}
.h15{height:43.320000pt;}
.h7{height:46.796875pt;}
.h8{height:46.927083pt;}
.h6{height:47.291667pt;}
.h18{height:50.822031pt;}
.hc{height:54.832888pt;}
.h16{height:60.946394pt;}
.hb{height:73.214240pt;}
.h5{height:76.266667pt;}
.ha{height:113.333333pt;}
.hd{height:119.549523pt;}
.h0{height:869.266667pt;}
.h1{height:869.333333pt;}
.w2{width:209.333333pt;}
.w3{width:227.150667pt;}
.w0{width:642.533320pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x24{left:2.403733pt;}
.x22{left:11.718000pt;}
.x1c{left:13.104800pt;}
.x19{left:28.393333pt;}
.x26{left:35.379333pt;}
.x16{left:38.501600pt;}
.xd{left:43.806933pt;}
.x1f{left:48.111333pt;}
.x15{left:66.488667pt;}
.x10{left:67.784267pt;}
.x1{left:75.600000pt;}
.xc{left:78.018133pt;}
.x1a{left:94.727200pt;}
.x9{left:98.266667pt;}
.x11{left:99.990133pt;}
.x2{left:105.003467pt;}
.x8{left:113.400000pt;}
.x12{left:125.554267pt;}
.x20{left:126.869600pt;}
.x7{left:136.066667pt;}
.x23{left:138.287200pt;}
.x1b{left:147.402133pt;}
.x17{left:156.674667pt;}
.x18{left:161.687200pt;}
.xe{left:169.623867pt;}
.xf{left:174.636400pt;}
.x13{left:180.735200pt;}
.x21{left:182.792933pt;}
.x14{left:185.747733pt;}
.x25{left:203.036533pt;}
.xa{left:334.500000pt;}
.x1d{left:336.366667pt;}
.xb{left:357.166667pt;}
.x6{left:363.290800pt;}
.x3{left:413.209333pt;}
.x5{left:437.252400pt;}
.x4{left:457.626667pt;}
.x1e{left:467.818133pt;}
}

