
    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_c558efbe23cd0881d50f7688.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_226d4c3301e2d15876f1b155.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2a286c73cd3ec9ddcaaf8611.woff')format("woff");}.ff3{font-family:ff3;line-height:0.692871;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_4fa9b86fdc6383dade4d3bb9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_ae7c183ff4668203a90874f1.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1e318ec82f4a40a36eb17c43.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_aa45408007efb26f4291703f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.692383;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_145bce2a15388cc3a7b5f9dc.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_363d8197fb13a20eeadab1bc.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0f547849bed9f4e319bd463a.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f3a7dc5d2e94b5e6d28ef351.woff')format("woff");}.ffb{font-family:ffb;line-height:0.675781;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_795ed707c18ea209fa598f09.woff')format("woff");}.ffc{font-family:ffc;line-height:1.104004;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_b8b76d7dae7927798615d23f.woff')format("woff");}.ffd{font-family:ffd;line-height:0.929199;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_90e15f6cabbe31922990c377.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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_fb03d4d9fc676a425a8dbaf8.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_054f579fac1fe69c73c6a212.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_7bc40bae540cf5254bd616ff.woff')format("woff");}.ff11{font-family:ff11;line-height:0.740234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a762e8041817408ba72c78a8.woff')format("woff");}.ff12{font-family:ff12;line-height:0.892578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_381fd98f0d75ed429127a598.woff')format("woff");}.ff13{font-family:ff13;line-height:1.111816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_b233d5dd6e8e23856a85960b.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_c0c1312bda1eb9a6b740601e.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_edb7de97b46bb7243fb45e9b.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_9d66bca3c48aaa238d7f103d.woff')format("woff");}.ff17{font-family:ff17;line-height:0.692871;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);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-1.891008px;}
