
    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_41f429f607a33d198995fd5a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.979980;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_dcc5e669ab582ed465232d14.woff')format("woff");}.ff2{font-family:ff2;line-height:1.186035;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_4128ebcb81d94b7416c241f6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.179688;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_afcee2298922413cab1b596a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.063477;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_8f123bd61a2fac6bf5dc9052.woff')format("woff");}.ff5{font-family:ff5;line-height:1.063477;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_2f0cb3de684e72b3fdcaddc4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.179688;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_a8d18076000fb945153a6fd7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.063477;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_5ca63ce9af78693fd4140a1a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.936035;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_c9767bbbbf89b4c3f4c50dd3.woff')format("woff");}.ff9{font-family:ff9;line-height:0.980957;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_8b65c13bf458bb206b7a6433.woff')format("woff");}.ffa{font-family:ffa;line-height:1.182129;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_7f85ef79b74ef168906bce6d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.990234;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_2bab1f369b3ca71976a2eeb2.woff')format("woff");}.ffc{font-family:ffc;line-height:1.017090;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_bd2408117baf40a3d43a690c.woff')format("woff");}.ffd{font-family:ffd;line-height:1.115723;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_ba209b4aaeed0984e14485d5.woff')format("woff");}.ffe{font-family:ffe;line-height:0.990234;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_bd2408117baf40a3d43a690c.woff')format("woff");}.fff{font-family:fff;line-height:1.115723;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_c44452f2ef284f930dca0843.woff')format("woff");}.ff10{font-family:ff10;line-height:1.017090;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_ba209b4aaeed0984e14485d5.woff')format("woff");}.ff11{font-family:ff11;line-height:0.990234;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_bd2408117baf40a3d43a690c.woff')format("woff");}.ff12{font-family:ff12;line-height:1.115723;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_3cd329dc40da38a46cd67244.woff')format("woff");}.ff13{font-family:ff13;line-height:1.017090;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;}
