
    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_ee9d709da8eec7f83e8ff032.woff')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_04d5ab64f88a385601384659.woff')format("woff");}.ff2{font-family:ff2;line-height:0.918000;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_593b7b56ddf19792616262f9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.289000;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_26c144b0f82fff28c9998819.woff')format("woff");}.ff4{font-family:ff4;line-height:0.689000;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_aa2def3b73891e3430abc2cc.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666000;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_ad6ffbff8113d755dde255c6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.735000;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_410dc652bfa091b8efa0f591.woff')format("woff");}.ff7{font-family:ff7;line-height:0.729581;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_6c81426411a5069f0c6fcc4c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.665000;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);}
.m2{transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m3{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:-2.382951px;}
.v1{vertical-align:-1.022163px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:7.143311px;}
.ls7{letter-spacing:0.000000px;}
.ls5{letter-spacing:2.809749px;}
.ls9{letter-spacing:2.887161px;}
.lsa{letter-spacing:3.227882px;}
.ls4{letter-spacing:5.266230px;}
.ls6{letter-spacing:5.985413px;}
.ls3{letter-spacing:16.955029px;}
.ls8{letter-spacing:18.530436px;}
.ls2{letter-spacing:19.747606px;}
.ls0{letter-spacing:20.087175px;}
.ls1{letter-spacing:20.087271px;}
.lsb{letter-spacing:20.323703px;}
.lsc{letter-spacing:28.740108px;}
.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;}
}
.ws3{word-spacing:-14.943900px;}
.ws30{word-spacing:-12.702300px;}
.ws20{word-spacing:-0.836858px;}
.ws85{word-spacing:-0.693397px;}
.wsb{word-spacing:-0.609711px;}
.ws94{word-spacing:-0.591778px;}
.ws7f{word-spacing:-0.400496px;}
.ws78{word-spacing:-0.155417px;}
.ws79{word-spacing:-0.119551px;}
.ws59{word-spacing:-0.107596px;}
.ws3d{word-spacing:-0.059776px;}
.ws35{word-spacing:-0.050809px;}
.ws9c{word-spacing:-0.041843px;}
.ws3b{word-spacing:0.000000px;}
.ws26{word-spacing:0.137484px;}
.ws4a{word-spacing:0.173349px;}
.ws5e{word-spacing:0.185305px;}
.ws8e{word-spacing:0.221170px;}
.wse8{word-spacing:0.274369px;}
.ws76{word-spacing:0.382563px;}
.wsa5{word-spacing:0.454295px;}
.ws43{word-spacing:0.514071px;}
.ws75{word-spacing:0.573846px;}
.wsd1{word-spacing:0.621666px;}
.wse5{word-spacing:0.757057px;}
.ws60{word-spacing:0.771105px;}
.wsd2{word-spacing:0.992275px;}
.ws8d{word-spacing:1.004229px;}
.ws90{word-spacing:1.064005px;}
.ws2a{word-spacing:1.207468px;}
.wsb6{word-spacing:1.243332px;}
.wsb7{word-spacing:1.297131px;}
.ws6e{word-spacing:1.428636px;}
.wse9{word-spacing:1.437900px;}
.wsbf{word-spacing:1.625897px;}
.wsd{word-spacing:1.709582px;}
.ws57{word-spacing:1.745448px;}
.wse7{word-spacing:1.818969px;}
.ws82{word-spacing:1.835112px;}
.ws36{word-spacing:1.869778px;}
.wsa{word-spacing:1.918797px;}
.ws48{word-spacing:1.936729px;}
.ws6d{word-spacing:1.978566px;}
.wsc{word-spacing:2.002483px;}
.wse{word-spacing:2.050302px;}
.wsa3{word-spacing:2.074214px;}
.ws5f{word-spacing:2.133990px;}
.ws55{word-spacing:2.217675px;}
.wsa4{word-spacing:2.259517px;}
.wsab{word-spacing:2.426890px;}
.wsdd{word-spacing:2.576329px;}
.ws47{word-spacing:2.660014px;}
.ws9e{word-spacing:2.707834px;}
.ws7d{word-spacing:2.809453px;}
.ws71{word-spacing:2.815431px;}
.wsdc{word-spacing:2.905094px;}
.ws77{word-spacing:2.929004px;}
.ws2b{word-spacing:3.150175px;}
.wse1{word-spacing:3.209950px;}
.ws98{word-spacing:3.269726px;}
.wsa9{word-spacing:3.293636px;}
.wsd5{word-spacing:3.622402px;}
.ws16{word-spacing:3.658267px;}
.ws97{word-spacing:3.682177px;}
.ws8c{word-spacing:3.789773px;}
.wseb{word-spacing:3.800527px;}
.ws92{word-spacing:3.807706px;}
.ws14{word-spacing:3.831616px;}
.ws51{word-spacing:3.855526px;}
.ws91{word-spacing:3.915302px;}
.ws50{word-spacing:4.022898px;}
.wsed{word-spacing:4.044413px;}
.ws31{word-spacing:4.074898px;}
.ws3a{word-spacing:4.095222px;}
.ws95{word-spacing:4.105383px;}
.ws32{word-spacing:4.130787px;}
.ws17{word-spacing:4.136472px;}
.ws38{word-spacing:4.146031px;}
.wsc8{word-spacing:4.148426px;}
.ws2f{word-spacing:4.161273px;}
.ws65{word-spacing:4.220158px;}
.ws37{word-spacing:4.237487px;}
.ws96{word-spacing:4.242568px;}
.ws8{word-spacing:4.247649px;}
.wsb0{word-spacing:4.267977px;}
.ws34{word-spacing:4.278135px;}
.wse0{word-spacing:4.279933px;}
.ws39{word-spacing:4.318782px;}
.ws33{word-spacing:4.354349px;}
.ws23{word-spacing:4.357641px;}
.ws4c{word-spacing:4.405462px;}
.wsea{word-spacing:4.420400px;}
.wsa8{word-spacing:4.477192px;}
.ws13{word-spacing:4.489148px;}
.ws62{word-spacing:4.513058px;}
.wsc2{word-spacing:4.704340px;}
.ws3f{word-spacing:4.829868px;}
.ws6c{word-spacing:4.877689px;}
.wsaa{word-spacing:4.901599px;}
.ws74{word-spacing:4.949419px;}
.wscd{word-spacing:4.961375px;}
.ws69{word-spacing:4.985285px;}
.ws4f{word-spacing:4.997240px;}
.ws80{word-spacing:5.003218px;}
.ws5{word-spacing:5.003273px;}
.wsc0{word-spacing:5.021150px;}
.ws22{word-spacing:5.039082px;}
.wsce{word-spacing:5.062994px;}
.ws6{word-spacing:5.086904px;}
.ws2{word-spacing:5.146679px;}
.ws4{word-spacing:5.170589px;}
.ws87{word-spacing:5.194499px;}
.ws7{word-spacing:5.224387px;}
.wsd6{word-spacing:5.260253px;}
.ws1d{word-spacing:5.272209px;}
.wsca{word-spacing:5.284163px;}
.ws7c{word-spacing:5.331984px;}
.wsc6{word-spacing:5.427624px;}
.wse6{word-spacing:5.441665px;}
.ws3c{word-spacing:5.511311px;}
.ws9{word-spacing:5.523265px;}
.ws3e{word-spacing:5.559131px;}
.ws41{word-spacing:5.600974px;}
.ws24{word-spacing:5.618906px;}
.ws5d{word-spacing:5.875941px;}
.ws1{word-spacing:5.932121px;}
.wsdf{word-spacing:6.037335px;}
.wsc5{word-spacing:6.049291px;}
.ws40{word-spacing:6.061239px;}
.ws45{word-spacing:6.085155px;}
.wscc{word-spacing:6.180797px;}
.ws58{word-spacing:6.216662px;}
.ws73{word-spacing:6.366101px;}
.ws7b{word-spacing:6.378057px;}
.ws2e{word-spacing:6.390011px;}
.wsec{word-spacing:6.407040px;}
.ws21{word-spacing:6.533472px;}
.ws8a{word-spacing:6.694867px;}
.wsb9{word-spacing:6.706823px;}
.wsb8{word-spacing:6.742687px;}
.ws86{word-spacing:6.892126px;}
.ws61{word-spacing:6.916037px;}
.wsd7{word-spacing:6.987767px;}
.wsc1{word-spacing:7.083408px;}
.ws5a{word-spacing:7.107318px;}
.ws9a{word-spacing:7.179050px;}
.ws7a{word-spacing:7.214915px;}
.ws70{word-spacing:7.316533px;}
.ws99{word-spacing:7.424129px;}
.ws0{word-spacing:7.574832px;}
.ws6b{word-spacing:7.633345px;}
.ws49{word-spacing:7.717030px;}
.wscb{word-spacing:7.746918px;}
.ws72{word-spacing:8.105572px;}
.ws67{word-spacing:8.278920px;}
.wsbd{word-spacing:8.338696px;}
.ws5c{word-spacing:8.422381px;}
.ws63{word-spacing:8.535955px;}
.ws5b{word-spacing:8.595730px;}
.ws8b{word-spacing:8.769081px;}
.wsbc{word-spacing:8.781035px;}
.ws42{word-spacing:8.828857px;}
.wsd4{word-spacing:9.079913px;}
.ws52{word-spacing:9.085891px;}
.ws46{word-spacing:9.265218px;}
.ws1c{word-spacing:9.277174px;}
.wsbb{word-spacing:9.301083px;}
.wse3{word-spacing:9.486078px;}
.ws7e{word-spacing:9.558118px;}
.wse2{word-spacing:9.638506px;}
.ws12{word-spacing:9.719513px;}
.ws25{word-spacing:9.910794px;}
.wsf{word-spacing:10.048278px;}
.ws10{word-spacing:10.155868px;}
.ws1b{word-spacing:10.383022px;}
.ws9b{word-spacing:10.472686px;}
.ws66{word-spacing:10.556371px;}
.ws93{word-spacing:10.634079px;}
.ws6a{word-spacing:10.741676px;}
.wsa6{word-spacing:10.789496px;}
.ws8f{word-spacing:10.849271px;}
.ws81{word-spacing:10.885137px;}
.ws29{word-spacing:10.932957px;}
.wsda{word-spacing:10.950890px;}
.wsdb{word-spacing:10.974800px;}
.ws4e{word-spacing:11.704061px;}
.wsaf{word-spacing:12.092603px;}
.ws1f{word-spacing:12.313773px;}
.ws2c{word-spacing:12.325729px;}
.wsd9{word-spacing:12.678405px;}
.ws28{word-spacing:12.774046px;}
.wsd8{word-spacing:12.815888px;}
.ws1e{word-spacing:12.863709px;}
.wsc3{word-spacing:12.875664px;}
.ws27{word-spacing:12.995215px;}
.wse4{word-spacing:13.728646px;}
.ws83{word-spacing:13.885872px;}
.ws84{word-spacing:13.909783px;}
.wsb1{word-spacing:14.035310px;}
.wsde{word-spacing:14.118997px;}
.ws56{word-spacing:14.178773px;}
.wsc7{word-spacing:14.399941px;}
.wsc4{word-spacing:14.919990px;}
.wsc9{word-spacing:15.057473px;}
.wscf{word-spacing:15.188980px;}
.wsa0{word-spacing:15.200934px;}
.wsba{word-spacing:15.583499px;}
.wsd0{word-spacing:15.738914px;}
.ws53{word-spacing:15.804670px;}
.ws64{word-spacing:15.972041px;}
.ws68{word-spacing:16.360582px;}
.ws1a{word-spacing:16.581752px;}
.wsef{word-spacing:16.843249px;}
.ws6f{word-spacing:16.844763px;}
.ws15{word-spacing:17.394699px;}
.ws89{word-spacing:17.675645px;}
.wsee{word-spacing:17.813705px;}
.ws4d{word-spacing:18.189714px;}
.wsb3{word-spacing:18.201670px;}
.wsa7{word-spacing:18.799426px;}
.wsa2{word-spacing:18.871157px;}
.ws88{word-spacing:19.092328px;}
.ws2d{word-spacing:19.588464px;}
.wsae{word-spacing:20.981235px;}
.wsad{word-spacing:21.369776px;}
.ws19{word-spacing:21.501284px;}
.ws9d{word-spacing:21.602903px;}
.wsb4{word-spacing:21.662678px;}
.wsb5{word-spacing:21.943621px;}
.ws9f{word-spacing:22.374006px;}
.ws18{word-spacing:22.565288px;}
.wsbe{word-spacing:22.906010px;}
.ws4b{word-spacing:23.186956px;}
.ws44{word-spacing:23.306507px;}
.wsac{word-spacing:24.603635px;}
.ws11{word-spacing:24.896537px;}
.wsd3{word-spacing:25.243235px;}
.wsa1{word-spacing:26.988683px;}
.wsb2{word-spacing:29.086805px;}
.wsf1{word-spacing:33.173326px;}
.wsf0{word-spacing:33.259701px;}
.ws54{word-spacing:38.166720px;}
._10{margin-left:-5.752338px;}
._2{margin-left:-1.876954px;}
._3{width:1.113755px;}
._11{width:13.897827px;}
._6{width:15.344396px;}
._f{width:16.408401px;}
._5{width:18.117984px;}
._7{width:19.833545px;}
._4{width:21.596927px;}
._b{width:23.133153px;}
._1{width:25.105708px;}
._a{width:26.749577px;}
._c{width:28.385504px;}
._14{width:30.136929px;}
._12{width:31.214819px;}
._0{width:32.728622px;}
._16{width:34.380996px;}
._d{width:35.668097px;}
._9{width:37.583039px;}
._8{width:38.770454px;}
._17{width:41.328847px;}
._13{width:43.146026px;}
._15{width:45.439490px;}
._18{width:47.765727px;}
._e{width:54.120828px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:33.869399px;}
.fs4{font-size:36.463200px;}
.fs6{font-size:39.845999px;}
.fs5{font-size:50.809198px;}
.fs0{font-size:56.787598px;}
.fs3{font-size:59.775599px;}
.fs2{font-size:71.730600px;}
.fs8{font-size:89.664000px;}
.fs1{font-size:95.641800px;}
.y0{bottom:0.000000px;}
.y46{bottom:68.286598px;}
.y3f{bottom:115.395318px;}
.y120{bottom:115.398059px;}
.y123{bottom:115.398183px;}
.y45{bottom:115.398445px;}
.y44{bottom:121.096046px;}
.y7a{bottom:129.193090px;}
.y3e{bottom:130.362438px;}
.y11f{bottom:130.365179px;}
.y122{bottom:130.365303px;}
.yb7{bottom:133.851780px;}
.y43{bottom:133.851894px;}
.y121{bottom:136.062904px;}
.y42{bottom:139.464455px;}
.y3d{bottom:145.329557px;}
.y11e{bottom:145.332298px;}
.y79{bottom:147.816178px;}
.yb6{bottom:148.818900px;}
.y11d{bottom:150.944847px;}
.y41{bottom:152.305504px;}
.yb5{bottom:154.431450px;}
.y40{bottom:157.918053px;}
.y3c{bottom:160.296677px;}
.y11c{bottom:163.785426px;}
.y78{bottom:166.524446px;}
.yb4{bottom:167.187185px;}
.y11b{bottom:178.667440px;}
.yb3{bottom:182.154305px;}
.yb2{bottom:187.766853px;}
.y3b{bottom:190.060705px;}
.y11a{bottom:193.634560px;}
.y77{bottom:193.737287px;}
.y119{bottom:199.247246px;}
.yb1{bottom:200.607694px;}
.y3a{bottom:205.027825px;}
.y2c{bottom:206.484415px;}
.y2d{bottom:206.654775px;}
.y76{bottom:212.360375px;}
.yb0{bottom:215.489708px;}
.y38{bottom:219.994944px;}
.y39{bottom:220.250261px;}
.yaf{bottom:221.187309px;}
.y2b{bottom:225.192682px;}
.y75{bottom:231.068643px;}
.y37{bottom:234.962064px;}
.y118{bottom:240.659173px;}
.y2a{bottom:243.815770px;}
.ye3{bottom:249.763870px;}
.y74{bottom:249.776911px;}
.y117{bottom:255.626293px;}
.y29{bottom:262.524038px;}
.y36{bottom:264.726092px;}
.yae{bottom:266.777813px;}
.ye2{bottom:268.386957px;}
.y73{bottom:268.399999px;}
.y116{bottom:270.593413px;}
.y35{bottom:279.693212px;}
.y28{bottom:281.232306px;}
.yad{bottom:285.400901px;}
.y115{bottom:285.475427px;}
.ye1{bottom:287.095225px;}
.y72{bottom:287.108267px;}
.y34{bottom:294.660332px;}
.y27{bottom:299.855394px;}
.y114{bottom:300.442547px;}
.yac{bottom:304.109169px;}
.ye0{bottom:305.803493px;}
.y71{bottom:305.816535px;}
.y33{bottom:309.627451px;}
.y113{bottom:315.409666px;}
.y26{bottom:318.563662px;}
.yab{bottom:322.817437px;}
.y70{bottom:324.439622px;}
.y112{bottom:330.376786px;}
.ydf{bottom:332.931154px;}
.y25{bottom:337.271930px;}
.y32{bottom:339.391480px;}
.yaa{bottom:341.440524px;}
.y6f{bottom:343.147890px;}
.y111{bottom:345.258800px;}
.yde{bottom:351.639422px;}
.y31{bottom:354.358599px;}
.y24{bottom:355.895017px;}
.ya9{bottom:360.148792px;}
.y110{bottom:360.225920px;}
.y6e{bottom:361.856158px;}
.y30{bottom:369.325719px;}
.ydd{bottom:370.347690px;}
.y23{bottom:374.603285px;}
.y10f{bottom:375.193039px;}
.ya8{bottom:378.857060px;}
.y6d{bottom:380.479246px;}
.y2e{bottom:384.207733px;}
.y2f{bottom:384.803471px;}
.ydc{bottom:388.970778px;}
.y10e{bottom:390.160159px;}
.y22{bottom:393.226373px;}
.ya7{bottom:397.480148px;}
.y6c{bottom:399.187514px;}
.y10d{bottom:405.042173px;}
.ydb{bottom:407.679046px;}
.y21{bottom:411.934641px;}
.ya6{bottom:416.188416px;}
.y6b{bottom:417.895782px;}
.y10c{bottom:420.009293px;}
.yda{bottom:426.387314px;}
.yd7{bottom:426.389853px;}
.yd8{bottom:426.815754px;}
.yd9{bottom:433.020309px;}
.ya5{bottom:434.896684px;}
.y9{bottom:434.977253px;}
.y6a{bottom:436.518870px;}
.y20{bottom:439.147482px;}
.yd5{bottom:445.012940px;}
.yd6{bottom:445.692888px;}
.y10b{bottom:453.517828px;}
.ya4{bottom:453.519772px;}
.y8{bottom:453.685521px;}
.y69{bottom:455.227138px;}
.y1f{bottom:457.770570px;}
.yd4{bottom:463.721208px;}
.y10a{bottom:472.226096px;}
.ya3{bottom:472.228040px;}
.y7{bottom:472.308609px;}
.y68{bottom:473.935405px;}
.y1e{bottom:476.478838px;}
.yd3{bottom:482.429476px;}
.y109{bottom:490.934364px;}
.ya2{bottom:490.936308px;}
.y67{bottom:492.558493px;}
.y1d{bottom:495.187106px;}
.yd2{bottom:501.052564px;}
.y108{bottom:509.557452px;}
.ya1{bottom:509.559395px;}
.y66{bottom:511.266761px;}
.yd1{bottom:519.760832px;}
.y1c{bottom:526.566306px;}
.y107{bottom:528.265720px;}
.ya0{bottom:528.267663px;}
.y65{bottom:529.975029px;}
.yd0{bottom:538.469100px;}
.y1b{bottom:545.274574px;}
.y106{bottom:546.973988px;}
.y9f{bottom:546.975931px;}
.y64{bottom:548.598117px;}
.yce{bottom:557.102690px;}
.ycf{bottom:563.725800px;}
.y1a{bottom:563.982842px;}
.y105{bottom:565.597076px;}
.y9e{bottom:565.599019px;}
.y63{bottom:567.306385px;}
.ycd{bottom:575.810958px;}
.y19{bottom:582.605930px;}
.y104{bottom:584.305344px;}
.y9d{bottom:584.307287px;}
.y102{bottom:584.308907px;}
.y62{bottom:585.929472px;}
.y103{bottom:590.938522px;}
.y18{bottom:601.314198px;}
.y9c{bottom:602.930375px;}
.y100{bottom:602.931995px;}
.ycc{bottom:602.938619px;}
.y101{bottom:603.611942px;}
.y61{bottom:604.637740px;}
.y17{bottom:620.022466px;}
.y9b{bottom:621.638642px;}
.yff{bottom:621.640263px;}
.ycb{bottom:621.646887px;}
.y60{bottom:623.346008px;}
.y15{bottom:638.645554px;}
.y13{bottom:638.647174px;}
.y16{bottom:639.325501px;}
.y9a{bottom:640.346910px;}
.yfe{bottom:640.348531px;}
.yca{bottom:640.355155px;}
.y14{bottom:645.363602px;}
.y5f{bottom:650.473669px;}
.y12{bottom:657.355442px;}
.yfd{bottom:658.971618px;}
.yc9{bottom:658.978243px;}
.y99{bottom:667.474571px;}
.y5e{bottom:669.181937px;}
.y11{bottom:676.063710px;}
.y98{bottom:686.182839px;}
.yfc{bottom:686.184459px;}
.yc8{bottom:686.191084px;}
.y5d{bottom:687.890205px;}
.y10{bottom:694.686797px;}
.y97{bottom:704.891107px;}
.yfb{bottom:704.892727px;}
.yc7{bottom:704.899352px;}
.y5c{bottom:706.513293px;}
.yf{bottom:713.395065px;}
.yd{bottom:713.395549px;}
.ye{bottom:720.028198px;}
.yfa{bottom:723.515815px;}
.yc6{bottom:723.522440px;}
.y5b{bottom:725.221561px;}
.y96{bottom:732.018768px;}
.yc{bottom:732.103817px;}
.yc5{bottom:742.230707px;}
.ya{bottom:750.726904px;}
.yf9{bottom:750.728656px;}
.y94{bottom:750.730368px;}
.yb{bottom:750.897265px;}
.y5a{bottom:752.434402px;}
.y95{bottom:757.360519px;}
.yc4{bottom:760.938975px;}
.yf8{bottom:769.436924px;}
.y93{bottom:769.438636px;}
.y59{bottom:771.057490px;}
.yc3{bottom:779.562063px;}
.yf7{bottom:788.060012px;}
.y92{bottom:788.061724px;}
.y58{bottom:789.765758px;}
.y6{bottom:795.117920px;}
.yc2{bottom:798.270331px;}
.yf6{bottom:806.768280px;}
.yf4{bottom:806.769642px;}
.y91{bottom:806.769992px;}
.y57{bottom:808.474026px;}
.yf5{bottom:813.401367px;}
.yc1{bottom:816.978599px;}
.yf2{bottom:825.477909px;}
.y90{bottom:825.478260px;}
.yf3{bottom:826.072677px;}
.y56{bottom:827.097113px;}
.yc0{bottom:835.601687px;}
.yf1{bottom:844.100997px;}
.y8f{bottom:844.101347px;}
.y55{bottom:845.805381px;}
.ybf{bottom:854.309955px;}
.yf0{bottom:862.809265px;}
.y8e{bottom:862.809615px;}
.y54{bottom:864.513649px;}
.ybe{bottom:873.018223px;}
.y8d{bottom:881.517883px;}
.y8b{bottom:881.518803px;}
.yef{bottom:881.523182px;}
.y53{bottom:883.136737px;}
.y8c{bottom:888.150879px;}
.ybd{bottom:891.641310px;}
.y89{bottom:900.141891px;}
.yee{bottom:900.146270px;}
.y8a{bottom:900.821838px;}
.y52{bottom:901.845005px;}
.ybc{bottom:910.349578px;}
.y88{bottom:918.850159px;}
.y86{bottom:918.850509px;}
.yed{bottom:918.854538px;}
.y51{bottom:920.553273px;}
.y87{bottom:925.483154px;}
.ybb{bottom:929.057846px;}
.y4{bottom:929.905243px;}
.y5{bottom:930.160784px;}
.y84{bottom:937.558777px;}
.yec{bottom:937.562806px;}
.y85{bottom:938.153544px;}
.y50{bottom:939.176361px;}
.yba{bottom:947.680934px;}
.yeb{bottom:956.185894px;}
.y82{bottom:956.200408px;}
.y83{bottom:962.815521px;}
.y4f{bottom:966.389202px;}
.y3{bottom:974.125763px;}
.yea{bottom:974.894162px;}
.y81{bottom:974.908676px;}
.y4e{bottom:985.097470px;}
.ye9{bottom:993.602430px;}
.y80{bottom:993.616944px;}
.y4d{bottom:1003.720558px;}
.y2{bottom:1008.056396px;}
.ye8{bottom:1012.225517px;}
.y7f{bottom:1012.240032px;}
.y4c{bottom:1022.428826px;}
.ye7{bottom:1030.933785px;}
.y7e{bottom:1030.948300px;}
.y4b{bottom:1041.137094px;}
.ye6{bottom:1049.642053px;}
.y7d{bottom:1049.656568px;}
.y4a{bottom:1068.264755px;}
.ye5{bottom:1068.265141px;}
.y7c{bottom:1068.279656px;}
.y1{bottom:1076.853333px;}
.y49{bottom:1086.973022px;}
.ye4{bottom:1086.973409px;}
.y7b{bottom:1086.987924px;}
.y48{bottom:1109.423938px;}
.yb8{bottom:1126.346283px;}
.y47{bottom:1126.601257px;}
.yb9{bottom:1126.856915px;}
.ha{height:23.302147px;}
.h8{height:27.414047px;}
.h6{height:34.956728px;}
.hc{height:36.226958px;}
.h9{height:37.090715px;}
.h2{height:39.069867px;}
.h7{height:41.125612px;}
.h5{height:42.620002px;}
.h4{height:51.143918px;}
.hb{height:54.657439px;}
.h3{height:68.192603px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:76.535402px;}
.x1b{left:78.661348px;}
.x1{left:85.039352px;}
.x29{left:87.675602px;}
.x4{left:93.543303px;}
.xf{left:121.096340px;}
.x3{left:153.580171px;}
.x20{left:212.512936px;}
.x21{left:324.084892px;}
.x22{left:333.694496px;}
.x1f{left:356.569137px;}
.x10{left:365.925543px;}
.x1c{left:386.843994px;}
.x1e{left:428.088135px;}
.x1d{left:431.404931px;}
.x5{left:459.211560px;}
.xe{left:471.203592px;}
.x2a{left:475.114929px;}
.x13{left:476.220291px;}
.x9{left:485.914810px;}
.xa{left:496.119598px;}
.x15{left:525.033005px;}
.x23{left:526.393661px;}
.x26{left:532.432011px;}
.x16{left:539.744705px;}
.x24{left:566.447072px;}
.x27{left:572.484879px;}
.x28{left:588.047104px;}
.x7{left:599.442444px;}
.x8{left:611.177856px;}
.x25{left:631.417191px;}
.x14{left:636.433835px;}
.x6{left:639.494765px;}
.xb{left:644.256981px;}
.xc{left:650.040756px;}
.xd{left:660.330597px;}
.x18{left:703.360519px;}
.x19{left:712.714783px;}
.x11{left:756.935257px;}
.x17{left:776.491934px;}
.x12{left:799.795074px;}
.x1a{left:810.765106px;}
@media print{
.v3{vertical-align:-2.118179pt;}
.v1{vertical-align:-0.908589pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:6.349609pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5{letter-spacing:2.497554pt;}
.ls9{letter-spacing:2.566366pt;}
.lsa{letter-spacing:2.869229pt;}
.ls4{letter-spacing:4.681094pt;}
.ls6{letter-spacing:5.320367pt;}
.ls3{letter-spacing:15.071137pt;}
.ls8{letter-spacing:16.471498pt;}
.ls2{letter-spacing:17.553427pt;}
.ls0{letter-spacing:17.855267pt;}
.ls1{letter-spacing:17.855352pt;}
.lsb{letter-spacing:18.065514pt;}
.lsc{letter-spacing:25.546762pt;}
.ws3{word-spacing:-13.283466pt;}
.ws30{word-spacing:-11.290933pt;}
.ws20{word-spacing:-0.743874pt;}
.ws85{word-spacing:-0.616353pt;}
.wsb{word-spacing:-0.541965pt;}
.ws94{word-spacing:-0.526025pt;}
.ws7f{word-spacing:-0.355997pt;}
.ws78{word-spacing:-0.138148pt;}
.ws79{word-spacing:-0.106268pt;}
.ws59{word-spacing:-0.095641pt;}
.ws3d{word-spacing:-0.053134pt;}
.ws35{word-spacing:-0.045164pt;}
.ws9c{word-spacing:-0.037194pt;}
.ws3b{word-spacing:0.000000pt;}
.ws26{word-spacing:0.122208pt;}
.ws4a{word-spacing:0.154088pt;}
.ws5e{word-spacing:0.164715pt;}
.ws8e{word-spacing:0.196595pt;}
.wse8{word-spacing:0.243884pt;}
.ws76{word-spacing:0.340056pt;}
.wsa5{word-spacing:0.403818pt;}
.ws43{word-spacing:0.456952pt;}
.ws75{word-spacing:0.510085pt;}
.wsd1{word-spacing:0.552592pt;}
.wse5{word-spacing:0.672939pt;}
.ws60{word-spacing:0.685427pt;}
.wsd2{word-spacing:0.882022pt;}
.ws8d{word-spacing:0.892648pt;}
.ws90{word-spacing:0.945782pt;}
.ws2a{word-spacing:1.073305pt;}
.wsb6{word-spacing:1.105184pt;}
.wsb7{word-spacing:1.153006pt;}
.ws6e{word-spacing:1.269899pt;}
.wse9{word-spacing:1.278133pt;}
.wsbf{word-spacing:1.445242pt;}
.wsd{word-spacing:1.519629pt;}
.ws57{word-spacing:1.551510pt;}
.wse7{word-spacing:1.616861pt;}
.ws82{word-spacing:1.631210pt;}
.ws36{word-spacing:1.662025pt;}
.wsa{word-spacing:1.705597pt;}
.ws48{word-spacing:1.721537pt;}
.ws6d{word-spacing:1.758725pt;}
.wsc{word-spacing:1.779984pt;}
.wse{word-spacing:1.822491pt;}
.wsa3{word-spacing:1.843746pt;}
.ws5f{word-spacing:1.896880pt;}
.ws55{word-spacing:1.971267pt;}
.wsa4{word-spacing:2.008459pt;}
.wsab{word-spacing:2.157235pt;}
.wsdd{word-spacing:2.290070pt;}
.ws47{word-spacing:2.364457pt;}
.ws9e{word-spacing:2.406963pt;}
.ws7d{word-spacing:2.497292pt;}
.ws71{word-spacing:2.502605pt;}
.wsdc{word-spacing:2.582306pt;}
.ws77{word-spacing:2.603559pt;}
.ws2b{word-spacing:2.800155pt;}
.wse1{word-spacing:2.853289pt;}
.ws98{word-spacing:2.906423pt;}
.wsa9{word-spacing:2.927676pt;}
.wsd5{word-spacing:3.219913pt;}
.ws16{word-spacing:3.251793pt;}
.ws97{word-spacing:3.273046pt;}
.ws8c{word-spacing:3.368687pt;}
.wseb{word-spacing:3.378247pt;}
.ws92{word-spacing:3.384628pt;}
.ws14{word-spacing:3.405881pt;}
.ws51{word-spacing:3.427134pt;}
.ws91{word-spacing:3.480268pt;}
.ws50{word-spacing:3.575909pt;}
.wsed{word-spacing:3.595033pt;}
.ws31{word-spacing:3.622132pt;}
.ws3a{word-spacing:3.640197pt;}
.ws95{word-spacing:3.649229pt;}
.ws32{word-spacing:3.671811pt;}
.ws17{word-spacing:3.676864pt;}
.ws38{word-spacing:3.685361pt;}
.wsc8{word-spacing:3.687490pt;}
.ws2f{word-spacing:3.698909pt;}
.ws65{word-spacing:3.751251pt;}
.ws37{word-spacing:3.766655pt;}
.ws96{word-spacing:3.771172pt;}
.ws8{word-spacing:3.775688pt;}
.wsb0{word-spacing:3.793758pt;}
.ws34{word-spacing:3.802787pt;}
.wse0{word-spacing:3.804385pt;}
.ws39{word-spacing:3.838917pt;}
.ws33{word-spacing:3.870532pt;}
.ws23{word-spacing:3.873459pt;}
.ws4c{word-spacing:3.915967pt;}
.wsea{word-spacing:3.929245pt;}
.wsa8{word-spacing:3.979726pt;}
.ws13{word-spacing:3.990354pt;}
.ws62{word-spacing:4.011607pt;}
.wsc2{word-spacing:4.181636pt;}
.ws3f{word-spacing:4.293216pt;}
.ws6c{word-spacing:4.335724pt;}
.wsaa{word-spacing:4.356977pt;}
.ws74{word-spacing:4.399483pt;}
.wscd{word-spacing:4.410111pt;}
.ws69{word-spacing:4.431364pt;}
.ws4f{word-spacing:4.441991pt;}
.ws80{word-spacing:4.447305pt;}
.ws5{word-spacing:4.447354pt;}
.wsc0{word-spacing:4.463245pt;}
.ws22{word-spacing:4.479184pt;}
.wsce{word-spacing:4.500439pt;}
.ws6{word-spacing:4.521692pt;}
.ws2{word-spacing:4.574826pt;}
.ws4{word-spacing:4.596079pt;}
.ws87{word-spacing:4.617333pt;}
.ws7{word-spacing:4.643900pt;}
.wsd6{word-spacing:4.675780pt;}
.ws1d{word-spacing:4.686408pt;}
.wsca{word-spacing:4.697033pt;}
.ws7c{word-spacing:4.739541pt;}
.wsc6{word-spacing:4.824554pt;}
.wse6{word-spacing:4.837036pt;}
.ws3c{word-spacing:4.898943pt;}
.ws9{word-spacing:4.909569pt;}
.ws3e{word-spacing:4.941449pt;}
.ws41{word-spacing:4.978644pt;}
.ws24{word-spacing:4.994583pt;}
.ws5d{word-spacing:5.223058pt;}
.ws1{word-spacing:5.272997pt;}
.wsdf{word-spacing:5.366520pt;}
.wsc5{word-spacing:5.377148pt;}
.ws40{word-spacing:5.387768pt;}
.ws45{word-spacing:5.409027pt;}
.wscc{word-spacing:5.494041pt;}
.ws58{word-spacing:5.525922pt;}
.ws73{word-spacing:5.658757pt;}
.ws7b{word-spacing:5.669384pt;}
.ws2e{word-spacing:5.680010pt;}
.wsec{word-spacing:5.695147pt;}
.ws21{word-spacing:5.807531pt;}
.ws8a{word-spacing:5.950993pt;}
.wsb9{word-spacing:5.961620pt;}
.wsb8{word-spacing:5.993499pt;}
.ws86{word-spacing:6.126334pt;}
.ws61{word-spacing:6.147589pt;}
.wsd7{word-spacing:6.211349pt;}
.wsc1{word-spacing:6.296363pt;}
.ws5a{word-spacing:6.317616pt;}
.ws9a{word-spacing:6.381378pt;}
.ws7a{word-spacing:6.413258pt;}
.ws70{word-spacing:6.503585pt;}
.ws99{word-spacing:6.599226pt;}
.ws0{word-spacing:6.733184pt;}
.ws6b{word-spacing:6.785195pt;}
.ws49{word-spacing:6.859582pt;}
.wscb{word-spacing:6.886149pt;}
.ws72{word-spacing:7.204952pt;}
.ws67{word-spacing:7.359040pt;}
.wsbd{word-spacing:7.412174pt;}
.ws5c{word-spacing:7.486561pt;}
.ws63{word-spacing:7.587515pt;}
.ws5b{word-spacing:7.640649pt;}
.ws8b{word-spacing:7.794739pt;}
.wsbc{word-spacing:7.805365pt;}
.ws42{word-spacing:7.847873pt;}
.wsd4{word-spacing:8.071034pt;}
.ws52{word-spacing:8.076348pt;}
.ws46{word-spacing:8.235749pt;}
.ws1c{word-spacing:8.246377pt;}
.wsbb{word-spacing:8.267630pt;}
.wse3{word-spacing:8.432069pt;}
.ws7e{word-spacing:8.496105pt;}
.wse2{word-spacing:8.567560pt;}
.ws12{word-spacing:8.639567pt;}
.ws25{word-spacing:8.809594pt;}
.wsf{word-spacing:8.931803pt;}
.ws10{word-spacing:9.027438pt;}
.ws1b{word-spacing:9.229353pt;}
.ws9b{word-spacing:9.309054pt;}
.ws66{word-spacing:9.383441pt;}
.ws93{word-spacing:9.452514pt;}
.ws6a{word-spacing:9.548156pt;}
.wsa6{word-spacing:9.590663pt;}
.ws8f{word-spacing:9.643797pt;}
.ws81{word-spacing:9.675677pt;}
.ws29{word-spacing:9.718184pt;}
.wsda{word-spacing:9.734125pt;}
.wsdb{word-spacing:9.755378pt;}
.ws4e{word-spacing:10.403610pt;}
.wsaf{word-spacing:10.748980pt;}
.ws1f{word-spacing:10.945576pt;}
.ws2c{word-spacing:10.956204pt;}
.wsd9{word-spacing:11.269693pt;}
.ws28{word-spacing:11.354708pt;}
.wsd8{word-spacing:11.391900pt;}
.ws1e{word-spacing:11.434408pt;}
.wsc3{word-spacing:11.445034pt;}
.ws27{word-spacing:11.551302pt;}
.wse4{word-spacing:12.203241pt;}
.ws83{word-spacing:12.342997pt;}
.ws84{word-spacing:12.364251pt;}
.wsb1{word-spacing:12.475831pt;}
.wsde{word-spacing:12.550220pt;}
.ws56{word-spacing:12.603354pt;}
.wsc7{word-spacing:12.799948pt;}
.wsc4{word-spacing:13.262213pt;}
.wsc9{word-spacing:13.384420pt;}
.wscf{word-spacing:13.501316pt;}
.wsa0{word-spacing:13.511941pt;}
.wsba{word-spacing:13.851999pt;}
.wsd0{word-spacing:13.990146pt;}
.ws53{word-spacing:14.048595pt;}
.ws64{word-spacing:14.197369pt;}
.ws68{word-spacing:14.542740pt;}
.ws1a{word-spacing:14.739336pt;}
.wsef{word-spacing:14.971777pt;}
.ws6f{word-spacing:14.973123pt;}
.ws15{word-spacing:15.461955pt;}
.ws89{word-spacing:15.711685pt;}
.wsee{word-spacing:15.834404pt;}
.ws4d{word-spacing:16.168635pt;}
.wsb3{word-spacing:16.179262pt;}
.wsa7{word-spacing:16.710601pt;}
.wsa2{word-spacing:16.774362pt;}
.ws88{word-spacing:16.970958pt;}
.ws2d{word-spacing:17.411968pt;}
.wsae{word-spacing:18.649987pt;}
.wsad{word-spacing:18.995357pt;}
.ws19{word-spacing:19.112252pt;}
.ws9d{word-spacing:19.202580pt;}
.wsb4{word-spacing:19.255714pt;}
.wsb5{word-spacing:19.505441pt;}
.ws9f{word-spacing:19.888005pt;}
.ws18{word-spacing:20.058034pt;}
.wsbe{word-spacing:20.360898pt;}
.ws4b{word-spacing:20.610628pt;}
.ws44{word-spacing:20.716895pt;}
.wsac{word-spacing:21.869898pt;}
.ws11{word-spacing:22.130255pt;}
.wsd3{word-spacing:22.438431pt;}
.wsa1{word-spacing:23.989940pt;}
.wsb2{word-spacing:25.854938pt;}
.wsf1{word-spacing:29.487401pt;}
.wsf0{word-spacing:29.564179pt;}
.ws54{word-spacing:33.925973pt;}
._10{margin-left:-5.113189pt;}
._2{margin-left:-1.668403pt;}
._3{width:0.990004pt;}
._11{width:12.353624pt;}
._6{width:13.639463pt;}
._f{width:14.585246pt;}
._5{width:16.104874pt;}
._7{width:17.629817pt;}
._4{width:19.197268pt;}
._b{width:20.562803pt;}
._1{width:22.316185pt;}
._a{width:23.777402pt;}
._c{width:25.231559pt;}
._14{width:26.788382pt;}
._12{width:27.746506pt;}
._0{width:29.092109pt;}
._16{width:30.560885pt;}
._d{width:31.704975pt;}
._9{width:33.407146pt;}
._8{width:34.462626pt;}
._17{width:36.736753pt;}
._13{width:38.352023pt;}
._15{width:40.390657pt;}
._18{width:42.458424pt;}
._e{width:48.107403pt;}
.fs7{font-size:30.106133pt;}
.fs4{font-size:32.411733pt;}
.fs6{font-size:35.418666pt;}
.fs5{font-size:45.163732pt;}
.fs0{font-size:50.477865pt;}
.fs3{font-size:53.133865pt;}
.fs2{font-size:63.760533pt;}
.fs8{font-size:79.701333pt;}
.fs1{font-size:85.014933pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:60.699198pt;}
.y3f{bottom:102.573616pt;}
.y120{bottom:102.576052pt;}
.y123{bottom:102.576163pt;}
.y45{bottom:102.576396pt;}
.y44{bottom:107.640930pt;}
.y7a{bottom:114.838303pt;}
.y3e{bottom:115.877722pt;}
.y11f{bottom:115.880159pt;}
.y122{bottom:115.880269pt;}
.yb7{bottom:118.979360pt;}
.y43{bottom:118.979462pt;}
.y121{bottom:120.944804pt;}
.y42{bottom:123.968404pt;}
.y3d{bottom:129.181829pt;}
.y11e{bottom:129.184265pt;}
.y79{bottom:131.392158pt;}
.yb6{bottom:132.283467pt;}
.y11d{bottom:134.173197pt;}
.y41{bottom:135.382670pt;}
.yb5{bottom:137.272400pt;}
.y40{bottom:140.371602pt;}
.y3c{bottom:142.485935pt;}
.y11c{bottom:145.587045pt;}
.y78{bottom:148.021730pt;}
.yb4{bottom:148.610831pt;}
.y11b{bottom:158.815502pt;}
.yb3{bottom:161.914937pt;}
.yb2{bottom:166.903870pt;}
.y3b{bottom:168.942849pt;}
.y11a{bottom:172.119609pt;}
.y77{bottom:172.210922pt;}
.y119{bottom:177.108663pt;}
.yb1{bottom:178.317950pt;}
.y3a{bottom:182.246955pt;}
.y2c{bottom:183.541702pt;}
.y2d{bottom:183.693133pt;}
.y76{bottom:188.764778pt;}
.yb0{bottom:191.546407pt;}
.y38{bottom:195.551062pt;}
.y39{bottom:195.778009pt;}
.yaf{bottom:196.610942pt;}
.y2b{bottom:200.171273pt;}
.y75{bottom:205.394349pt;}
.y37{bottom:208.855168pt;}
.y118{bottom:213.919265pt;}
.y2a{bottom:216.725129pt;}
.ye3{bottom:222.012329pt;}
.y74{bottom:222.023921pt;}
.y117{bottom:227.223372pt;}
.y29{bottom:233.354701pt;}
.y36{bottom:235.312082pt;}
.yae{bottom:237.135834pt;}
.ye2{bottom:238.566184pt;}
.y73{bottom:238.577777pt;}
.y116{bottom:240.527478pt;}
.y35{bottom:248.616189pt;}
.y28{bottom:249.984272pt;}
.yad{bottom:253.689690pt;}
.y115{bottom:253.755935pt;}
.ye1{bottom:255.195756pt;}
.y72{bottom:255.207348pt;}
.y34{bottom:261.920295pt;}
.y27{bottom:266.538128pt;}
.y114{bottom:267.060041pt;}
.yac{bottom:270.319261pt;}
.ye0{bottom:271.825327pt;}
.y71{bottom:271.836920pt;}
.y33{bottom:275.224401pt;}
.y113{bottom:280.364148pt;}
.y26{bottom:283.167699pt;}
.yab{bottom:286.948833pt;}
.y70{bottom:288.390775pt;}
.y112{bottom:293.668254pt;}
.ydf{bottom:295.938804pt;}
.y25{bottom:299.797271pt;}
.y32{bottom:301.681315pt;}
.yaa{bottom:303.502688pt;}
.y6f{bottom:305.020347pt;}
.y111{bottom:306.896711pt;}
.yde{bottom:312.568375pt;}
.y31{bottom:314.985422pt;}
.y24{bottom:316.351127pt;}
.ya9{bottom:320.132260pt;}
.y110{bottom:320.200817pt;}
.y6e{bottom:321.649918pt;}
.y30{bottom:328.289528pt;}
.ydd{bottom:329.197947pt;}
.y23{bottom:332.980698pt;}
.y10f{bottom:333.504924pt;}
.ya8{bottom:336.761831pt;}
.y6d{bottom:338.203774pt;}
.y2e{bottom:341.517985pt;}
.y2f{bottom:342.047530pt;}
.ydc{bottom:345.751803pt;}
.y10e{bottom:346.809030pt;}
.y22{bottom:349.534554pt;}
.ya7{bottom:353.315687pt;}
.y6c{bottom:354.833346pt;}
.y10d{bottom:360.037487pt;}
.ydb{bottom:362.381374pt;}
.y21{bottom:366.164125pt;}
.ya6{bottom:369.945259pt;}
.y6b{bottom:371.462917pt;}
.y10c{bottom:373.341593pt;}
.yda{bottom:379.010946pt;}
.yd7{bottom:379.013202pt;}
.yd8{bottom:379.391781pt;}
.yd9{bottom:384.906942pt;}
.ya5{bottom:386.574830pt;}
.y9{bottom:386.646447pt;}
.y6a{bottom:388.016773pt;}
.y20{bottom:390.353318pt;}
.yd5{bottom:395.567058pt;}
.yd6{bottom:396.171456pt;}
.y10b{bottom:403.126959pt;}
.ya4{bottom:403.128686pt;}
.y8{bottom:403.276019pt;}
.y69{bottom:404.646344pt;}
.y1f{bottom:406.907173pt;}
.yd4{bottom:412.196630pt;}
.y10a{bottom:419.756530pt;}
.ya3{bottom:419.758257pt;}
.y7{bottom:419.829875pt;}
.y68{bottom:421.275916pt;}
.y1e{bottom:423.536745pt;}
.yd3{bottom:428.826201pt;}
.y109{bottom:436.386102pt;}
.ya2{bottom:436.387829pt;}
.y67{bottom:437.829772pt;}
.y1d{bottom:440.166316pt;}
.yd2{bottom:445.380057pt;}
.y108{bottom:452.939957pt;}
.ya1{bottom:452.941685pt;}
.y66{bottom:454.459343pt;}
.yd1{bottom:462.009628pt;}
.y1c{bottom:468.058939pt;}
.y107{bottom:469.569529pt;}
.ya0{bottom:469.571256pt;}
.y65{bottom:471.088915pt;}
.yd0{bottom:478.639200pt;}
.y1b{bottom:484.688510pt;}
.y106{bottom:486.199100pt;}
.y9f{bottom:486.200828pt;}
.y64{bottom:487.642770pt;}
.yce{bottom:495.202391pt;}
.ycf{bottom:501.089600pt;}
.y1a{bottom:501.318082pt;}
.y105{bottom:502.752956pt;}
.y9e{bottom:502.754683pt;}
.y63{bottom:504.272342pt;}
.ycd{bottom:511.831963pt;}
.y19{bottom:517.871938pt;}
.y104{bottom:519.382528pt;}
.y9d{bottom:519.384255pt;}
.y102{bottom:519.385695pt;}
.y62{bottom:520.826198pt;}
.y103{bottom:525.278687pt;}
.y18{bottom:534.501509pt;}
.y9c{bottom:535.938111pt;}
.y100{bottom:535.939551pt;}
.ycc{bottom:535.945439pt;}
.y101{bottom:536.543949pt;}
.y61{bottom:537.455769pt;}
.y17{bottom:551.131081pt;}
.y9b{bottom:552.567682pt;}
.yff{bottom:552.569122pt;}
.ycb{bottom:552.575011pt;}
.y60{bottom:554.085341pt;}
.y15{bottom:567.684937pt;}
.y13{bottom:567.686377pt;}
.y16{bottom:568.289334pt;}
.y9a{bottom:569.197254pt;}
.yfe{bottom:569.198694pt;}
.yca{bottom:569.204582pt;}
.y14{bottom:573.656535pt;}
.y5f{bottom:578.198817pt;}
.y12{bottom:584.315948pt;}
.yfd{bottom:585.752550pt;}
.yc9{bottom:585.758438pt;}
.y99{bottom:593.310730pt;}
.y5e{bottom:594.828389pt;}
.y11{bottom:600.945520pt;}
.y98{bottom:609.940302pt;}
.yfc{bottom:609.941742pt;}
.yc8{bottom:609.947630pt;}
.y5d{bottom:611.457960pt;}
.y10{bottom:617.499375pt;}
.y97{bottom:626.569873pt;}
.yfb{bottom:626.571313pt;}
.yc7{bottom:626.577202pt;}
.y5c{bottom:628.011816pt;}
.yf{bottom:634.128947pt;}
.yd{bottom:634.129377pt;}
.ye{bottom:640.025065pt;}
.yfa{bottom:643.125169pt;}
.yc6{bottom:643.131057pt;}
.y5b{bottom:644.641387pt;}
.y96{bottom:650.683350pt;}
.yc{bottom:650.758948pt;}
.yc5{bottom:659.760629pt;}
.ya{bottom:667.312804pt;}
.yf9{bottom:667.314361pt;}
.y94{bottom:667.315883pt;}
.yb{bottom:667.464235pt;}
.y5a{bottom:668.830580pt;}
.y95{bottom:673.209351pt;}
.yc4{bottom:676.390200pt;}
.yf8{bottom:683.943933pt;}
.y93{bottom:683.945454pt;}
.y59{bottom:685.384435pt;}
.yc3{bottom:692.944056pt;}
.yf7{bottom:700.497788pt;}
.y92{bottom:700.499310pt;}
.y58{bottom:702.014007pt;}
.y6{bottom:706.771484pt;}
.yc2{bottom:709.573628pt;}
.yf6{bottom:717.127360pt;}
.yf4{bottom:717.128570pt;}
.y91{bottom:717.128882pt;}
.y57{bottom:718.643578pt;}
.yf5{bottom:723.023437pt;}
.yc1{bottom:726.203199pt;}
.yf2{bottom:733.758142pt;}
.y90{bottom:733.758453pt;}
.yf3{bottom:734.286824pt;}
.y56{bottom:735.197434pt;}
.yc0{bottom:742.757055pt;}
.yf1{bottom:750.311997pt;}
.y8f{bottom:750.312309pt;}
.y55{bottom:751.827006pt;}
.ybf{bottom:759.386626pt;}
.yf0{bottom:766.941569pt;}
.y8e{bottom:766.941880pt;}
.y54{bottom:768.456577pt;}
.ybe{bottom:776.016198pt;}
.y8d{bottom:783.571452pt;}
.y8b{bottom:783.572269pt;}
.yef{bottom:783.576162pt;}
.y53{bottom:785.010433pt;}
.y8c{bottom:789.467448pt;}
.ybd{bottom:792.570054pt;}
.y89{bottom:800.126125pt;}
.yee{bottom:800.130018pt;}
.y8a{bottom:800.730523pt;}
.y52{bottom:801.640004pt;}
.ybc{bottom:809.199625pt;}
.y88{bottom:816.755697pt;}
.y86{bottom:816.756008pt;}
.yed{bottom:816.759589pt;}
.y51{bottom:818.269576pt;}
.y87{bottom:822.651693pt;}
.ybb{bottom:825.829197pt;}
.y4{bottom:826.582438pt;}
.y5{bottom:826.809585pt;}
.y84{bottom:833.385579pt;}
.yec{bottom:833.389161pt;}
.y85{bottom:833.914261pt;}
.y50{bottom:834.823432pt;}
.yba{bottom:842.383052pt;}
.yeb{bottom:849.943017pt;}
.y82{bottom:849.955919pt;}
.y83{bottom:855.836019pt;}
.y4f{bottom:859.012624pt;}
.y3{bottom:865.889567pt;}
.yea{bottom:866.572588pt;}
.y81{bottom:866.585490pt;}
.y4e{bottom:875.642195pt;}
.ye9{bottom:883.202160pt;}
.y80{bottom:883.215062pt;}
.y4d{bottom:892.196051pt;}
.y2{bottom:896.050130pt;}
.ye8{bottom:899.756015pt;}
.y7f{bottom:899.768917pt;}
.y4c{bottom:908.825623pt;}
.ye7{bottom:916.385587pt;}
.y7e{bottom:916.398489pt;}
.y4b{bottom:925.455194pt;}
.ye6{bottom:933.015158pt;}
.y7d{bottom:933.028060pt;}
.y4a{bottom:949.568671pt;}
.ye5{bottom:949.569014pt;}
.y7c{bottom:949.581916pt;}
.y1{bottom:957.202962pt;}
.y49{bottom:966.198242pt;}
.ye4{bottom:966.198586pt;}
.y7b{bottom:966.211488pt;}
.y48{bottom:986.154611pt;}
.yb8{bottom:1001.196696pt;}
.y47{bottom:1001.423340pt;}
.yb9{bottom:1001.650591pt;}
.ha{height:20.713019pt;}
.h8{height:24.368042pt;}
.h6{height:31.072648pt;}
.hc{height:32.201741pt;}
.h9{height:32.969524pt;}
.h2{height:34.728771pt;}
.h7{height:36.556099pt;}
.h5{height:37.884446pt;}
.h4{height:45.461260pt;}
.hb{height:48.584390pt;}
.h3{height:60.615647pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:68.031469pt;}
.x1b{left:69.921199pt;}
.x1{left:75.590535pt;}
.x29{left:77.933868pt;}
.x4{left:83.149602pt;}
.xf{left:107.641191pt;}
.x3{left:136.515708pt;}
.x20{left:188.900388pt;}
.x21{left:288.075460pt;}
.x22{left:296.617330pt;}
.x1f{left:316.950344pt;}
.x10{left:325.267149pt;}
.x1c{left:343.861328pt;}
.x1e{left:380.522786pt;}
.x1d{left:383.471050pt;}
.x5{left:408.188053pt;}
.xe{left:418.847637pt;}
.x2a{left:422.324382pt;}
.x13{left:423.306925pt;}
.x9{left:431.924276pt;}
.xa{left:440.995199pt;}
.x15{left:466.696004pt;}
.x23{left:467.905477pt;}
.x26{left:473.272898pt;}
.x16{left:479.773071pt;}
.x24{left:503.508508pt;}
.x27{left:508.875448pt;}
.x28{left:522.708537pt;}
.x7{left:532.837728pt;}
.x8{left:543.269206pt;}
.x25{left:561.259725pt;}
.x14{left:565.718964pt;}
.x6{left:568.439791pt;}
.xb{left:572.672872pt;}
.xc{left:577.814006pt;}
.xd{left:586.960531pt;}
.x18{left:625.209351pt;}
.x19{left:633.524251pt;}
.x11{left:672.831340pt;}
.x17{left:690.215052pt;}
.x12{left:710.928955pt;}
.x1a{left:720.680094pt;}
}