.ls20{letter-spacing:-1.438560px;}
.ls6{letter-spacing:-1.261152px;}
.ls38{letter-spacing:-1.132704px;}
.lsb{letter-spacing:-0.993744px;}
.ls44{letter-spacing:-0.936000px;}
.lsa{letter-spacing:-0.810432px;}
.lsf{letter-spacing:-0.723600px;}
.ls1f{letter-spacing:-0.723168px;}
.ls45{letter-spacing:-0.720000px;}
.ls3d{letter-spacing:-0.716832px;}
.lsd{letter-spacing:-0.540288px;}
.ls31{letter-spacing:-0.508032px;}
.ls22{letter-spacing:-0.504000px;}
.ls3a{letter-spacing:-0.470592px;}
.ls37{letter-spacing:-0.457056px;}
.ls25{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.359136px;}
.ls33{letter-spacing:-0.350208px;}
.ls3c{letter-spacing:-0.304704px;}
.ls2f{letter-spacing:-0.152352px;}
.ls2e{letter-spacing:-0.144000px;}
.ls35{letter-spacing:-0.071280px;}
.ls34{letter-spacing:-0.054720px;}
.ls1c{letter-spacing:-0.031104px;}
.ls1d{letter-spacing:-0.023328px;}
.ls24{letter-spacing:-0.015552px;}
.ls11{letter-spacing:-0.007776px;}
.ls3{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.007776px;}
.ls15{letter-spacing:0.015552px;}
.ls18{letter-spacing:0.023328px;}
.ls14{letter-spacing:0.025920px;}
.ls16{letter-spacing:0.031104px;}
.ls26{letter-spacing:0.062208px;}
.ls3b{letter-spacing:0.065664px;}
.ls5{letter-spacing:0.175392px;}
.ls28{letter-spacing:0.288000px;}
.ls2b{letter-spacing:0.306432px;}
.ls7{letter-spacing:0.359136px;}
.ls2{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.443808px;}
.ls32{letter-spacing:0.481536px;}
.ls29{letter-spacing:0.483840px;}
.ls2d{letter-spacing:0.504000px;}
.lse{letter-spacing:0.540288px;}
.ls3e{letter-spacing:0.607392px;}
.ls30{letter-spacing:0.609408px;}
.ls1{letter-spacing:0.630720px;}
.ls39{letter-spacing:0.670032px;}
.ls36{letter-spacing:0.674784px;}
.ls2a{letter-spacing:0.684288px;}
.ls40{letter-spacing:0.685440px;}
.ls0{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.723168px;}
.ls2c{letter-spacing:0.727776px;}
.ls8{letter-spacing:1.436544px;}
.ls42{letter-spacing:1.477440px;}
.ls3f{letter-spacing:2.160000px;}
.ls27{letter-spacing:3.888000px;}
.ls21{letter-spacing:7.920000px;}
.ls12{letter-spacing:27.342720px;}
.ls1b{letter-spacing:38.862720px;}
.ls17{letter-spacing:47.502720px;}
.ls41{letter-spacing:61.902720px;}
.ls23{letter-spacing:63.826560px;}
.ls1e{letter-spacing:75.600000px;}
.ls19{letter-spacing:77.742720px;}
.ls43{letter-spacing:156.240000px;}
.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:-24.563808px;}
.ws4{word-spacing:-24.120000px;}
.ws5{word-spacing:-23.579712px;}
.ws6{word-spacing:-23.396400px;}
.ws1{word-spacing:-21.239136px;}
.ws2a{word-spacing:-20.917440px;}
.ws2{word-spacing:-20.880000px;}
.ws0{word-spacing:-20.520864px;}
.ws16{word-spacing:-20.520000px;}
.ws17{word-spacing:-20.304000px;}
.wsd{word-spacing:-20.163168px;}
.ws19{word-spacing:-19.872000px;}
.ws18{word-spacing:-19.512000px;}
.ws15{word-spacing:-19.502208px;}
.ws11{word-spacing:-19.471104px;}
.ws12{word-spacing:-19.463328px;}
.wsc{word-spacing:-19.455552px;}
.wsf{word-spacing:-19.447776px;}
.wsa{word-spacing:-19.440000px;}
.ws9{word-spacing:-19.432224px;}
.ws2b{word-spacing:-19.424448px;}
.wse{word-spacing:-19.416672px;}
.wsb{word-spacing:-19.408896px;}
.ws1c{word-spacing:-19.024128px;}
.ws1b{word-spacing:-18.262368px;}
.ws25{word-spacing:-18.110016px;}
.ws2c{word-spacing:-18.000000px;}
.ws20{word-spacing:-17.957664px;}
.ws1a{word-spacing:-16.813440px;}
.ws1d{word-spacing:-16.305408px;}
.ws8{word-spacing:-15.912000px;}
.ws10{word-spacing:-15.768000px;}
.ws21{word-spacing:-13.203936px;}
.ws1e{word-spacing:-12.957696px;}
.ws22{word-spacing:-12.782592px;}
.ws24{word-spacing:-12.541824px;}
.ws26{word-spacing:-12.421440px;}
.ws29{word-spacing:-12.125952px;}
.ws23{word-spacing:-12.005568px;}
.ws27{word-spacing:-11.759328px;}
.ws1f{word-spacing:-11.509344px;}
.ws28{word-spacing:-11.504592px;}
.ws14{word-spacing:-0.077760px;}
.ws13{word-spacing:-0.060480px;}
.ws7{word-spacing:0.000000px;}
._6{margin-left:-10.817280px;}
._b{margin-left:-4.524768px;}
._11{margin-left:-3.308256px;}
._4{margin-left:-2.258496px;}
._3{margin-left:-1.151424px;}
._0{width:1.336320px;}
._2{width:2.756160px;}
._1{width:4.092480px;}
._5{width:6.060672px;}
._9{width:7.892640px;}
._16{width:8.923680px;}
._12{width:10.831968px;}
._17{width:12.262752px;}
._c{width:13.709088px;}
._d{width:15.038784px;}
._a{width:16.578432px;}
._10{width:17.985888px;}
._f{width:20.716128px;}
._e{width:21.776256px;}
._1a{width:22.904640px;}
._21{width:24.000480px;}
._7{width:25.116480px;}
._8{width:26.729280px;}
._15{width:28.195776px;}
._20{width:29.548800px;}
._13{width:30.979584px;}
._28{width:32.052096px;}
._1f{width:33.188256px;}
._1d{width:34.548480px;}
._1c{width:36.018432px;}
._27{width:37.126656px;}
._1e{width:39.657600px;}
._22{width:43.261344px;}
._14{width:45.431712px;}
._19{width:47.320416px;}
._18{width:48.366720px;}
._1b{width:66.980736px;}
._23{width:87.120000px;}
._2a{width:103.968000px;}
._2b{width:105.408000px;}
._29{width:106.631424px;}
._26{width:157.697280px;}
._25{width:237.587904px;}
._24{width:239.104224px;}
.fc7{color:rgb(5,99,193);}
.fc6{color:rgb(51,51,153);}
.fc5{color:rgb(0,0,128);}
.fc2{color:transparent;}
.fc4{color:rgb(68,84,106);}
.fc3{color:rgb(70,114,168);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs6{font-size:47.520000px;}
.fs5{font-size:50.400000px;}
.fs7{font-size:54.720000px;}
.fs4{font-size:60.480000px;}
.fs9{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs0{font-size:83.520000px;}
.fs1{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y43{bottom:4.859970px;}
.y8d{bottom:6.660000px;}
.y5c{bottom:7.020000px;}
.y74{bottom:9.540000px;}
.y6e{bottom:9.900000px;}
.y6b{bottom:10.980000px;}
.yb8{bottom:15.660000px;}
.y61{bottom:17.100000px;}
.yaa{bottom:25.020000px;}
.y73{bottom:30.060000px;}
.y8a{bottom:30.420000px;}
.yb2{bottom:31.140000px;}
.y7f{bottom:31.500000px;}
.y6d{bottom:32.580000px;}
.y97{bottom:32.940000px;}
.y6a{bottom:34.020000px;}
.yaf{bottom:34.380000px;}
.y5e{bottom:37.260000px;}
.y60{bottom:40.140000px;}
.y5f{bottom:43.020000px;}
.ya9{bottom:46.980000px;}
.y72{bottom:50.940000px;}
.y42{bottom:52.860030px;}
.y7e{bottom:54.540000px;}
.y83{bottom:54.900000px;}
.yb3{bottom:55.980000px;}
.y82{bottom:56.340000px;}
.y9e{bottom:57.060000px;}
.y69{bottom:57.420000px;}
.y41{bottom:57.720000px;}
.y68{bottom:58.860000px;}
.ya8{bottom:70.020000px;}
.y89{bottom:71.460000px;}
.y71{bottom:72.540000px;}
.y7d{bottom:77.940000px;}
.yba{bottom:79.020000px;}
.y81{bottom:79.380000px;}
.y9d{bottom:80.460000px;}
.yad{bottom:80.820000px;}
.y67{bottom:81.900000px;}
.yae{bottom:82.260000px;}
.y88{bottom:92.340000px;}
.ya7{bottom:93.420000px;}
.y70{bottom:95.940000px;}
.y75{bottom:97.380000px;}
.y7c{bottom:100.980000px;}
.y91{bottom:101.340000px;}
.yb1{bottom:102.060000px;}
.y7b{bottom:102.420000px;}
.y90{bottom:102.780000px;}
.y9c{bottom:103.500000px;}
.yac{bottom:105.300000px;}
.y57{bottom:110.280000px;}
.y87{bottom:113.940000px;}
.yb6{bottom:114.660000px;}
.ya6{bottom:116.460000px;}
.y6f{bottom:120.420000px;}
.y51{bottom:122.160000px;}
.y28{bottom:123.240000px;}
.ye6{bottom:124.680000px;}
.y126{bottom:125.040000px;}
.y7a{bottom:125.460000px;}
.y10b{bottom:125.760000px;}
.y8f{bottom:125.820000px;}
.y9b{bottom:126.900000px;}
.y139{bottom:127.200000px;}
.y50{bottom:128.280000px;}
.y9f{bottom:128.340000px;}
.y4d{bottom:129.360000px;}
.y86{bottom:137.340000px;}
.y56{bottom:139.800000px;}
.ya5{bottom:139.860000px;}
.yab{bottom:141.300000px;}
.yb5{bottom:143.100000px;}
.y4f{bottom:145.200000px;}
.y27{bottom:150.960000px;}
.y9a{bottom:151.380000px;}
.ya0{bottom:152.940000px;}
.ycc{bottom:155.640000px;}
.y76{bottom:157.260000px;}
.ye5{bottom:158.520000px;}
.y10a{bottom:159.240000px;}
.y85{bottom:160.380000px;}
.y138{bottom:160.680000px;}
.y8b{bottom:161.820000px;}
.y4c{bottom:162.840000px;}
.ya4{bottom:164.340000px;}
.y55{bottom:174.000000px;}
.y64{bottom:177.660000px;}
.y26{bottom:178.680000px;}
.y54{bottom:180.120000px;}
.y84{bottom:184.860000px;}
.ycb{bottom:189.480000px;}
.ya1{bottom:190.260000px;}
.y125{bottom:192.360000px;}
.ye4{bottom:192.720000px;}
.y109{bottom:193.080000px;}
.y137{bottom:194.520000px;}
.y4b{bottom:196.680000px;}
.y53{bottom:197.040000px;}
.y78{bottom:201.780000px;}
.y25{bottom:206.040000px;}
.y63{bottom:206.100000px;}
.y94{bottom:222.300000px;}
.yca{bottom:222.960000px;}
.y124{bottom:225.840000px;}
.y147{bottom:226.200000px;}
.ye3{bottom:226.560000px;}
.y136{bottom:228.000000px;}
.y4a{bottom:230.160000px;}
.y77{bottom:230.220000px;}
.y24{bottom:233.760000px;}
.y52{bottom:234.120000px;}
.y93{bottom:250.740000px;}
.yc9{bottom:256.800000px;}
.y123{bottom:259.680000px;}
.y146{bottom:260.040000px;}
.y108{bottom:260.400000px;}
.ye2{bottom:260.760000px;}
.y23{bottom:261.480000px;}
.y135{bottom:261.840000px;}
.y49{bottom:264.000000px;}
.ya3{bottom:273.540000px;}
.y22{bottom:288.840000px;}
.yc8{bottom:290.280000px;}
.y122{bottom:293.160000px;}
.y107{bottom:293.880000px;}
.ye1{bottom:294.600000px;}
.y134{bottom:295.320000px;}
.y48{bottom:297.480000px;}
.y21{bottom:316.560000px;}
.yc7{bottom:323.760000px;}
.y121{bottom:326.640000px;}
.y106{bottom:327.360000px;}
.ye0{bottom:328.440000px;}
.y133{bottom:328.800000px;}
.y47{bottom:330.960000px;}
.y20{bottom:344.280000px;}
.y80{bottom:357.420000px;}
.yc6{bottom:357.600000px;}
.y120{bottom:360.480000px;}
.y105{bottom:361.200000px;}
.y145{bottom:361.560000px;}
.ydf{bottom:362.640000px;}
.y46{bottom:364.800000px;}
.y1f{bottom:371.640000px;}
.yc5{bottom:391.080000px;}
.y11f{bottom:393.960000px;}
.y104{bottom:394.680000px;}
.y144{bottom:395.040000px;}
.y132{bottom:396.120000px;}
.yde{bottom:396.480000px;}
.y45{bottom:398.280000px;}
.y1e{bottom:399.360000px;}
.yc4{bottom:424.920000px;}
.y1d{bottom:427.080000px;}
.y11e{bottom:427.800000px;}
.y103{bottom:428.520000px;}
.y143{bottom:428.880000px;}
.y131{bottom:429.960000px;}
.ydd{bottom:430.680000px;}
.y44{bottom:432.120000px;}
.y40{bottom:433.200000px;}
.y79{bottom:452.100000px;}
.ya2{bottom:453.180000px;}
.y1c{bottom:454.440000px;}
.yc3{bottom:458.400000px;}
.y11d{bottom:461.280000px;}
.y102{bottom:462.000000px;}
.y142{bottom:462.360000px;}
.y130{bottom:463.440000px;}
.ydc{bottom:464.520000px;}
.y3f{bottom:465.600000px;}
.y1b{bottom:482.160000px;}
.yc2{bottom:492.240000px;}
.y11c{bottom:495.480000px;}
.y101{bottom:495.840000px;}
.y141{bottom:496.200000px;}
.y12f{bottom:497.280000px;}
.ydb{bottom:498.360000px;}
.y3e{bottom:499.440000px;}
.y4e{bottom:506.280000px;}
.y92{bottom:510.420000px;}
.y1a{bottom:521.400000px;}
.yc1{bottom:525.720000px;}
.y11b{bottom:528.960000px;}
.y100{bottom:529.680000px;}
.y12e{bottom:530.760000px;}
.yda{bottom:531.840000px;}
.y3d{bottom:532.920000px;}
.y19{bottom:557.760000px;}
.yc0{bottom:559.200000px;}
.y11a{bottom:562.800000px;}
.yff{bottom:563.160000px;}
.y12d{bottom:564.240000px;}
.yd9{bottom:565.320000px;}
.y3c{bottom:566.400000px;}
.y99{bottom:568.020000px;}
.y18{bottom:581.880000px;}
.ybf{bottom:593.040000px;}
.y62{bottom:595.020000px;}
.y119{bottom:596.640000px;}
.y140{bottom:597.000000px;}
.yfe{bottom:597.360000px;}
.y12c{bottom:598.080000px;}
.yd8{bottom:599.160000px;}
.y3b{bottom:600.240000px;}
.y17{bottom:606.000000px;}
.ybe{bottom:626.520000px;}
.y16{bottom:630.120000px;}
.y118{bottom:630.480000px;}
.yfd{bottom:630.840000px;}
.y12b{bottom:631.560000px;}
.yd7{bottom:632.640000px;}
.y3a{bottom:633.720000px;}
.y15{bottom:654.240000px;}
.ybd{bottom:660.720000px;}
.y117{bottom:664.680000px;}
.yfc{bottom:665.040000px;}
.y12a{bottom:665.400000px;}
.yd6{bottom:666.480000px;}
.y39{bottom:667.560000px;}
.y14{bottom:678.360000px;}
.ybc{bottom:693.480000px;}
.y116{bottom:698.160000px;}
.y13f{bottom:698.520000px;}
.yfb{bottom:698.880000px;}
.yd5{bottom:699.960000px;}
.y38{bottom:701.040000px;}
.y37{bottom:702.120000px;}
.y13{bottom:702.480000px;}
.y12{bottom:726.600000px;}
.yf3{bottom:730.920000px;}
.y115{bottom:732.360000px;}
.y6c{bottom:732.540000px;}
.y129{bottom:732.720000px;}
.yfa{bottom:733.080000px;}
.y14e{bottom:733.800000px;}
.yd4{bottom:734.160000px;}
.y98{bottom:734.700000px;}
.y36{bottom:734.880000px;}
.yb4{bottom:746.940000px;}
.y11{bottom:751.080000px;}
.yf2{bottom:762.240000px;}
.y114{bottom:765.840000px;}
.y13e{bottom:766.200000px;}
.yf9{bottom:766.560000px;}
.y14d{bottom:767.280000px;}
.yd3{bottom:767.640000px;}
.y35{bottom:768.360000px;}
.y10{bottom:775.200000px;}
.y96{bottom:790.140000px;}
.yf1{bottom:793.200000px;}
.yf{bottom:799.320000px;}
.y113{bottom:799.680000px;}
.yf8{bottom:800.040000px;}
.y14c{bottom:800.760000px;}
.yd2{bottom:801.120000px;}
.y34{bottom:801.840000px;}
.ybb{bottom:802.740000px;}
.ye{bottom:823.440000px;}
.yf0{bottom:824.160000px;}
.y66{bottom:829.740000px;}
.y13d{bottom:833.520000px;}
.y112{bottom:833.880000px;}
.yf7{bottom:834.240000px;}
.y14b{bottom:834.600000px;}
.yd1{bottom:834.960000px;}
.y33{bottom:835.680000px;}
.yd{bottom:847.560000px;}
.yef{bottom:855.120000px;}
.yb9{bottom:858.180000px;}
.y13c{bottom:867.360000px;}
.yf6{bottom:867.720000px;}
.y14a{bottom:868.080000px;}
.yd0{bottom:868.800000px;}
.y32{bottom:869.160000px;}
.yc{bottom:871.680000px;}
.yee{bottom:886.080000px;}
.yb{bottom:895.800000px;}
.y13b{bottom:901.200000px;}
.y111{bottom:901.560000px;}
.yf5{bottom:901.920000px;}
.y149{bottom:902.280000px;}
.ycf{bottom:902.640000px;}
.y31{bottom:903.000000px;}
.yed{bottom:917.400000px;}
.ya{bottom:919.920000px;}
.y65{bottom:926.940000px;}
.y95{bottom:931.260000px;}
.y13a{bottom:935.040000px;}
.y110{bottom:935.400000px;}
.yf4{bottom:935.760000px;}
.yce{bottom:936.120000px;}
.y30{bottom:936.480000px;}
.y9{bottom:944.040000px;}
.yec{bottom:948.360000px;}
.yb7{bottom:952.500000px;}
.y8{bottom:968.160000px;}
.y10f{bottom:969.240000px;}
.y128{bottom:969.600000px;}
.ycd{bottom:969.960000px;}
.y2f{bottom:970.320000px;}
.yeb{bottom:979.320000px;}
.y5d{bottom:984.180000px;}
.y8e{bottom:988.500000px;}
.y7{bottom:992.280000px;}
.y10e{bottom:1003.080000px;}
.y148{bottom:1003.440000px;}
.y2e{bottom:1003.800000px;}
.yb0{bottom:1010.100000px;}
.yea{bottom:1011.720000px;}
.y6{bottom:1016.400000px;}
.y10d{bottom:1036.560000px;}
.y127{bottom:1036.920000px;}
.y2d{bottom:1037.640000px;}
.y5{bottom:1040.520000px;}
.y5b{bottom:1041.420000px;}
.ye9{bottom:1044.120000px;}
.y4{bottom:1065.000000px;}
.y10c{bottom:1070.760000px;}
.y2c{bottom:1071.120000px;}
.ye8{bottom:1075.080000px;}
.y5a{bottom:1075.800000px;}
.y3{bottom:1089.120000px;}
.y59{bottom:1091.280000px;}
.y2b{bottom:1104.600000px;}
.ye7{bottom:1106.040000px;}
.y58{bottom:1110.360000px;}
.y2{bottom:1113.240000px;}
.y8c{bottom:1129.620000px;}
.y1{bottom:1137.360000px;}
.y2a{bottom:1138.440000px;}
.y29{bottom:1139.520000px;}
.hb{height:21.960000px;}
.h21{height:23.400000px;}
.h13{height:23.760000px;}
.h12{height:26.208984px;}
.hf{height:31.672266px;}
.h11{height:39.837656px;}
.h10{height:40.310156px;}
.h16{height:42.832969px;}
.h1b{height:43.470000px;}
.he{height:44.223047px;}
.h19{height:47.610000px;}
.h8{height:47.988281px;}
.h5{height:49.218750px;}
.h17{height:49.322813px;}
.h7{height:51.827344px;}
.h14{height:52.417969px;}
.h9{height:52.662656px;}
.h6{height:53.991563px;}
.h15{height:54.000000px;}
.h2{height:57.175313px;}
.h2b{height:63.175781px;}
.h3{height:66.047344px;}
.ha{height:68.229844px;}
.hc{height:69.065156px;}
.h1{height:73.283906px;}
.h4{height:84.655547px;}
.h2a{height:92.880000px;}
.h1f{height:93.240000px;}
.h1a{height:95.760000px;}
.h28{height:115.920000px;}
.h27{height:119.160000px;}
.h1c{height:134.280000px;}
.h1e{height:139.320000px;}
.h22{height:139.680000px;}
.h24{height:165.240000px;}
.h26{height:178.200000px;}
.h20{height:198.720000px;}
.h29{height:259.560000px;}
.h25{height:354.240000px;}
.h18{height:385.920000px;}
.h1d{height:434.160000px;}
.h23{height:474.840000px;}
.hd{height:1235.820000px;}
.h0{height:1263.000000px;}
.w1{width:9.360000px;}
.w2{width:18.360000px;}
.wb{width:74.160000px;}
.w4{width:74.520000px;}
.w5{width:74.880000px;}
.w6{width:75.240000px;}
.w8{width:76.680000px;}
.wa{width:95.400000px;}
.w7{width:96.120000px;}
.w9{width:325.800000px;}
.w3{width:865.320000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x32{left:17.100000px;}
.x27{left:18.900000px;}
.x2a{left:20.340000px;}
.x28{left:21.420000px;}
.x2f{left:22.860000px;}
.x21{left:27.180000px;}
.x2d{left:32.220000px;}
.x22{left:100.260000px;}
.x1{left:127.440000px;}
.x15{left:128.520000px;}
.x10{left:129.960000px;}
.x26{left:131.220000px;}
.x23{left:133.920000px;}
.x1e{left:135.360000px;}
.x25{left:147.780000px;}
.x16{left:154.440000px;}
.x1a{left:157.320000px;}
.x8{left:162.360000px;}
.x12{left:168.480000px;}
.x1c{left:180.360000px;}
.x20{left:181.440000px;}
.x2{left:206.640000px;}
.x17{left:208.440000px;}
.x18{left:235.440000px;}
.x7{left:255.960000px;}
.x19{left:262.440000px;}
.x1f{left:263.880000px;}
.x29{left:283.500000px;}
.x4{left:288.000000px;}
.x6{left:312.120000px;}
.x9{left:314.280000px;}
.x5{left:325.080000px;}
.x24{left:343.440000px;}
.x2b{left:359.820000px;}
.x33{left:360.900000px;}
.xc{left:369.000000px;}
.x13{left:406.800000px;}
.x2c{left:436.500000px;}
.x3{left:446.040000px;}
.xa{left:448.920000px;}
.x14{left:452.880000px;}
.xf{left:472.680000px;}
.xe{left:482.400000px;}
.x11{left:530.640000px;}
.x2e{left:534.420000px;}
.xb{left:536.760000px;}
.x30{left:610.740000px;}
.x34{left:611.820000px;}
.x31{left:687.420000px;}
.x1d{left:746.820000px;}
.x1b{left:755.820000px;}
.xd{left:764.640000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.680896pt;}
.ls20{letter-spacing:-1.278720pt;}
.ls6{letter-spacing:-1.121024pt;}
.ls38{letter-spacing:-1.006848pt;}
.lsb{letter-spacing:-0.883328pt;}
.ls44{letter-spacing:-0.832000pt;}
.lsa{letter-spacing:-0.720384pt;}
.lsf{letter-spacing:-0.643200pt;}
.ls1f{letter-spacing:-0.642816pt;}
.ls45{letter-spacing:-0.640000pt;}
.ls3d{letter-spacing:-0.637184pt;}
.lsd{letter-spacing:-0.480256pt;}
.ls31{letter-spacing:-0.451584pt;}
.ls22{letter-spacing:-0.448000pt;}
.ls3a{letter-spacing:-0.418304pt;}
.ls37{letter-spacing:-0.406272pt;}
.ls25{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.319232pt;}
.ls33{letter-spacing:-0.311296pt;}
.ls3c{letter-spacing:-0.270848pt;}
.ls2f{letter-spacing:-0.135424pt;}
.ls2e{letter-spacing:-0.128000pt;}
.ls35{letter-spacing:-0.063360pt;}
.ls34{letter-spacing:-0.048640pt;}
.ls1c{letter-spacing:-0.027648pt;}
.ls1d{letter-spacing:-0.020736pt;}
.ls24{letter-spacing:-0.013824pt;}
.ls11{letter-spacing:-0.006912pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.006912pt;}
.ls15{letter-spacing:0.013824pt;}
.ls18{letter-spacing:0.020736pt;}
.ls14{letter-spacing:0.023040pt;}
.ls16{letter-spacing:0.027648pt;}
.ls26{letter-spacing:0.055296pt;}
.ls3b{letter-spacing:0.058368pt;}
.ls5{letter-spacing:0.155904pt;}
.ls28{letter-spacing:0.256000pt;}
.ls2b{letter-spacing:0.272384pt;}
.ls7{letter-spacing:0.319232pt;}
.ls2{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.394496pt;}
.ls32{letter-spacing:0.428032pt;}
.ls29{letter-spacing:0.430080pt;}
.ls2d{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.480256pt;}
.ls3e{letter-spacing:0.539904pt;}
.ls30{letter-spacing:0.541696pt;}
.ls1{letter-spacing:0.560640pt;}
.ls39{letter-spacing:0.595584pt;}
.ls36{letter-spacing:0.599808pt;}
.ls2a{letter-spacing:0.608256pt;}
.ls40{letter-spacing:0.609280pt;}
.ls0{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.642816pt;}
.ls2c{letter-spacing:0.646912pt;}
.ls8{letter-spacing:1.276928pt;}
.ls42{letter-spacing:1.313280pt;}
.ls3f{letter-spacing:1.920000pt;}
.ls27{letter-spacing:3.456000pt;}
.ls21{letter-spacing:7.040000pt;}
.ls12{letter-spacing:24.304640pt;}
.ls1b{letter-spacing:34.544640pt;}
.ls17{letter-spacing:42.224640pt;}
.ls41{letter-spacing:55.024640pt;}
.ls23{letter-spacing:56.734720pt;}
.ls1e{letter-spacing:67.200000pt;}
.ls19{letter-spacing:69.104640pt;}
.ls43{letter-spacing:138.880000pt;}
.ws3{word-spacing:-21.834496pt;}
.ws4{word-spacing:-21.440000pt;}
.ws5{word-spacing:-20.959744pt;}
.ws6{word-spacing:-20.796800pt;}
.ws1{word-spacing:-18.879232pt;}
.ws2a{word-spacing:-18.593280pt;}
.ws2{word-spacing:-18.560000pt;}
.ws0{word-spacing:-18.240768pt;}
.ws16{word-spacing:-18.240000pt;}
.ws17{word-spacing:-18.048000pt;}
.wsd{word-spacing:-17.922816pt;}
.ws19{word-spacing:-17.664000pt;}
.ws18{word-spacing:-17.344000pt;}
.ws15{word-spacing:-17.335296pt;}
.ws11{word-spacing:-17.307648pt;}
.ws12{word-spacing:-17.300736pt;}
.wsc{word-spacing:-17.293824pt;}
.wsf{word-spacing:-17.286912pt;}
.wsa{word-spacing:-17.280000pt;}
.ws9{word-spacing:-17.273088pt;}
.ws2b{word-spacing:-17.266176pt;}
.wse{word-spacing:-17.259264pt;}
.wsb{word-spacing:-17.252352pt;}
.ws1c{word-spacing:-16.910336pt;}
.ws1b{word-spacing:-16.233216pt;}
.ws25{word-spacing:-16.097792pt;}
.ws2c{word-spacing:-16.000000pt;}
.ws20{word-spacing:-15.962368pt;}
.ws1a{word-spacing:-14.945280pt;}
.ws1d{word-spacing:-14.493696pt;}
.ws8{word-spacing:-14.144000pt;}
.ws10{word-spacing:-14.016000pt;}
.ws21{word-spacing:-11.736832pt;}
.ws1e{word-spacing:-11.517952pt;}
.ws22{word-spacing:-11.362304pt;}
.ws24{word-spacing:-11.148288pt;}
.ws26{word-spacing:-11.041280pt;}
.ws29{word-spacing:-10.778624pt;}
.ws23{word-spacing:-10.671616pt;}
.ws27{word-spacing:-10.452736pt;}
.ws1f{word-spacing:-10.230528pt;}
.ws28{word-spacing:-10.226304pt;}
.ws14{word-spacing:-0.069120pt;}
.ws13{word-spacing:-0.053760pt;}
.ws7{word-spacing:0.000000pt;}
._6{margin-left:-9.615360pt;}
._b{margin-left:-4.022016pt;}
._11{margin-left:-2.940672pt;}
._4{margin-left:-2.007552pt;}
._3{margin-left:-1.023488pt;}
._0{width:1.187840pt;}
._2{width:2.449920pt;}
._1{width:3.637760pt;}
._5{width:5.387264pt;}
._9{width:7.015680pt;}
._16{width:7.932160pt;}
._12{width:9.628416pt;}
._17{width:10.900224pt;}
._c{width:12.185856pt;}
._d{width:13.367808pt;}
._a{width:14.736384pt;}
._10{width:15.987456pt;}
._f{width:18.414336pt;}
._e{width:19.356672pt;}
._1a{width:20.359680pt;}
._21{width:21.333760pt;}
._7{width:22.325760pt;}
._8{width:23.759360pt;}
._15{width:25.062912pt;}
._20{width:26.265600pt;}
._13{width:27.537408pt;}
._28{width:28.490752pt;}
._1f{width:29.500672pt;}
._1d{width:30.709760pt;}
._1c{width:32.016384pt;}
._27{width:33.001472pt;}
._1e{width:35.251200pt;}
._22{width:38.454528pt;}
._14{width:40.383744pt;}
._19{width:42.062592pt;}
._18{width:42.992640pt;}
._1b{width:59.538432pt;}
._23{width:77.440000pt;}
._2a{width:92.416000pt;}
._2b{width:93.696000pt;}
._29{width:94.783488pt;}
._26{width:140.175360pt;}
._25{width:211.189248pt;}
._24{width:212.537088pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:42.240000pt;}
.fs5{font-size:44.800000pt;}
.fs7{font-size:48.640000pt;}
.fs4{font-size:53.760000pt;}
.fs9{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs0{font-size:74.240000pt;}
.fs1{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:4.319973pt;}
.y8d{bottom:5.920000pt;}
.y5c{bottom:6.240000pt;}
.y74{bottom:8.480000pt;}
.y6e{bottom:8.800000pt;}
.y6b{bottom:9.760000pt;}
.yb8{bottom:13.920000pt;}
.y61{bottom:15.200000pt;}
.yaa{bottom:22.240000pt;}
.y73{bottom:26.720000pt;}
.y8a{bottom:27.040000pt;}
.yb2{bottom:27.680000pt;}
.y7f{bottom:28.000000pt;}
.y6d{bottom:28.960000pt;}
.y97{bottom:29.280000pt;}
.y6a{bottom:30.240000pt;}
.yaf{bottom:30.560000pt;}
.y5e{bottom:33.120000pt;}
.y60{bottom:35.680000pt;}
.y5f{bottom:38.240000pt;}
.ya9{bottom:41.760000pt;}
.y72{bottom:45.280000pt;}
.y42{bottom:46.986693pt;}
.y7e{bottom:48.480000pt;}
.y83{bottom:48.800000pt;}
.yb3{bottom:49.760000pt;}
.y82{bottom:50.080000pt;}
.y9e{bottom:50.720000pt;}
.y69{bottom:51.040000pt;}
.y41{bottom:51.306667pt;}
.y68{bottom:52.320000pt;}
.ya8{bottom:62.240000pt;}
.y89{bottom:63.520000pt;}
.y71{bottom:64.480000pt;}
.y7d{bottom:69.280000pt;}
.yba{bottom:70.240000pt;}
.y81{bottom:70.560000pt;}
.y9d{bottom:71.520000pt;}
.yad{bottom:71.840000pt;}
.y67{bottom:72.800000pt;}
.yae{bottom:73.120000pt;}
.y88{bottom:82.080000pt;}
.ya7{bottom:83.040000pt;}
.y70{bottom:85.280000pt;}
.y75{bottom:86.560000pt;}
.y7c{bottom:89.760000pt;}
.y91{bottom:90.080000pt;}
.yb1{bottom:90.720000pt;}
.y7b{bottom:91.040000pt;}
.y90{bottom:91.360000pt;}
.y9c{bottom:92.000000pt;}
.yac{bottom:93.600000pt;}
.y57{bottom:98.026667pt;}
.y87{bottom:101.280000pt;}
.yb6{bottom:101.920000pt;}
.ya6{bottom:103.520000pt;}
.y6f{bottom:107.040000pt;}
.y51{bottom:108.586667pt;}
.y28{bottom:109.546667pt;}
.ye6{bottom:110.826667pt;}
.y126{bottom:111.146667pt;}
.y7a{bottom:111.520000pt;}
.y10b{bottom:111.786667pt;}
.y8f{bottom:111.840000pt;}
.y9b{bottom:112.800000pt;}
.y139{bottom:113.066667pt;}
.y50{bottom:114.026667pt;}
.y9f{bottom:114.080000pt;}
.y4d{bottom:114.986667pt;}
.y86{bottom:122.080000pt;}
.y56{bottom:124.266667pt;}
.ya5{bottom:124.320000pt;}
.yab{bottom:125.600000pt;}
.yb5{bottom:127.200000pt;}
.y4f{bottom:129.066667pt;}
.y27{bottom:134.186667pt;}
.y9a{bottom:134.560000pt;}
.ya0{bottom:135.946667pt;}
.ycc{bottom:138.346667pt;}
.y76{bottom:139.786667pt;}
.ye5{bottom:140.906667pt;}
.y10a{bottom:141.546667pt;}
.y85{bottom:142.560000pt;}
.y138{bottom:142.826667pt;}
.y8b{bottom:143.840000pt;}
.y4c{bottom:144.746667pt;}
.ya4{bottom:146.080000pt;}
.y55{bottom:154.666667pt;}
.y64{bottom:157.920000pt;}
.y26{bottom:158.826667pt;}
.y54{bottom:160.106667pt;}
.y84{bottom:164.320000pt;}
.ycb{bottom:168.426667pt;}
.ya1{bottom:169.120000pt;}
.y125{bottom:170.986667pt;}
.ye4{bottom:171.306667pt;}
.y109{bottom:171.626667pt;}
.y137{bottom:172.906667pt;}
.y4b{bottom:174.826667pt;}
.y53{bottom:175.146667pt;}
.y78{bottom:179.360000pt;}
.y25{bottom:183.146667pt;}
.y63{bottom:183.200000pt;}
.y94{bottom:197.600000pt;}
.yca{bottom:198.186667pt;}
.y124{bottom:200.746667pt;}
.y147{bottom:201.066667pt;}
.ye3{bottom:201.386667pt;}
.y136{bottom:202.666667pt;}
.y4a{bottom:204.586667pt;}
.y77{bottom:204.640000pt;}
.y24{bottom:207.786667pt;}
.y52{bottom:208.106667pt;}
.y93{bottom:222.880000pt;}
.yc9{bottom:228.266667pt;}
.y123{bottom:230.826667pt;}
.y146{bottom:231.146667pt;}
.y108{bottom:231.466667pt;}
.ye2{bottom:231.786667pt;}
.y23{bottom:232.426667pt;}
.y135{bottom:232.746667pt;}
.y49{bottom:234.666667pt;}
.ya3{bottom:243.146667pt;}
.y22{bottom:256.746667pt;}
.yc8{bottom:258.026667pt;}
.y122{bottom:260.586667pt;}
.y107{bottom:261.226667pt;}
.ye1{bottom:261.866667pt;}
.y134{bottom:262.506667pt;}
.y48{bottom:264.426667pt;}
.y21{bottom:281.386667pt;}
.yc7{bottom:287.786667pt;}
.y121{bottom:290.346667pt;}
.y106{bottom:290.986667pt;}
.ye0{bottom:291.946667pt;}
.y133{bottom:292.266667pt;}
.y47{bottom:294.186667pt;}
.y20{bottom:306.026667pt;}
.y80{bottom:317.706667pt;}
.yc6{bottom:317.866667pt;}
.y120{bottom:320.426667pt;}
.y105{bottom:321.066667pt;}
.y145{bottom:321.386667pt;}
.ydf{bottom:322.346667pt;}
.y46{bottom:324.266667pt;}
.y1f{bottom:330.346667pt;}
.yc5{bottom:347.626667pt;}
.y11f{bottom:350.186667pt;}
.y104{bottom:350.826667pt;}
.y144{bottom:351.146667pt;}
.y132{bottom:352.106667pt;}
.yde{bottom:352.426667pt;}
.y45{bottom:354.026667pt;}
.y1e{bottom:354.986667pt;}
.yc4{bottom:377.706667pt;}
.y1d{bottom:379.626667pt;}
.y11e{bottom:380.266667pt;}
.y103{bottom:380.906667pt;}
.y143{bottom:381.226667pt;}
.y131{bottom:382.186667pt;}
.ydd{bottom:382.826667pt;}
.y44{bottom:384.106667pt;}
.y40{bottom:385.066667pt;}
.y79{bottom:401.866667pt;}
.ya2{bottom:402.826667pt;}
.y1c{bottom:403.946667pt;}
.yc3{bottom:407.466667pt;}
.y11d{bottom:410.026667pt;}
.y102{bottom:410.666667pt;}
.y142{bottom:410.986667pt;}
.y130{bottom:411.946667pt;}
.ydc{bottom:412.906667pt;}
.y3f{bottom:413.866667pt;}
.y1b{bottom:428.586667pt;}
.yc2{bottom:437.546667pt;}
.y11c{bottom:440.426667pt;}
.y101{bottom:440.746667pt;}
.y141{bottom:441.066667pt;}
.y12f{bottom:442.026667pt;}
.ydb{bottom:442.986667pt;}
.y3e{bottom:443.946667pt;}
.y4e{bottom:450.026667pt;}
.y92{bottom:453.706667pt;}
.y1a{bottom:463.466667pt;}
.yc1{bottom:467.306667pt;}
.y11b{bottom:470.186667pt;}
.y100{bottom:470.826667pt;}
.y12e{bottom:471.786667pt;}
.yda{bottom:472.746667pt;}
.y3d{bottom:473.706667pt;}
.y19{bottom:495.786667pt;}
.yc0{bottom:497.066667pt;}
.y11a{bottom:500.266667pt;}
.yff{bottom:500.586667pt;}
.y12d{bottom:501.546667pt;}
.yd9{bottom:502.506667pt;}
.y3c{bottom:503.466667pt;}
.y99{bottom:504.906667pt;}
.y18{bottom:517.226667pt;}
.ybf{bottom:527.146667pt;}
.y62{bottom:528.906667pt;}
.y119{bottom:530.346667pt;}
.y140{bottom:530.666667pt;}
.yfe{bottom:530.986667pt;}
.y12c{bottom:531.626667pt;}
.yd8{bottom:532.586667pt;}
.y3b{bottom:533.546667pt;}
.y17{bottom:538.666667pt;}
.ybe{bottom:556.906667pt;}
.y16{bottom:560.106667pt;}
.y118{bottom:560.426667pt;}
.yfd{bottom:560.746667pt;}
.y12b{bottom:561.386667pt;}
.yd7{bottom:562.346667pt;}
.y3a{bottom:563.306667pt;}
.y15{bottom:581.546667pt;}
.ybd{bottom:587.306667pt;}
.y117{bottom:590.826667pt;}
.yfc{bottom:591.146667pt;}
.y12a{bottom:591.466667pt;}
.yd6{bottom:592.426667pt;}
.y39{bottom:593.386667pt;}
.y14{bottom:602.986667pt;}
.ybc{bottom:616.426667pt;}
.y116{bottom:620.586667pt;}
.y13f{bottom:620.906667pt;}
.yfb{bottom:621.226667pt;}
.yd5{bottom:622.186667pt;}
.y38{bottom:623.146667pt;}
.y37{bottom:624.106667pt;}
.y13{bottom:624.426667pt;}
.y12{bottom:645.866667pt;}
.yf3{bottom:649.706667pt;}
.y115{bottom:650.986667pt;}
.y6c{bottom:651.146667pt;}
.y129{bottom:651.306667pt;}
.yfa{bottom:651.626667pt;}
.y14e{bottom:652.266667pt;}
.yd4{bottom:652.586667pt;}
.y98{bottom:653.066667pt;}
.y36{bottom:653.226667pt;}
.yb4{bottom:663.946667pt;}
.y11{bottom:667.626667pt;}
.yf2{bottom:677.546667pt;}
.y114{bottom:680.746667pt;}
.y13e{bottom:681.066667pt;}
.yf9{bottom:681.386667pt;}
.y14d{bottom:682.026667pt;}
.yd3{bottom:682.346667pt;}
.y35{bottom:682.986667pt;}
.y10{bottom:689.066667pt;}
.y96{bottom:702.346667pt;}
.yf1{bottom:705.066667pt;}
.yf{bottom:710.506667pt;}
.y113{bottom:710.826667pt;}
.yf8{bottom:711.146667pt;}
.y14c{bottom:711.786667pt;}
.yd2{bottom:712.106667pt;}
.y34{bottom:712.746667pt;}
.ybb{bottom:713.546667pt;}
.ye{bottom:731.946667pt;}
.yf0{bottom:732.586667pt;}
.y66{bottom:737.546667pt;}
.y13d{bottom:740.906667pt;}
.y112{bottom:741.226667pt;}
.yf7{bottom:741.546667pt;}
.y14b{bottom:741.866667pt;}
.yd1{bottom:742.186667pt;}
.y33{bottom:742.826667pt;}
.yd{bottom:753.386667pt;}
.yef{bottom:760.106667pt;}
.yb9{bottom:762.826667pt;}
.y13c{bottom:770.986667pt;}
.yf6{bottom:771.306667pt;}
.y14a{bottom:771.626667pt;}
.yd0{bottom:772.266667pt;}
.y32{bottom:772.586667pt;}
.yc{bottom:774.826667pt;}
.yee{bottom:787.626667pt;}
.yb{bottom:796.266667pt;}
.y13b{bottom:801.066667pt;}
.y111{bottom:801.386667pt;}
.yf5{bottom:801.706667pt;}
.y149{bottom:802.026667pt;}
.ycf{bottom:802.346667pt;}
.y31{bottom:802.666667pt;}
.yed{bottom:815.466667pt;}
.ya{bottom:817.706667pt;}
.y65{bottom:823.946667pt;}
.y95{bottom:827.786667pt;}
.y13a{bottom:831.146667pt;}
.y110{bottom:831.466667pt;}
.yf4{bottom:831.786667pt;}
.yce{bottom:832.106667pt;}
.y30{bottom:832.426667pt;}
.y9{bottom:839.146667pt;}
.yec{bottom:842.986667pt;}
.yb7{bottom:846.666667pt;}
.y8{bottom:860.586667pt;}
.y10f{bottom:861.546667pt;}
.y128{bottom:861.866667pt;}
.ycd{bottom:862.186667pt;}
.y2f{bottom:862.506667pt;}
.yeb{bottom:870.506667pt;}
.y5d{bottom:874.826667pt;}
.y8e{bottom:878.666667pt;}
.y7{bottom:882.026667pt;}
.y10e{bottom:891.626667pt;}
.y148{bottom:891.946667pt;}
.y2e{bottom:892.266667pt;}
.yb0{bottom:897.866667pt;}
.yea{bottom:899.306667pt;}
.y6{bottom:903.466667pt;}
.y10d{bottom:921.386667pt;}
.y127{bottom:921.706667pt;}
.y2d{bottom:922.346667pt;}
.y5{bottom:924.906667pt;}
.y5b{bottom:925.706667pt;}
.ye9{bottom:928.106667pt;}
.y4{bottom:946.666667pt;}
.y10c{bottom:951.786667pt;}
.y2c{bottom:952.106667pt;}
.ye8{bottom:955.626667pt;}
.y5a{bottom:956.266667pt;}
.y3{bottom:968.106667pt;}
.y59{bottom:970.026667pt;}
.y2b{bottom:981.866667pt;}
.ye7{bottom:983.146667pt;}
.y58{bottom:986.986667pt;}
.y2{bottom:989.546667pt;}
.y8c{bottom:1004.106667pt;}
.y1{bottom:1010.986667pt;}
.y2a{bottom:1011.946667pt;}
.y29{bottom:1012.906667pt;}
.hb{height:19.520000pt;}
.h21{height:20.800000pt;}
.h13{height:21.120000pt;}
.h12{height:23.296875pt;}
.hf{height:28.153125pt;}
.h11{height:35.411250pt;}
.h10{height:35.831250pt;}
.h16{height:38.073750pt;}
.h1b{height:38.640000pt;}
.he{height:39.309375pt;}
.h19{height:42.320000pt;}
.h8{height:42.656250pt;}
.h5{height:43.750000pt;}
.h17{height:43.842500pt;}
.h7{height:46.068750pt;}
.h14{height:46.593750pt;}
.h9{height:46.811250pt;}
.h6{height:47.992500pt;}
.h15{height:48.000000pt;}
.h2{height:50.822500pt;}
.h2b{height:56.156250pt;}
.h3{height:58.708750pt;}
.ha{height:60.648750pt;}
.hc{height:61.391250pt;}
.h1{height:65.141250pt;}
.h4{height:75.249375pt;}
.h2a{height:82.560000pt;}
.h1f{height:82.880000pt;}
.h1a{height:85.120000pt;}
.h28{height:103.040000pt;}
.h27{height:105.920000pt;}
.h1c{height:119.360000pt;}
.h1e{height:123.840000pt;}
.h22{height:124.160000pt;}
.h24{height:146.880000pt;}
.h26{height:158.400000pt;}
.h20{height:176.640000pt;}
.h29{height:230.720000pt;}
.h25{height:314.880000pt;}
.h18{height:343.040000pt;}
.h1d{height:385.920000pt;}
.h23{height:422.080000pt;}
.hd{height:1098.506667pt;}
.h0{height:1122.666667pt;}
.w1{width:8.320000pt;}
.w2{width:16.320000pt;}
.wb{width:65.920000pt;}
.w4{width:66.240000pt;}
.w5{width:66.560000pt;}
.w6{width:66.880000pt;}
.w8{width:68.160000pt;}
.wa{width:84.800000pt;}
.w7{width:85.440000pt;}
.w9{width:289.600000pt;}
.w3{width:769.173333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x32{left:15.200000pt;}
.x27{left:16.800000pt;}
.x2a{left:18.080000pt;}
.x28{left:19.040000pt;}
.x2f{left:20.320000pt;}
.x21{left:24.160000pt;}
.x2d{left:28.640000pt;}
.x22{left:89.120000pt;}
.x1{left:113.280000pt;}
.x15{left:114.240000pt;}
.x10{left:115.520000pt;}
.x26{left:116.640000pt;}
.x23{left:119.040000pt;}
.x1e{left:120.320000pt;}
.x25{left:131.360000pt;}
.x16{left:137.280000pt;}
.x1a{left:139.840000pt;}
.x8{left:144.320000pt;}
.x12{left:149.760000pt;}
.x1c{left:160.320000pt;}
.x20{left:161.280000pt;}
.x2{left:183.680000pt;}
.x17{left:185.280000pt;}
.x18{left:209.280000pt;}
.x7{left:227.520000pt;}
.x19{left:233.280000pt;}
.x1f{left:234.560000pt;}
.x29{left:252.000000pt;}
.x4{left:256.000000pt;}
.x6{left:277.440000pt;}
.x9{left:279.360000pt;}
.x5{left:288.960000pt;}
.x24{left:305.280000pt;}
.x2b{left:319.840000pt;}
.x33{left:320.800000pt;}
.xc{left:328.000000pt;}
.x13{left:361.600000pt;}
.x2c{left:388.000000pt;}
.x3{left:396.480000pt;}
.xa{left:399.040000pt;}
.x14{left:402.560000pt;}
.xf{left:420.160000pt;}
.xe{left:428.800000pt;}
.x11{left:471.680000pt;}
.x2e{left:475.040000pt;}
.xb{left:477.120000pt;}
.x30{left:542.880000pt;}
.x34{left:543.840000pt;}
.x31{left:611.040000pt;}
.x1d{left:663.840000pt;}
.x1b{left:671.840000pt;}
.xd{left:679.680000pt;}
}