.m6{transform:matrix(0.000000,-0.232466,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.232466,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.232466,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.184783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184783,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.195652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195652,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249793,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251004,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251011,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251013,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-1.494000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.332000px;}
.v1{vertical-align:96.000000px;}
.ls1{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.448500px;}
.ls5{letter-spacing:-0.420000px;}
.ls9{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.228570px;}
.lsb{letter-spacing:-0.227784px;}
.ls2{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.108000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.189576px;}
.ls8{letter-spacing:0.336000px;}
.ls7{letter-spacing:0.840000px;}
.ls6{letter-spacing:0.882000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(77,190,75),0 0.015em rgb(77,190,75),0.015em 0 rgb(77,190,75),0 -0.015em  rgb(77,190,75);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(77,190,75);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-14.364000px;}
.ws0{word-spacing:-14.148000px;}
.ws7b{word-spacing:-14.018702px;}
.wsc{word-spacing:-13.800000px;}
.wsb{word-spacing:-11.212500px;}
.ws72{word-spacing:-10.224000px;}
.ws7c{word-spacing:-5.364000px;}
.ws2{word-spacing:-2.754000px;}
.ws2b{word-spacing:-2.700000px;}
.ws7d{word-spacing:-2.664000px;}
.wsf{word-spacing:-2.484000px;}
.ws1a{word-spacing:-2.430000px;}
.ws23{word-spacing:-2.376000px;}
.ws35{word-spacing:-2.322000px;}
.ws41{word-spacing:-2.268000px;}
.ws11{word-spacing:-2.106000px;}
.ws58{word-spacing:-2.016000px;}
.ws4a{word-spacing:-1.998000px;}
.ws59{word-spacing:-1.932000px;}
.ws8{word-spacing:-1.836000px;}
.ws2e{word-spacing:-1.782000px;}
.ws69{word-spacing:-1.764000px;}
.ws52{word-spacing:-1.680000px;}
.ws53{word-spacing:-1.596000px;}
.ws7e{word-spacing:-1.476000px;}
.ws49{word-spacing:-1.458000px;}
.ws6d{word-spacing:-1.428000px;}
.ws18{word-spacing:-1.404000px;}
.ws5a{word-spacing:-1.386000px;}
.ws45{word-spacing:-1.350000px;}
.ws5b{word-spacing:-1.344000px;}
.ws76{word-spacing:-1.302000px;}
.ws3a{word-spacing:-1.296000px;}
.ws54{word-spacing:-1.218000px;}
.ws61{word-spacing:-1.134000px;}
.ws62{word-spacing:-1.092000px;}
.ws27{word-spacing:-1.080000px;}
.ws25{word-spacing:-0.972000px;}
.ws47{word-spacing:-0.918000px;}
.ws1d{word-spacing:-0.864000px;}
.ws63{word-spacing:-0.840000px;}
.ws6{word-spacing:-0.810000px;}
.ws68{word-spacing:-0.798000px;}
.ws43{word-spacing:-0.756000px;}
.ws9{word-spacing:-0.594000px;}
.ws73{word-spacing:-0.504000px;}
.ws6e{word-spacing:-0.462000px;}
.ws40{word-spacing:-0.432000px;}
.ws39{word-spacing:-0.378000px;}
.ws55{word-spacing:-0.336000px;}
.ws28{word-spacing:-0.270000px;}
.wsa{word-spacing:-0.162000px;}
.ws48{word-spacing:-0.108000px;}
.ws3b{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.ws38{word-spacing:0.054000px;}
.ws4e{word-spacing:0.084000px;}
.ws2c{word-spacing:0.108000px;}
.ws17{word-spacing:0.162000px;}
.ws14{word-spacing:0.216000px;}
.ws7f{word-spacing:0.227784px;}
.ws80{word-spacing:0.228570px;}
.ws13{word-spacing:0.270000px;}
.ws4f{word-spacing:0.420000px;}
.ws12{word-spacing:0.486000px;}
.ws4b{word-spacing:0.540000px;}
.ws3c{word-spacing:0.648000px;}
.ws21{word-spacing:0.702000px;}
.ws7a{word-spacing:0.720000px;}
.ws4d{word-spacing:0.798000px;}
.ws3{word-spacing:0.810000px;}
.ws4c{word-spacing:0.840000px;}
.ws26{word-spacing:0.864000px;}
.ws57{word-spacing:0.882000px;}
.ws56{word-spacing:0.924000px;}
.ws5d{word-spacing:0.966000px;}
.ws4{word-spacing:0.972000px;}
.ws5c{word-spacing:1.008000px;}
.ws46{word-spacing:1.026000px;}
.ws75{word-spacing:1.050000px;}
.ws19{word-spacing:1.080000px;}
.ws74{word-spacing:1.092000px;}
.ws15{word-spacing:1.134000px;}
.ws42{word-spacing:1.296000px;}
.ws67{word-spacing:1.386000px;}
.ws66{word-spacing:1.428000px;}
.ws24{word-spacing:1.512000px;}
.ws1f{word-spacing:1.566000px;}
.ws34{word-spacing:1.674000px;}
.ws1c{word-spacing:1.890000px;}
.ws44{word-spacing:1.944000px;}
.ws33{word-spacing:2.052000px;}
.wse{word-spacing:2.106000px;}
.ws31{word-spacing:2.268000px;}
.ws2d{word-spacing:2.322000px;}
.ws77{word-spacing:2.352000px;}
.ws29{word-spacing:2.376000px;}
.ws2a{word-spacing:2.592000px;}
.ws51{word-spacing:2.604000px;}
.ws50{word-spacing:2.688000px;}
.ws1e{word-spacing:2.754000px;}
.ws3d{word-spacing:2.808000px;}
.ws70{word-spacing:2.814000px;}
.ws65{word-spacing:2.856000px;}
.ws79{word-spacing:2.880000px;}
.ws6f{word-spacing:2.898000px;}
.ws6b{word-spacing:2.940000px;}
.ws3f{word-spacing:2.970000px;}
.ws64{word-spacing:2.982000px;}
.ws6a{word-spacing:3.066000px;}
.ws78{word-spacing:3.108000px;}
.ws6c{word-spacing:3.192000px;}
.ws20{word-spacing:3.294000px;}
.ws22{word-spacing:3.456000px;}
.ws3e{word-spacing:3.672000px;}
.ws32{word-spacing:3.726000px;}
.ws16{word-spacing:3.888000px;}
.ws71{word-spacing:4.032000px;}
.ws10{word-spacing:4.320000px;}
.ws60{word-spacing:4.326000px;}
.ws36{word-spacing:4.536000px;}
.ws5f{word-spacing:4.578000px;}
.ws5e{word-spacing:4.746000px;}
.ws5{word-spacing:5.346000px;}
.ws30{word-spacing:5.778000px;}
.ws7{word-spacing:5.886000px;}
.ws1b{word-spacing:5.940000px;}
.ws37{word-spacing:6.264000px;}
.ws2f{word-spacing:6.318000px;}
._14{margin-left:-212.954732px;}
._13{margin-left:-173.722219px;}
._15{margin-left:-159.500179px;}
._16{margin-left:-58.411260px;}
._6{margin-left:-9.443368px;}
._7{margin-left:-7.284600px;}
._4{margin-left:-4.310085px;}
._1{margin-left:-2.716200px;}
._2{margin-left:-1.069200px;}
._0{width:1.209600px;}
._3{width:2.359800px;}
._9{width:4.158000px;}
._8{width:29.354400px;}
._5{width:50.699367px;}
._b{width:486.648000px;}
._c{width:488.016000px;}
._a{width:489.672000px;}
._f{width:638.460000px;}
._11{width:641.343000px;}
._d{width:644.760000px;}
._12{width:646.004400px;}
._e{width:647.532000px;}
._10{width:1428.192000px;}
.fc5{color:transparent;}
.fc3{color:rgb(237,28,36);}
.fc2{color:rgb(4,6,6);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:10.123800px;}
.fsc{font-size:10.158600px;}
.fs8{font-size:18.957600px;}
.fsa{font-size:22.778400px;}
.fsd{font-size:22.857000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:42.000000px;}
.fs3{font-size:44.850000px;}
.fs6{font-size:48.000000px;}
.fsb{font-size:50.618400px;}
.fse{font-size:50.792400px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:55.200000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:187.536600px;}
.y0{bottom:0.000000px;}
.yc7{bottom:7.647660px;}
.yd0{bottom:8.545350px;}
.yd7{bottom:8.545500px;}
.yc6{bottom:10.684800px;}
.ycf{bottom:11.592900px;}
.yd6{bottom:11.593050px;}
.yce{bottom:14.640450px;}
.yd5{bottom:14.640600px;}
.yc5{bottom:27.989550px;}
.y11{bottom:47.336550px;}
.ya3{bottom:47.903100px;}
.y10{bottom:60.836400px;}
.ya2{bottom:62.151600px;}
.y95{bottom:63.222600px;}
.ya1{bottom:76.404000px;}
.yaf{bottom:76.535550px;}
.yb0{bottom:77.138550px;}
.y94{bottom:77.471100px;}
.yae{bottom:90.787950px;}
.yc1{bottom:92.320050px;}
.ya0{bottom:94.905000px;}
.yd3{bottom:95.261100px;}
.y93{bottom:95.972100px;}
.yca{bottom:98.337150px;}
.yb3{bottom:98.377950px;}
.yb2{bottom:98.395950px;}
.yb9{bottom:98.398350px;}
.y41{bottom:102.321300px;}
.y6b{bottom:102.510300px;}
.y86{bottom:103.999950px;}
.yd{bottom:104.039100px;}
.yc0{bottom:104.317050px;}
.y77{bottom:104.648400px;}
.yad{bottom:105.036450px;}
.yd2{bottom:107.297318px;}
.y9f{bottom:109.153500px;}
.y92{bottom:110.220600px;}
.yc9{bottom:112.184099px;}
.yda{bottom:113.587200px;}
.yd1{bottom:113.645850px;}
.y85{bottom:118.248450px;}
.yc8{bottom:118.510800px;}
.y40{bottom:120.316800px;}
.y6a{bottom:120.505800px;}
.yc{bottom:122.034600px;}
.y76{bottom:123.149400px;}
.y9e{bottom:123.414000px;}
.yac{bottom:123.537450px;}
.y91{bottom:124.469100px;}
.yc3{bottom:125.171850px;}
.yd9{bottom:125.258768px;}
.yd8{bottom:131.607300px;}
.y84{bottom:132.496950px;}
.yab{bottom:137.789850px;}
.y3f{bottom:138.312300px;}
.y69{bottom:138.501300px;}
.yb{bottom:140.030100px;}
.y75{bottom:141.650400px;}
.y9d{bottom:141.915000px;}
.y90{bottom:142.970100px;}
.yc4{bottom:144.567000px;}
.y83{bottom:150.998850px;}
.y82{bottom:151.000350px;}
.y74{bottom:155.898900px;}
.y9c{bottom:156.163500px;}
.yaa{bottom:156.290850px;}
.y3e{bottom:156.307800px;}
.y68{bottom:156.496800px;}
.y8f{bottom:157.218600px;}
.ya{bottom:158.025600px;}
.y81{bottom:165.248850px;}
.y9b{bottom:170.412000px;}
.ya9{bottom:170.539350px;}
.y3d{bottom:174.303300px;}
.y73{bottom:174.399900px;}
.y67{bottom:174.492300px;}
.y8e{bottom:175.720500px;}
.y8d{bottom:175.723050px;}
.y9{bottom:176.021100px;}
.y80{bottom:183.750900px;}
.ydc{bottom:187.875900px;}
.y9a{bottom:188.913000px;}
.ya7{bottom:189.037800px;}
.ya8{bottom:189.041400px;}
.y3c{bottom:192.298800px;}
.y66{bottom:192.487800px;}
.y72{bottom:192.900900px;}
.y8{bottom:194.016600px;}
.y8c{bottom:194.224050px;}
.y7f{bottom:202.252800px;}
.y7e{bottom:202.255200px;}
.y99{bottom:203.161500px;}
.ya6{bottom:204.042300px;}
.y71{bottom:207.149400px;}
.y8b{bottom:208.472550px;}
.y8a{bottom:208.476450px;}
.y3b{bottom:210.294300px;}
.y65{bottom:210.483300px;}
.ydb{bottom:212.009400px;}
.y7{bottom:212.030100px;}
.y98{bottom:217.410000px;}
.y7d{bottom:220.756200px;}
.ya5{bottom:222.543300px;}
.y70{bottom:225.650400px;}
.y89{bottom:226.977450px;}
.y3a{bottom:228.289800px;}
.y64{bottom:228.478800px;}
.y6{bottom:230.025600px;}
.y7c{bottom:235.004700px;}
.y7b{bottom:235.005750px;}
.y97{bottom:235.911000px;}
.ya4{bottom:236.793300px;}
.y6f{bottom:239.902950px;}
.y88{bottom:241.225950px;}
.y39{bottom:246.285300px;}
.y63{bottom:246.474300px;}
.y5{bottom:248.021100px;}
.y96{bottom:250.159500px;}
.y7a{bottom:253.506750px;}
.y87{bottom:255.474450px;}
.y6e{bottom:258.403950px;}
.y38{bottom:264.280800px;}
.y62{bottom:264.469800px;}
.y4{bottom:266.016600px;}
.y79{bottom:267.756750px;}
.y6d{bottom:272.652450px;}
.y37{bottom:282.276300px;}
.y61{bottom:282.465300px;}
.y3{bottom:284.021100px;}
.y78{bottom:286.258650px;}
.y36{bottom:300.271800px;}
.y60{bottom:300.460800px;}
.y2{bottom:302.016600px;}
.y35{bottom:318.267300px;}
.y5f{bottom:318.456300px;}
.y34{bottom:336.262800px;}
.y5e{bottom:336.451800px;}
.y1{bottom:338.016600px;}
.y33{bottom:354.258300px;}
.y5d{bottom:354.447300px;}
.y32{bottom:372.253800px;}
.y5c{bottom:372.442800px;}
.yb8{bottom:387.745800px;}
.y31{bottom:390.249300px;}
.y5b{bottom:390.438300px;}
.yb7{bottom:399.742800px;}
.y30{bottom:408.244800px;}
.y5a{bottom:408.433800px;}
.yb6{bottom:421.534050px;}
.y2f{bottom:426.240300px;}
.y59{bottom:426.429300px;}
.ybe{bottom:426.530250px;}
.ydd{bottom:426.980850px;}
.y2e{bottom:444.235800px;}
.y58{bottom:444.424800px;}
.ybd{bottom:448.331700px;}
.yc2{bottom:448.335450px;}
.ybf{bottom:448.681650px;}
.y2d{bottom:462.231300px;}
.y57{bottom:462.420300px;}
.y2c{bottom:480.226800px;}
.y56{bottom:480.415800px;}
.y2b{bottom:498.222300px;}
.y55{bottom:498.411300px;}
.y2a{bottom:516.217800px;}
.y54{bottom:516.406800px;}
.y29{bottom:534.213300px;}
.y53{bottom:534.402300px;}
.y28{bottom:552.208800px;}
.y52{bottom:552.397800px;}
.y27{bottom:570.204300px;}
.y51{bottom:570.393300px;}
.y26{bottom:588.199800px;}
.y50{bottom:588.388800px;}
.y25{bottom:606.195300px;}
.y4f{bottom:606.384300px;}
.y24{bottom:624.190800px;}
.y4e{bottom:624.379800px;}
.y23{bottom:642.186300px;}
.y4d{bottom:642.375300px;}
.y22{bottom:660.181800px;}
.y4c{bottom:660.370800px;}
.y21{bottom:678.177300px;}
.y4b{bottom:678.366300px;}
.y20{bottom:696.172800px;}
.y4a{bottom:696.361800px;}
.y1f{bottom:714.168300px;}
.y49{bottom:714.357300px;}
.y1e{bottom:732.163800px;}
.y48{bottom:732.352800px;}
.yb5{bottom:741.190650px;}
.y1d{bottom:750.159300px;}
.y47{bottom:750.348300px;}
.yb4{bottom:753.187650px;}
.ycb{bottom:767.991900px;}
.y1c{bottom:768.154800px;}
.y46{bottom:768.343800px;}
.yb1{bottom:774.673950px;}
.ybb{bottom:779.988900px;}
.y1b{bottom:786.150300px;}
.y45{bottom:786.339300px;}
.ycc{bottom:801.248700px;}
.yba{bottom:801.550650px;}
.ybc{bottom:802.319700px;}
.y1a{bottom:804.145800px;}
.y44{bottom:804.334800px;}
.y18{bottom:816.136800px;}
.yd4{bottom:820.630500px;}
.ycd{bottom:820.737000px;}
.y19{bottom:822.141300px;}
.y43{bottom:822.330300px;}
.y42{bottom:840.325800px;}
.y6c{bottom:917.735250px;}
.y17{bottom:927.548400px;}
.y16{bottom:948.303600px;}
.y15{bottom:964.804650px;}
.y14{bottom:1000.560450px;}
.y13{bottom:1019.806350px;}
.y12{bottom:1040.812350px;}
.ye{bottom:1110.426150px;}
.yf{bottom:1128.574050px;}
.h19{height:7.668553px;}
.h15{height:8.912701px;}
.h1a{height:8.943338px;}
.h14{height:9.342765px;}
.h13{height:14.310766px;}
.h16{height:21.021082px;}
.h1b{height:21.093618px;}
.he{height:34.628906px;}
.hf{height:34.664062px;}
.h11{height:34.864462px;}
.h10{height:35.996063px;}
.h1d{height:36.032062px;}
.h7{height:39.353247px;}
.hc{height:40.441406px;}
.hb{height:40.816406px;}
.h8{height:43.185645px;}
.hd{height:46.218750px;}
.h17{height:46.713270px;}
.h1c{height:46.873846px;}
.h6{height:48.434766px;}
.h3{height:51.943359px;}
.h4{height:51.996094px;}
.h5{height:53.151562px;}
.h2{height:54.949219px;}
.h9{height:69.328125px;}
.ha{height:164.552378px;}
.h12{height:246.295500px;}
.h18{height:247.464000px;}
.h1{height:1194.750000px;}
.h0{height:1194.802500px;}
.w2{width:183.532500px;}
.w3{width:184.255500px;}
.w4{width:186.124500px;}
.w1{width:1785.750000px;}
.w0{width:1785.825000px;}
.x27{left:-1.886700px;}
.x0{left:0.000000px;}
.x11{left:41.875200px;}
.x4{left:51.023550px;}
.x23{left:55.275600px;}
.xb{left:72.283500px;}
.x29{left:83.301019px;}
.xc{left:89.136750px;}
.xe{left:93.548850px;}
.x35{left:108.781504px;}
.x1e{left:119.108100px;}
.x2b{left:121.245805px;}
.xd{left:123.626850px;}
.x34{left:125.437350px;}
.x28{left:133.604100px;}
.x33{left:135.379200px;}
.x2e{left:137.227500px;}
.x2a{left:139.731450px;}
.x30{left:143.673592px;}
.x2f{left:150.547950px;}
.x31{left:162.367050px;}
.x2c{left:164.933700px;}
.x26{left:252.377700px;}
.x5{left:383.234400px;}
.x6{left:386.752050px;}
.x1b{left:400.771350px;}
.x3{left:418.818900px;}
.x25{left:449.084700px;}
.x1c{left:505.268850px;}
.x1d{left:509.899350px;}
.x24{left:646.877100px;}
.x1f{left:695.824800px;}
.x20{left:953.291400px;}
.x12{left:1003.239900px;}
.x18{left:1045.031100px;}
.x13{left:1047.716700px;}
.xf{left:1105.508850px;}
.x7{left:1113.498750px;}
.x10{left:1126.771350px;}
.x21{left:1151.831400px;}
.x1{left:1200.544050px;}
.x19{left:1212.434850px;}
.x1a{left:1217.065350px;}
.x16{left:1317.481500px;}
.x17{left:1324.606050px;}
.x22{left:1348.137300px;}
.x2d{left:1349.901000px;}
.x36{left:1367.007900px;}
.x2{left:1388.267700px;}
.x8{left:1445.709600px;}
.xa{left:1446.865462px;}
.x9{left:1449.227400px;}
.x32{left:1544.427000px;}
.x14{left:1560.470100px;}
.x15{left:1606.986900px;}
@media print{
.v2{vertical-align:-1.328000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.184000pt;}
.v1{vertical-align:85.333333pt;}
.ls1{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.398667pt;}
.ls5{letter-spacing:-0.373333pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.203173pt;}
.lsb{letter-spacing:-0.202475pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.096000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.168512pt;}
.ls8{letter-spacing:0.298667pt;}
.ls7{letter-spacing:0.746667pt;}
.ls6{letter-spacing:0.784000pt;}
.wsd{word-spacing:-12.768000pt;}
.ws0{word-spacing:-12.576000pt;}
.ws7b{word-spacing:-12.461069pt;}
.wsc{word-spacing:-12.266667pt;}
.wsb{word-spacing:-9.966667pt;}
.ws72{word-spacing:-9.088000pt;}
.ws7c{word-spacing:-4.768000pt;}
.ws2{word-spacing:-2.448000pt;}
.ws2b{word-spacing:-2.400000pt;}
.ws7d{word-spacing:-2.368000pt;}
.wsf{word-spacing:-2.208000pt;}
.ws1a{word-spacing:-2.160000pt;}
.ws23{word-spacing:-2.112000pt;}
.ws35{word-spacing:-2.064000pt;}
.ws41{word-spacing:-2.016000pt;}
.ws11{word-spacing:-1.872000pt;}
.ws58{word-spacing:-1.792000pt;}
.ws4a{word-spacing:-1.776000pt;}
.ws59{word-spacing:-1.717333pt;}
.ws8{word-spacing:-1.632000pt;}
.ws2e{word-spacing:-1.584000pt;}
.ws69{word-spacing:-1.568000pt;}
.ws52{word-spacing:-1.493333pt;}
.ws53{word-spacing:-1.418667pt;}
.ws7e{word-spacing:-1.312000pt;}
.ws49{word-spacing:-1.296000pt;}
.ws6d{word-spacing:-1.269333pt;}
.ws18{word-spacing:-1.248000pt;}
.ws5a{word-spacing:-1.232000pt;}
.ws45{word-spacing:-1.200000pt;}
.ws5b{word-spacing:-1.194667pt;}
.ws76{word-spacing:-1.157333pt;}
.ws3a{word-spacing:-1.152000pt;}
.ws54{word-spacing:-1.082667pt;}
.ws61{word-spacing:-1.008000pt;}
.ws62{word-spacing:-0.970667pt;}
.ws27{word-spacing:-0.960000pt;}
.ws25{word-spacing:-0.864000pt;}
.ws47{word-spacing:-0.816000pt;}
.ws1d{word-spacing:-0.768000pt;}
.ws63{word-spacing:-0.746667pt;}
.ws6{word-spacing:-0.720000pt;}
.ws68{word-spacing:-0.709333pt;}
.ws43{word-spacing:-0.672000pt;}
.ws9{word-spacing:-0.528000pt;}
.ws73{word-spacing:-0.448000pt;}
.ws6e{word-spacing:-0.410667pt;}
.ws40{word-spacing:-0.384000pt;}
.ws39{word-spacing:-0.336000pt;}
.ws55{word-spacing:-0.298667pt;}
.ws28{word-spacing:-0.240000pt;}
.wsa{word-spacing:-0.144000pt;}
.ws48{word-spacing:-0.096000pt;}
.ws3b{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.ws38{word-spacing:0.048000pt;}
.ws4e{word-spacing:0.074667pt;}
.ws2c{word-spacing:0.096000pt;}
.ws17{word-spacing:0.144000pt;}
.ws14{word-spacing:0.192000pt;}
.ws7f{word-spacing:0.202475pt;}
.ws80{word-spacing:0.203173pt;}
.ws13{word-spacing:0.240000pt;}
.ws4f{word-spacing:0.373333pt;}
.ws12{word-spacing:0.432000pt;}
.ws4b{word-spacing:0.480000pt;}
.ws3c{word-spacing:0.576000pt;}
.ws21{word-spacing:0.624000pt;}
.ws7a{word-spacing:0.640000pt;}
.ws4d{word-spacing:0.709333pt;}
.ws3{word-spacing:0.720000pt;}
.ws4c{word-spacing:0.746667pt;}
.ws26{word-spacing:0.768000pt;}
.ws57{word-spacing:0.784000pt;}
.ws56{word-spacing:0.821333pt;}
.ws5d{word-spacing:0.858667pt;}
.ws4{word-spacing:0.864000pt;}
.ws5c{word-spacing:0.896000pt;}
.ws46{word-spacing:0.912000pt;}
.ws75{word-spacing:0.933333pt;}
.ws19{word-spacing:0.960000pt;}
.ws74{word-spacing:0.970667pt;}
.ws15{word-spacing:1.008000pt;}
.ws42{word-spacing:1.152000pt;}
.ws67{word-spacing:1.232000pt;}
.ws66{word-spacing:1.269333pt;}
.ws24{word-spacing:1.344000pt;}
.ws1f{word-spacing:1.392000pt;}
.ws34{word-spacing:1.488000pt;}
.ws1c{word-spacing:1.680000pt;}
.ws44{word-spacing:1.728000pt;}
.ws33{word-spacing:1.824000pt;}
.wse{word-spacing:1.872000pt;}
.ws31{word-spacing:2.016000pt;}
.ws2d{word-spacing:2.064000pt;}
.ws77{word-spacing:2.090667pt;}
.ws29{word-spacing:2.112000pt;}
.ws2a{word-spacing:2.304000pt;}
.ws51{word-spacing:2.314667pt;}
.ws50{word-spacing:2.389333pt;}
.ws1e{word-spacing:2.448000pt;}
.ws3d{word-spacing:2.496000pt;}
.ws70{word-spacing:2.501333pt;}
.ws65{word-spacing:2.538667pt;}
.ws79{word-spacing:2.560000pt;}
.ws6f{word-spacing:2.576000pt;}
.ws6b{word-spacing:2.613333pt;}
.ws3f{word-spacing:2.640000pt;}
.ws64{word-spacing:2.650667pt;}
.ws6a{word-spacing:2.725333pt;}
.ws78{word-spacing:2.762667pt;}
.ws6c{word-spacing:2.837333pt;}
.ws20{word-spacing:2.928000pt;}
.ws22{word-spacing:3.072000pt;}
.ws3e{word-spacing:3.264000pt;}
.ws32{word-spacing:3.312000pt;}
.ws16{word-spacing:3.456000pt;}
.ws71{word-spacing:3.584000pt;}
.ws10{word-spacing:3.840000pt;}
.ws60{word-spacing:3.845333pt;}
.ws36{word-spacing:4.032000pt;}
.ws5f{word-spacing:4.069333pt;}
.ws5e{word-spacing:4.218667pt;}
.ws5{word-spacing:4.752000pt;}
.ws30{word-spacing:5.136000pt;}
.ws7{word-spacing:5.232000pt;}
.ws1b{word-spacing:5.280000pt;}
.ws37{word-spacing:5.568000pt;}
.ws2f{word-spacing:5.616000pt;}
._14{margin-left:-189.293095pt;}
._13{margin-left:-154.419750pt;}
._15{margin-left:-141.777937pt;}
._16{margin-left:-51.921120pt;}
._6{margin-left:-8.394105pt;}
._7{margin-left:-6.475200pt;}
._4{margin-left:-3.831187pt;}
._1{margin-left:-2.414400pt;}
._2{margin-left:-0.950400pt;}
._0{width:1.075200pt;}
._3{width:2.097600pt;}
._9{width:3.696000pt;}
._8{width:26.092800pt;}
._5{width:45.066104pt;}
._b{width:432.576000pt;}
._c{width:433.792000pt;}
._a{width:435.264000pt;}
._f{width:567.520000pt;}
._11{width:570.082667pt;}
._d{width:573.120000pt;}
._12{width:574.226133pt;}
._e{width:575.584000pt;}
._10{width:1269.504000pt;}
.fs9{font-size:8.998933pt;}
.fsc{font-size:9.029867pt;}
.fs8{font-size:16.851200pt;}
.fsa{font-size:20.247467pt;}
.fsd{font-size:20.317333pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:37.333333pt;}
.fs3{font-size:39.866667pt;}
.fs6{font-size:42.666667pt;}
.fsb{font-size:44.994133pt;}
.fse{font-size:45.148800pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:49.066667pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:166.699200pt;}
.y0{bottom:0.000000pt;}
.yc7{bottom:6.797920pt;}
.yd0{bottom:7.595867pt;}
.yd7{bottom:7.596000pt;}
.yc6{bottom:9.497600pt;}
.ycf{bottom:10.304800pt;}
.yd6{bottom:10.304933pt;}
.yce{bottom:13.013733pt;}
.yd5{bottom:13.013867pt;}
.yc5{bottom:24.879600pt;}
.y11{bottom:42.076933pt;}
.ya3{bottom:42.580533pt;}
.y10{bottom:54.076800pt;}
.ya2{bottom:55.245867pt;}
.y95{bottom:56.197867pt;}
.ya1{bottom:67.914667pt;}
.yaf{bottom:68.031600pt;}
.yb0{bottom:68.567600pt;}
.y94{bottom:68.863200pt;}
.yae{bottom:80.700400pt;}
.yc1{bottom:82.062267pt;}
.ya0{bottom:84.360000pt;}
.yd3{bottom:84.676533pt;}
.y93{bottom:85.308533pt;}
.yca{bottom:87.410800pt;}
.yb3{bottom:87.447067pt;}
.yb2{bottom:87.463067pt;}
.yb9{bottom:87.465200pt;}
.y41{bottom:90.952267pt;}
.y6b{bottom:91.120267pt;}
.y86{bottom:92.444400pt;}
.yd{bottom:92.479200pt;}
.yc0{bottom:92.726267pt;}
.y77{bottom:93.020800pt;}
.yad{bottom:93.365733pt;}
.yd2{bottom:95.375394pt;}
.y9f{bottom:97.025333pt;}
.y92{bottom:97.973867pt;}
.yc9{bottom:99.719199pt;}
.yda{bottom:100.966400pt;}
.yd1{bottom:101.018533pt;}
.y85{bottom:105.109733pt;}
.yc8{bottom:105.342933pt;}
.y40{bottom:106.948267pt;}
.y6a{bottom:107.116267pt;}
.yc{bottom:108.475200pt;}
.y76{bottom:109.466133pt;}
.y9e{bottom:109.701333pt;}
.yac{bottom:109.811067pt;}
.y91{bottom:110.639200pt;}
.yc3{bottom:111.263867pt;}
.yd9{bottom:111.341127pt;}
.yd8{bottom:116.984267pt;}
.y84{bottom:117.775067pt;}
.yab{bottom:122.479867pt;}
.y3f{bottom:122.944267pt;}
.y69{bottom:123.112267pt;}
.yb{bottom:124.471200pt;}
.y75{bottom:125.911467pt;}
.y9d{bottom:126.146667pt;}
.y90{bottom:127.084533pt;}
.yc4{bottom:128.504000pt;}
.y83{bottom:134.221200pt;}
.y82{bottom:134.222533pt;}
.y74{bottom:138.576800pt;}
.y9c{bottom:138.812000pt;}
.yaa{bottom:138.925200pt;}
.y3e{bottom:138.940267pt;}
.y68{bottom:139.108267pt;}
.y8f{bottom:139.749867pt;}
.ya{bottom:140.467200pt;}
.y81{bottom:146.887867pt;}
.y9b{bottom:151.477333pt;}
.ya9{bottom:151.590533pt;}
.y3d{bottom:154.936267pt;}
.y73{bottom:155.022133pt;}
.y67{bottom:155.104267pt;}
.y8e{bottom:156.196000pt;}
.y8d{bottom:156.198267pt;}
.y9{bottom:156.463200pt;}
.y80{bottom:163.334133pt;}
.ydc{bottom:167.000800pt;}
.y9a{bottom:167.922667pt;}
.ya7{bottom:168.033600pt;}
.ya8{bottom:168.036800pt;}
.y3c{bottom:170.932267pt;}
.y66{bottom:171.100267pt;}
.y72{bottom:171.467467pt;}
.y8{bottom:172.459200pt;}
.y8c{bottom:172.643600pt;}
.y7f{bottom:179.780267pt;}
.y7e{bottom:179.782400pt;}
.y99{bottom:180.588000pt;}
.ya6{bottom:181.370933pt;}
.y71{bottom:184.132800pt;}
.y8b{bottom:185.308933pt;}
.y8a{bottom:185.312400pt;}
.y3b{bottom:186.928267pt;}
.y65{bottom:187.096267pt;}
.ydb{bottom:188.452800pt;}
.y7{bottom:188.471200pt;}
.y98{bottom:193.253333pt;}
.y7d{bottom:196.227733pt;}
.ya5{bottom:197.816267pt;}
.y70{bottom:200.578133pt;}
.y89{bottom:201.757733pt;}
.y3a{bottom:202.924267pt;}
.y64{bottom:203.092267pt;}
.y6{bottom:204.467200pt;}
.y7c{bottom:208.893067pt;}
.y7b{bottom:208.894000pt;}
.y97{bottom:209.698667pt;}
.ya4{bottom:210.482933pt;}
.y6f{bottom:213.247067pt;}
.y88{bottom:214.423067pt;}
.y39{bottom:218.920267pt;}
.y63{bottom:219.088267pt;}
.y5{bottom:220.463200pt;}
.y96{bottom:222.364000pt;}
.y7a{bottom:225.339333pt;}
.y87{bottom:227.088400pt;}
.y6e{bottom:229.692400pt;}
.y38{bottom:234.916267pt;}
.y62{bottom:235.084267pt;}
.y4{bottom:236.459200pt;}
.y79{bottom:238.006000pt;}
.y6d{bottom:242.357733pt;}
.y37{bottom:250.912267pt;}
.y61{bottom:251.080267pt;}
.y3{bottom:252.463200pt;}
.y78{bottom:254.452133pt;}
.y36{bottom:266.908267pt;}
.y60{bottom:267.076267pt;}
.y2{bottom:268.459200pt;}
.y35{bottom:282.904267pt;}
.y5f{bottom:283.072267pt;}
.y34{bottom:298.900267pt;}
.y5e{bottom:299.068267pt;}
.y1{bottom:300.459200pt;}
.y33{bottom:314.896267pt;}
.y5d{bottom:315.064267pt;}
.y32{bottom:330.892267pt;}
.y5c{bottom:331.060267pt;}
.yb8{bottom:344.662933pt;}
.y31{bottom:346.888267pt;}
.y5b{bottom:347.056267pt;}
.yb7{bottom:355.326933pt;}
.y30{bottom:362.884267pt;}
.y5a{bottom:363.052267pt;}
.yb6{bottom:374.696933pt;}
.y2f{bottom:378.880267pt;}
.y59{bottom:379.048267pt;}
.ybe{bottom:379.138000pt;}
.ydd{bottom:379.538533pt;}
.y2e{bottom:394.876267pt;}
.y58{bottom:395.044267pt;}
.ybd{bottom:398.517067pt;}
.yc2{bottom:398.520400pt;}
.ybf{bottom:398.828133pt;}
.y2d{bottom:410.872267pt;}
.y57{bottom:411.040267pt;}
.y2c{bottom:426.868267pt;}
.y56{bottom:427.036267pt;}
.y2b{bottom:442.864267pt;}
.y55{bottom:443.032267pt;}
.y2a{bottom:458.860267pt;}
.y54{bottom:459.028267pt;}
.y29{bottom:474.856267pt;}
.y53{bottom:475.024267pt;}
.y28{bottom:490.852267pt;}
.y52{bottom:491.020267pt;}
.y27{bottom:506.848267pt;}
.y51{bottom:507.016267pt;}
.y26{bottom:522.844267pt;}
.y50{bottom:523.012267pt;}
.y25{bottom:538.840267pt;}
.y4f{bottom:539.008267pt;}
.y24{bottom:554.836267pt;}
.y4e{bottom:555.004267pt;}
.y23{bottom:570.832267pt;}
.y4d{bottom:571.000267pt;}
.y22{bottom:586.828267pt;}
.y4c{bottom:586.996267pt;}
.y21{bottom:602.824267pt;}
.y4b{bottom:602.992267pt;}
.y20{bottom:618.820267pt;}
.y4a{bottom:618.988267pt;}
.y1f{bottom:634.816267pt;}
.y49{bottom:634.984267pt;}
.y1e{bottom:650.812267pt;}
.y48{bottom:650.980267pt;}
.yb5{bottom:658.836133pt;}
.y1d{bottom:666.808267pt;}
.y47{bottom:666.976267pt;}
.yb4{bottom:669.500133pt;}
.ycb{bottom:682.659467pt;}
.y1c{bottom:682.804267pt;}
.y46{bottom:682.972267pt;}
.yb1{bottom:688.599067pt;}
.ybb{bottom:693.323467pt;}
.y1b{bottom:698.800267pt;}
.y45{bottom:698.968267pt;}
.ycc{bottom:712.221067pt;}
.yba{bottom:712.489467pt;}
.ybc{bottom:713.173067pt;}
.y1a{bottom:714.796267pt;}
.y44{bottom:714.964267pt;}
.y18{bottom:725.454933pt;}
.yd4{bottom:729.449333pt;}
.ycd{bottom:729.544000pt;}
.y19{bottom:730.792267pt;}
.y43{bottom:730.960267pt;}
.y42{bottom:746.956267pt;}
.y6c{bottom:815.764667pt;}
.y17{bottom:824.487467pt;}
.y16{bottom:842.936533pt;}
.y15{bottom:857.604133pt;}
.y14{bottom:889.387067pt;}
.y13{bottom:906.494533pt;}
.y12{bottom:925.166533pt;}
.ye{bottom:987.045467pt;}
.yf{bottom:1003.176933pt;}
.h19{height:6.816491pt;}
.h15{height:7.922401pt;}
.h1a{height:7.949634pt;}
.h14{height:8.304680pt;}
.h13{height:12.720681pt;}
.h16{height:18.685406pt;}
.h1b{height:18.749883pt;}
.he{height:30.781250pt;}
.hf{height:30.812500pt;}
.h11{height:30.990633pt;}
.h10{height:31.996500pt;}
.h1d{height:32.028500pt;}
.h7{height:34.980664pt;}
.hc{height:35.947917pt;}
.hb{height:36.281250pt;}
.h8{height:38.387240pt;}
.hd{height:41.083333pt;}
.h17{height:41.522906pt;}
.h1c{height:41.665641pt;}
.h6{height:43.053125pt;}
.h3{height:46.171875pt;}
.h4{height:46.218750pt;}
.h5{height:47.245833pt;}
.h2{height:48.843750pt;}
.h9{height:61.625000pt;}
.ha{height:146.268780pt;}
.h12{height:218.929333pt;}
.h18{height:219.968000pt;}
.h1{height:1062.000000pt;}
.h0{height:1062.046667pt;}
.w2{width:163.140000pt;}
.w3{width:163.782667pt;}
.w4{width:165.444000pt;}
.w1{width:1587.333333pt;}
.w0{width:1587.400000pt;}
.x27{left:-1.677067pt;}
.x0{left:0.000000pt;}
.x11{left:37.222400pt;}
.x4{left:45.354267pt;}
.x23{left:49.133867pt;}
.xb{left:64.252000pt;}
.x29{left:74.045350pt;}
.xc{left:79.232667pt;}
.xe{left:83.154533pt;}
.x35{left:96.694671pt;}
.x1e{left:105.873867pt;}
.x2b{left:107.774049pt;}
.xd{left:109.890533pt;}
.x34{left:111.499867pt;}
.x28{left:118.759200pt;}
.x33{left:120.337067pt;}
.x2e{left:121.980000pt;}
.x2a{left:124.205733pt;}
.x30{left:127.709859pt;}
.x2f{left:133.820400pt;}
.x31{left:144.326267pt;}
.x2c{left:146.607733pt;}
.x26{left:224.335733pt;}
.x5{left:340.652800pt;}
.x6{left:343.779600pt;}
.x1b{left:356.241200pt;}
.x3{left:372.283467pt;}
.x25{left:399.186400pt;}
.x1c{left:449.127867pt;}
.x1d{left:453.243867pt;}
.x24{left:575.001867pt;}
.x1f{left:618.510933pt;}
.x20{left:847.370133pt;}
.x12{left:891.768800pt;}
.x18{left:928.916533pt;}
.x13{left:931.303733pt;}
.xf{left:982.674533pt;}
.x7{left:989.776667pt;}
.x10{left:1001.574533pt;}
.x21{left:1023.850133pt;}
.x1{left:1067.150267pt;}
.x19{left:1077.719867pt;}
.x1a{left:1081.835867pt;}
.x16{left:1171.094667pt;}
.x17{left:1177.427600pt;}
.x22{left:1198.344267pt;}
.x2d{left:1199.912000pt;}
.x36{left:1215.118133pt;}
.x2{left:1234.015733pt;}
.x8{left:1285.075200pt;}
.xa{left:1286.102633pt;}
.x9{left:1288.202133pt;}
.x32{left:1372.824000pt;}
.x14{left:1387.084533pt;}
.x15{left:1428.432800pt;}
}

