
    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_25a44f41f7e1485a540e71d2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.197000;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_e3db263e323a9634b7ec0f93.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202000;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_8f362c062f7bf6f26358fba9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_22e920b4f0d9ea881e8a01d2.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_fca781b67967208c013445cd.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7deac241ed44f21e13d2552b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_51f578492ef2fbf9805e10b5.woff')format("woff");}.ff7{font-family:ff7;line-height:1.213000;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_2dcf33a7f50e569aca78bcbf.woff')format("woff");}.ff8{font-family:ff8;line-height:1.222000;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_ee6719e6c5f3c7d04e871590.woff')format("woff");}.ff9{font-family:ff9;line-height:1.256000;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_25a44f41f7e1485a540e71d2.woff')format("woff");}.ffa{font-family:ffa;line-height:1.197000;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_d8750e363f1c8886edd9b499.woff')format("woff");}.ffb{font-family:ffb;line-height:1.230000;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_ee6719e6c5f3c7d04e871590.woff')format("woff");}.ffc{font-family:ffc;line-height:1.256000;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_25a44f41f7e1485a540e71d2.woff')format("woff");}.ffd{font-family:ffd;line-height:1.197000;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_1bc9d1c8384c9b8a35e76b71.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_ee6719e6c5f3c7d04e871590.woff')format("woff");}.fff{font-family:fff;line-height:1.256000;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_347fbbbc5a31d49e24b9cbc8.woff')format("woff");}.ff10{font-family:ff10;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_f0a0bb47af7d063c9c0e897e.woff')format("woff");}.ff11{font-family:ff11;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-19.199982px;}
.v2{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls17{letter-spacing:-12.000000px;}
.ls1a{letter-spacing:-11.952000px;}
.ls1b{letter-spacing:-11.904000px;}
.ls18{letter-spacing:-11.856000px;}
.lsd{letter-spacing:-6.000000px;}
.lsb{letter-spacing:-4.800000px;}
.ls19{letter-spacing:-3.552000px;}
.lsa{letter-spacing:-1.776000px;}
.ls15{letter-spacing:-1.152000px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000092px;}
.ls0{letter-spacing:0.000583px;}
.ls8{letter-spacing:0.000606px;}
.ls4{letter-spacing:0.009518px;}
.ls5{letter-spacing:0.009564px;}
.ls3{letter-spacing:0.009604px;}
.lse{letter-spacing:0.009607px;}
.ls2{letter-spacing:0.009609px;}
.lsf{letter-spacing:0.009613px;}
.lsc{letter-spacing:0.096000px;}
.ls1e{letter-spacing:30.703191px;}
.ls1c{letter-spacing:53.015344px;}
.ls6{letter-spacing:53.015396px;}
.ls1d{letter-spacing:53.015985px;}
.ls10{letter-spacing:153.193268px;}
.ls13{letter-spacing:161.208993px;}
.ls16{letter-spacing:180.970276px;}
.ls12{letter-spacing:213.733346px;}
.ls14{letter-spacing:234.316223px;}
.ls11{letter-spacing:242.332223px;}
.ls9{letter-spacing:545.590210px;}
.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;}
}
.ws2{word-spacing:-15.000000px;}
.wsb{word-spacing:-13.332000px;}
.ws3{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.120000px;}
.ws45{word-spacing:-12.096000px;}
.ws42{word-spacing:-12.000000px;}
.ws2b{word-spacing:-11.340000px;}
.ws49{word-spacing:-10.500000px;}
.ws0{word-spacing:-9.408000px;}
.ws6c{word-spacing:-9.216000px;}
.ws88{word-spacing:-8.448000px;}
.ws96{word-spacing:-8.400000px;}
.wsa{word-spacing:-2.160000px;}
.ws19{word-spacing:-1.920000px;}
.ws4e{word-spacing:-1.740000px;}
.ws97{word-spacing:-1.728000px;}
.ws4a{word-spacing:-1.440000px;}
.ws78{word-spacing:-1.344000px;}
.ws7c{word-spacing:-1.296000px;}
.ws3c{word-spacing:-1.260000px;}
.ws8f{word-spacing:-1.200000px;}
.ws79{word-spacing:-0.864000px;}
.ws1a{word-spacing:-0.840000px;}
.ws81{word-spacing:-0.768000px;}
.ws70{word-spacing:-0.720000px;}
.ws82{word-spacing:-0.336000px;}
.ws48{word-spacing:-0.240000px;}
.ws47{word-spacing:-0.192000px;}
.wse{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.ws76{word-spacing:0.096000px;}
.ws13{word-spacing:0.180000px;}
.ws87{word-spacing:0.192000px;}
.ws18{word-spacing:0.240000px;}
.ws8e{word-spacing:0.288000px;}
.ws7d{word-spacing:0.336000px;}
.ws5b{word-spacing:0.480000px;}
.ws7a{word-spacing:0.528000px;}
.ws75{word-spacing:0.672000px;}
.ws8a{word-spacing:0.768000px;}
.ws22{word-spacing:0.780000px;}
.ws6d{word-spacing:0.900000px;}
.ws84{word-spacing:0.912000px;}
.ws73{word-spacing:1.008000px;}
.ws7{word-spacing:1.260000px;}
.ws5a{word-spacing:1.320000px;}
.ws2e{word-spacing:1.380000px;}
.ws74{word-spacing:1.392000px;}
.ws80{word-spacing:1.440000px;}
.ws2d{word-spacing:1.500000px;}
.ws2c{word-spacing:1.560000px;}
.ws98{word-spacing:1.584000px;}
.ws7f{word-spacing:1.680000px;}
.ws71{word-spacing:1.776000px;}
.ws21{word-spacing:1.800000px;}
.ws41{word-spacing:1.920000px;}
.ws92{word-spacing:1.968000px;}
.ws4f{word-spacing:1.980000px;}
.wsd{word-spacing:2.220000px;}
.ws4d{word-spacing:2.580000px;}
.ws28{word-spacing:2.640000px;}
.ws1f{word-spacing:2.700000px;}
.ws85{word-spacing:2.736000px;}
.ws4c{word-spacing:2.760000px;}
.wsc{word-spacing:2.832000px;}
.ws86{word-spacing:2.976000px;}
.ws1c{word-spacing:3.000000px;}
.ws40{word-spacing:3.120000px;}
.ws20{word-spacing:3.300000px;}
.ws8b{word-spacing:3.504000px;}
.ws77{word-spacing:3.600000px;}
.ws11{word-spacing:3.840000px;}
.ws8c{word-spacing:3.936000px;}
.ws72{word-spacing:3.984000px;}
.ws1b{word-spacing:4.380000px;}
.ws83{word-spacing:4.416000px;}
.ws3e{word-spacing:4.440000px;}
.ws2f{word-spacing:4.500000px;}
.ws26{word-spacing:4.560000px;}
.ws29{word-spacing:4.680000px;}
.ws5d{word-spacing:4.740000px;}
.ws1d{word-spacing:4.920000px;}
.ws9{word-spacing:5.340000px;}
.ws3d{word-spacing:5.400000px;}
.ws1e{word-spacing:5.520000px;}
.ws5c{word-spacing:5.760000px;}
.ws14{word-spacing:5.820000px;}
.ws16{word-spacing:5.880000px;}
.ws17{word-spacing:6.000000px;}
.ws10{word-spacing:6.240000px;}
.ws8d{word-spacing:6.288000px;}
.ws3b{word-spacing:6.360000px;}
.ws6a{word-spacing:6.420000px;}
.ws7b{word-spacing:6.528000px;}
.ws6e{word-spacing:6.600000px;}
.ws23{word-spacing:6.660000px;}
.ws3f{word-spacing:6.720000px;}
.ws6b{word-spacing:7.008000px;}
.ws4b{word-spacing:7.020000px;}
.ws12{word-spacing:7.260000px;}
.ws8{word-spacing:7.560000px;}
.ws24{word-spacing:7.620000px;}
.ws46{word-spacing:8.100000px;}
.ws25{word-spacing:8.280000px;}
.ws2a{word-spacing:8.400000px;}
.ws7e{word-spacing:8.496000px;}
.ws27{word-spacing:8.940000px;}
.ws93{word-spacing:9.024000px;}
.ws15{word-spacing:9.900000px;}
.ws91{word-spacing:11.904000px;}
.ws90{word-spacing:11.952000px;}
.ws6f{word-spacing:12.000000px;}
.ws89{word-spacing:13.056000px;}
.wsf{word-spacing:17.220000px;}
.ws54{word-spacing:21.493346px;}
.ws44{word-spacing:22.015137px;}
.ws58{word-spacing:24.123047px;}
.ws56{word-spacing:24.137663px;}
.ws51{word-spacing:24.316223px;}
.ws53{word-spacing:32.138864px;}
.ws94{word-spacing:44.321294px;}
.ws95{word-spacing:44.321431px;}
.ws4{word-spacing:44.950714px;}
.ws5{word-spacing:44.950805px;}
.ws59{word-spacing:49.529663px;}
.ws60{word-spacing:53.188751px;}
.ws5f{word-spacing:56.989793px;}
.ws55{word-spacing:57.435047px;}
.ws30{word-spacing:63.642092px;}
.ws66{word-spacing:69.472770px;}
.ws33{word-spacing:75.995361px;}
.ws38{word-spacing:77.776794px;}
.ws57{word-spacing:78.991342px;}
.ws62{word-spacing:84.970276px;}
.ws65{word-spacing:93.505777px;}
.ws67{word-spacing:93.583803px;}
.ws31{word-spacing:99.995361px;}
.ws36{word-spacing:99.995461px;}
.ws5e{word-spacing:107.918893px;}
.ws52{word-spacing:110.811596px;}
.ws37{word-spacing:123.995361px;}
.ws61{word-spacing:131.918893px;}
.ws32{word-spacing:194.250092px;}
.ws34{word-spacing:210.699463px;}
.ws39{word-spacing:214.246030px;}
.ws35{word-spacing:221.796658px;}
.ws68{word-spacing:313.857580px;}
.ws3a{word-spacing:495.578377px;}
.ws50{word-spacing:506.670598px;}
.ws64{word-spacing:565.143005px;}
.ws63{word-spacing:566.717405px;}
.ws43{word-spacing:1524.402589px;}
.ws69{word-spacing:1692.850822px;}
._67{margin-left:-66.351585px;}
._66{margin-left:-12.550882px;}
._65{margin-left:-11.449118px;}
._13{margin-left:-8.386886px;}
._5{margin-left:-7.380000px;}
._11{margin-left:-5.903999px;}
._b{margin-left:-4.565999px;}
._e{margin-left:-3.456000px;}
._a{margin-left:-2.400000px;}
._0{margin-left:-1.396800px;}
._1{width:1.200000px;}
._d{width:3.126000px;}
._2{width:4.140000px;}
._12{width:5.154001px;}
._4{width:6.156000px;}
._6{width:7.926000px;}
._8{width:9.527999px;}
._9{width:10.578001px;}
._7{width:12.035999px;}
._3{width:13.482000px;}
._c{width:16.842001px;}
._30{width:17.899899px;}
._2f{width:19.216886px;}
._32{width:34.015137px;}
._10{width:35.760000px;}
._3e{width:37.117338px;}
._42{width:38.788039px;}
._5e{width:43.508418px;}
._5c{width:45.374456px;}
._f{width:53.470783px;}
._68{width:56.255991px;}
._3c{width:58.975342px;}
._36{width:60.123596px;}
._3f{width:61.794655px;}
._4a{width:63.892751px;}
._52{width:65.188751px;}
._34{width:71.640993px;}
._45{width:82.975342px;}
._1f{width:87.919218px;}
._17{width:92.091463px;}
._3d{width:104.788696px;}
._59{width:109.624189px;}
._21{width:111.995361px;}
._41{width:122.424808px;}
._64{width:125.488770px;}
._5b{width:128.614192px;}
._2d{width:130.543218px;}
._16{width:132.011361px;}
._4b{width:145.212055px;}
._3b{width:147.860308px;}
._5a{width:154.849777px;}
._4e{width:155.916055px;}
._4d{width:166.382446px;}
._44{width:172.223905px;}
._5d{width:177.544189px;}
._4f{width:188.986276px;}
._15{width:192.389453px;}
._38{width:196.804696px;}
._1a{width:206.250092px;}
._29{width:208.030792px;}
._48{width:210.459603px;}
._27{width:214.591218px;}
._1b{width:222.699463px;}
._20{width:225.232777px;}
._2b{width:230.250092px;}
._3a{width:234.316223px;}
._37{width:239.876308px;}
._50{width:258.253793px;}
._24{width:289.168777px;}
._43{width:291.620308px;}
._58{width:305.453405px;}
._22{width:314.527218px;}
._25{width:319.792777px;}
._33{width:322.784379px;}
._53{width:338.040068px;}
._46{width:366.654598px;}
._1d{width:367.951218px;}
._4c{width:376.595405px;}
._5f{width:388.681770px;}
._35{width:390.654598px;}
._26{width:413.200777px;}
._1c{width:420.406776px;}
._23{width:445.120777px;}
._47{width:446.430598px;}
._1e{width:447.808777px;}
._18{width:451.903218px;}
._39{width:468.030598px;}
._40{width:476.046598px;}
._19{width:479.824777px;}
._57{width:489.971405px;}
._31{width:493.247461px;}
._2e{width:509.152777px;}
._49{width:512.045405px;}
._51{width:517.373405px;}
._28{width:543.808777px;}
._56{width:549.389405px;}
._2a{width:567.808777px;}
._2c{width:591.808777px;}
._54{width:703.155670px;}
._60{width:715.046990px;}
._55{width:977.393463px;}
._61{width:1013.032754px;}
._14{width:1148.975995px;}
._62{width:1207.473637px;}
._63{width:1487.346053px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:33.600000px;}
.fs3{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:78.000000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:46.736100px;}
.y51{bottom:46.771650px;}
.y87{bottom:90.001350px;}
.y26{bottom:90.001499px;}
.y50{bottom:90.425102px;}
.y86{bottom:94.253403px;}
.y116{bottom:97.854904px;}
.y4f{bottom:108.425102px;}
.y85{bottom:111.089400px;}
.y115{bottom:112.104904px;}
.ydc{bottom:121.175102px;}
.y84{bottom:125.339400px;}
.y14e{bottom:126.343197px;}
.y114{bottom:126.354904px;}
.y4e{bottom:126.425102px;}
.yae{bottom:133.175102px;}
.ydb{bottom:135.425102px;}
.y83{bottom:139.589400px;}
.y14d{bottom:140.593197px;}
.y113{bottom:140.604904px;}
.y4d{bottom:144.425102px;}
.yad{bottom:147.425102px;}
.yda{bottom:149.675102px;}
.y15a{bottom:151.591644px;}
.y14c{bottom:154.843197px;}
.y112{bottom:154.854904px;}
.y82{bottom:156.413555px;}
.y1f{bottom:156.705746px;}
.y4c{bottom:162.425102px;}
.yd9{bottom:163.925102px;}
.y14b{bottom:169.093197px;}
.y111{bottom:169.104904px;}
.y81{bottom:170.663555px;}
.y159{bottom:173.341644px;}
.y1e{bottom:174.705746px;}
.yd8{bottom:178.175102px;}
.yac{bottom:179.675102px;}
.y4b{bottom:180.425102px;}
.y14a{bottom:183.343197px;}
.y110{bottom:183.354904px;}
.y80{bottom:187.487846px;}
.yd7{bottom:192.425102px;}
.y1d{bottom:192.705757px;}
.y158{bottom:195.091644px;}
.y149{bottom:197.593208px;}
.y10f{bottom:197.604904px;}
.y4a{bottom:198.425102px;}
.y7f{bottom:201.737846px;}
.yd6{bottom:206.675102px;}
.y1c{bottom:210.705757px;}
.y148{bottom:211.843208px;}
.y10e{bottom:211.854904px;}
.yab{bottom:211.925102px;}
.y49{bottom:216.425102px;}
.y157{bottom:216.841644px;}
.y7e{bottom:218.562149px;}
.yd5{bottom:220.925102px;}
.y147{bottom:226.093208px;}
.y10d{bottom:226.104904px;}
.yaa{bottom:226.175102px;}
.y1b{bottom:228.705757px;}
.y156{bottom:233.791649px;}
.y48{bottom:234.425102px;}
.yd4{bottom:235.175102px;}
.y7d{bottom:235.386292px;}
.y146{bottom:240.343208px;}
.y10c{bottom:240.354904px;}
.y1a{bottom:246.705757px;}
.yd3{bottom:249.425102px;}
.y7c{bottom:249.636292px;}
.y47{bottom:252.425102px;}
.y155{bottom:252.841644px;}
.y145{bottom:254.593208px;}
.y10b{bottom:254.604904px;}
.yd2{bottom:263.675102px;}
.y7b{bottom:263.886292px;}
.y19{bottom:264.705757px;}
.y144{bottom:268.843208px;}
.y10a{bottom:268.854904px;}
.y46{bottom:270.425102px;}
.y154{bottom:277.173454px;}
.yd1{bottom:277.925102px;}
.y7a{bottom:280.710594px;}
.y18{bottom:282.705757px;}
.y143{bottom:283.093208px;}
.y109{bottom:283.104904px;}
.y45{bottom:288.425102px;}
.y153{bottom:291.423454px;}
.yd0{bottom:292.175102px;}
.y79{bottom:294.960594px;}
.y142{bottom:297.343208px;}
.y108{bottom:297.354904px;}
.y17{bottom:300.705757px;}
.y44{bottom:306.425102px;}
.y78{bottom:309.210594px;}
.y141{bottom:311.593208px;}
.y107{bottom:311.604904px;}
.y152{bottom:313.174049px;}
.y16{bottom:318.705597px;}
.ycf{bottom:320.675102px;}
.y43{bottom:324.425102px;}
.y140{bottom:325.843208px;}
.y106{bottom:325.854904px;}
.y77{bottom:326.034897px;}
.y151{bottom:327.424049px;}
.yce{bottom:334.925102px;}
.y15{bottom:336.705597px;}
.y13f{bottom:340.093208px;}
.y105{bottom:340.104904px;}
.y76{bottom:340.284897px;}
.ya9{bottom:341.787895px;}
.y42{bottom:342.425102px;}
.ycd{bottom:349.175102px;}
.y13e{bottom:354.343208px;}
.y104{bottom:354.354904px;}
.y14{bottom:354.705597px;}
.y75{bottom:357.853203px;}
.ya8{bottom:360.289810px;}
.y41{bottom:360.425102px;}
.ycc{bottom:363.425102px;}
.y13d{bottom:368.593208px;}
.y103{bottom:368.604904px;}
.y74{bottom:372.103203px;}
.y13{bottom:372.705597px;}
.ya7{bottom:374.539810px;}
.ycb{bottom:377.675102px;}
.y58{bottom:378.425102px;}
.y13c{bottom:382.843208px;}
.y102{bottom:382.854904px;}
.y73{bottom:386.353180px;}
.y12{bottom:390.705734px;}
.ya6{bottom:391.364090px;}
.yca{bottom:391.925079px;}
.y40{bottom:396.425079px;}
.y13b{bottom:397.093185px;}
.y101{bottom:397.104904px;}
.y72{bottom:403.177368px;}
.yc9{bottom:406.175079px;}
.ya5{bottom:408.188416px;}
.y11{bottom:408.705734px;}
.y13a{bottom:411.343185px;}
.y100{bottom:411.354904px;}
.y57{bottom:414.425079px;}
.y71{bottom:417.427368px;}
.yc8{bottom:420.425079px;}
.ya4{bottom:425.012558px;}
.y139{bottom:425.593185px;}
.yff{bottom:425.604904px;}
.y10{bottom:426.705734px;}
.y3f{bottom:432.425079px;}
.yc7{bottom:434.675079px;}
.y138{bottom:439.843185px;}
.yfe{bottom:439.854904px;}
.ya3{bottom:441.836838px;}
.yf{bottom:444.705734px;}
.yc6{bottom:448.925079px;}
.y3e{bottom:450.425079px;}
.y137{bottom:454.093185px;}
.yfd{bottom:454.104904px;}
.ya2{bottom:458.661163px;}
.ye{bottom:462.705734px;}
.yc5{bottom:463.175079px;}
.y136{bottom:468.343185px;}
.yfc{bottom:468.354904px;}
.y3d{bottom:468.425079px;}
.ya1{bottom:475.485306px;}
.yc4{bottom:477.425079px;}
.yd{bottom:480.705734px;}
.y135{bottom:482.593185px;}
.yfb{bottom:482.604904px;}
.y150{bottom:482.979904px;}
.y3c{bottom:486.425079px;}
.yc3{bottom:491.675079px;}
.ya0{bottom:492.309586px;}
.y134{bottom:496.843185px;}
.yfa{bottom:496.854904px;}
.y14f{bottom:497.229904px;}
.yc{bottom:498.705734px;}
.y3b{bottom:504.425079px;}
.yc2{bottom:505.925079px;}
.y9f{bottom:509.133911px;}
.y133{bottom:511.093185px;}
.yf9{bottom:511.104904px;}
.yb{bottom:516.705734px;}
.y70{bottom:520.045670px;}
.yc1{bottom:520.175079px;}
.y3a{bottom:522.425079px;}
.y132{bottom:525.343185px;}
.yf8{bottom:525.354904px;}
.y9e{bottom:526.702194px;}
.yc0{bottom:534.425079px;}
.ya{bottom:534.705734px;}
.y6f{bottom:536.869812px;}
.y131{bottom:539.593185px;}
.yf7{bottom:539.604904px;}
.y39{bottom:540.425079px;}
.y9d{bottom:540.952194px;}
.ybf{bottom:548.675079px;}
.y9{bottom:552.705734px;}
.y6e{bottom:553.694092px;}
.y130{bottom:553.843185px;}
.yf6{bottom:553.854904px;}
.y9c{bottom:557.776520px;}
.y38{bottom:558.425079px;}
.ybe{bottom:562.925079px;}
.y12f{bottom:568.093185px;}
.yf5{bottom:568.104904px;}
.y6d{bottom:570.518417px;}
.y8{bottom:570.705734px;}
.y37{bottom:576.425079px;}
.ybd{bottom:577.175079px;}
.y12e{bottom:582.343185px;}
.yf4{bottom:582.354904px;}
.y6c{bottom:587.342560px;}
.y7{bottom:588.705734px;}
.ybc{bottom:591.425079px;}
.y36{bottom:594.425079px;}
.y12d{bottom:596.593185px;}
.yf3{bottom:596.604904px;}
.y6b{bottom:604.166840px;}
.ybb{bottom:605.675079px;}
.y6{bottom:606.705734px;}
.y9b{bottom:609.508804px;}
.y12c{bottom:610.843185px;}
.yf2{bottom:610.854904px;}
.y9a{bottom:612.082947px;}
.y35{bottom:612.425079px;}
.yba{bottom:619.925079px;}
.y6a{bottom:620.991165px;}
.y5{bottom:624.705734px;}
.y12b{bottom:625.093185px;}
.yf1{bottom:625.104904px;}
.y99{bottom:626.332947px;}
.y34{bottom:630.425079px;}
.yb9{bottom:634.175079px;}
.y69{bottom:637.815445px;}
.y12a{bottom:639.343185px;}
.yf0{bottom:639.354904px;}
.y4{bottom:642.705734px;}
.y98{bottom:643.157272px;}
.y33{bottom:648.425079px;}
.y129{bottom:653.593185px;}
.yef{bottom:653.604904px;}
.y68{bottom:654.639587px;}
.y97{bottom:659.981552px;}
.y3{bottom:660.705734px;}
.y96{bottom:662.555695px;}
.y32{bottom:666.425079px;}
.y128{bottom:667.843185px;}
.yee{bottom:667.854904px;}
.y67{bottom:671.463913px;}
.y95{bottom:676.805695px;}
.y127{bottom:682.093185px;}
.yed{bottom:682.104904px;}
.y31{bottom:684.425079px;}
.y66{bottom:688.288193px;}
.y94{bottom:693.630020px;}
.y126{bottom:696.343185px;}
.yec{bottom:696.354904px;}
.y30{bottom:702.425079px;}
.y65{bottom:705.112335px;}
.y93{bottom:707.880020px;}
.y21{bottom:710.223312px;}
.y125{bottom:710.593185px;}
.yeb{bottom:710.604904px;}
.y2f{bottom:720.425079px;}
.y64{bottom:721.936661px;}
.y20{bottom:724.473312px;}
.y92{bottom:724.510803px;}
.y124{bottom:724.843185px;}
.yea{bottom:724.854904px;}
.y91{bottom:727.085083px;}
.yb8{bottom:728.677963px;}
.y2e{bottom:738.425079px;}
.y63{bottom:738.760803px;}
.y123{bottom:739.093185px;}
.ye9{bottom:739.104904px;}
.y90{bottom:741.335083px;}
.yb7{bottom:742.927963px;}
.y122{bottom:753.343185px;}
.ye8{bottom:753.354904px;}
.y62{bottom:755.585083px;}
.y2d{bottom:756.425079px;}
.yb6{bottom:757.177963px;}
.y8f{bottom:758.159409px;}
.y25{bottom:763.237198px;}
.y121{bottom:767.593185px;}
.ye7{bottom:767.604904px;}
.yb5{bottom:771.427917px;}
.y61{bottom:772.409363px;}
.y2c{bottom:774.425079px;}
.y8e{bottom:774.983734px;}
.y24{bottom:781.237244px;}
.y120{bottom:781.843231px;}
.ye6{bottom:781.854858px;}
.yb4{bottom:785.677917px;}
.y60{bottom:789.233734px;}
.y8d{bottom:791.807831px;}
.y2b{bottom:792.425079px;}
.y8c{bottom:794.382111px;}
.y11f{bottom:796.093231px;}
.ye5{bottom:796.104858px;}
.yb3{bottom:799.927917px;}
.y5f{bottom:806.057831px;}
.y8b{bottom:808.632111px;}
.y11e{bottom:810.343231px;}
.ye4{bottom:810.354858px;}
.y56{bottom:810.425079px;}
.yb2{bottom:814.177917px;}
.y5e{bottom:822.882111px;}
.y23{bottom:823.686035px;}
.y11d{bottom:824.593231px;}
.ye3{bottom:824.604858px;}
.y8a{bottom:825.456482px;}
.y2a{bottom:828.425079px;}
.yb1{bottom:828.427917px;}
.y11c{bottom:838.843231px;}
.ye2{bottom:838.854858px;}
.y5d{bottom:839.706482px;}
.y89{bottom:842.280579px;}
.yb0{bottom:842.677917px;}
.y22{bottom:846.186035px;}
.y55{bottom:846.425079px;}
.y11b{bottom:853.093231px;}
.ye1{bottom:853.104858px;}
.y5c{bottom:857.274719px;}
.y88{bottom:859.849091px;}
.y54{bottom:864.425079px;}
.y11a{bottom:867.343231px;}
.ye0{bottom:867.354858px;}
.y5b{bottom:874.099091px;}
.yaf{bottom:874.926636px;}
.y119{bottom:881.593231px;}
.ydf{bottom:881.604858px;}
.y53{bottom:882.425079px;}
.y5a{bottom:888.349091px;}
.y29{bottom:889.175079px;}
.y118{bottom:895.843231px;}
.yde{bottom:895.854858px;}
.y52{bottom:900.425079px;}
.y59{bottom:905.173187px;}
.y28{bottom:907.175079px;}
.y117{bottom:910.093231px;}
.ydd{bottom:910.104858px;}
.y2{bottom:924.938965px;}
.y1{bottom:939.188965px;}
.h1a{height:29.482031px;}
.h16{height:32.531250px;}
.h11{height:33.328125px;}
.h5{height:41.660156px;}
.hb{height:42.117188px;}
.h15{height:42.187500px;}
.h14{height:42.187546px;}
.h12{height:42.234375px;}
.h3{height:45.456000px;}
.h2{height:45.696000px;}
.h10{height:46.224000px;}
.h17{height:47.472000px;}
.h6{height:52.646484px;}
.h7{height:52.792969px;}
.hd{height:57.780000px;}
.hf{height:58.800000px;}
.h4{height:59.340000px;}
.h13{height:60.852539px;}
.h9{height:64.446000px;}
.ha{height:64.446183px;}
.h18{height:64.823908px;}
.h19{height:64.824000px;}
.he{height:65.274000px;}
.hc{height:72.000000px;}
.h8{height:75.114000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x1{left:76.535402px;}
.x2a{left:90.123299px;}
.x4{left:93.543303px;}
.x2b{left:97.795200px;}
.x29{left:102.047253px;}
.x24{left:136.267353px;}
.xb{left:175.100555px;}
.xc{left:191.924847px;}
.xd{left:209.504860px;}
.x8{left:224.827354px;}
.xe{left:226.329140px;}
.xf{left:243.153442px;}
.x10{left:259.977745px;}
.x25{left:261.365845px;}
.x11{left:276.801910px;}
.x1f{left:279.175941px;}
.x12{left:293.626190px;}
.x13{left:310.450356px;}
.x14{left:327.274658px;}
.x20{left:341.771553px;}
.x15{left:344.098961px;}
.x16{left:360.923103px;}
.x7{left:366.779549px;}
.x17{left:377.747406px;}
.x22{left:384.746567px;}
.x26{left:392.133591px;}
.x18{left:394.571686px;}
.x19{left:411.395828px;}
.x23{left:424.722290px;}
.x1a{left:428.220154px;}
.x27{left:436.266312px;}
.x1b{left:445.044296px;}
.x1c{left:461.868622px;}
.x1e{left:471.323090px;}
.x5{left:477.023117px;}
.x6{left:479.340912px;}
.x28{left:480.375916px;}
.x3{left:482.629028px;}
.x1d{left:492.954620px;}
.xa{left:517.499268px;}
.x2{left:521.162704px;}
.x21{left:544.524307px;}
.x9{left:547.003052px;}
@media print{
.v3{vertical-align:-17.066650pt;}
.v2{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls17{letter-spacing:-10.666667pt;}
.ls1a{letter-spacing:-10.624000pt;}
.ls1b{letter-spacing:-10.581333pt;}
.ls18{letter-spacing:-10.538667pt;}
.lsd{letter-spacing:-5.333333pt;}
.lsb{letter-spacing:-4.266667pt;}
.ls19{letter-spacing:-3.157333pt;}
.lsa{letter-spacing:-1.578667pt;}
.ls15{letter-spacing:-1.024000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000081pt;}
.ls0{letter-spacing:0.000518pt;}
.ls8{letter-spacing:0.000539pt;}
.ls4{letter-spacing:0.008460pt;}
.ls5{letter-spacing:0.008501pt;}
.ls3{letter-spacing:0.008537pt;}
.lse{letter-spacing:0.008539pt;}
.ls2{letter-spacing:0.008542pt;}
.lsf{letter-spacing:0.008545pt;}
.lsc{letter-spacing:0.085333pt;}
.ls1e{letter-spacing:27.291725pt;}
.ls1c{letter-spacing:47.124750pt;}
.ls6{letter-spacing:47.124797pt;}
.ls1d{letter-spacing:47.125320pt;}
.ls10{letter-spacing:136.171794pt;}
.ls13{letter-spacing:143.296883pt;}
.ls16{letter-spacing:160.862467pt;}
.ls12{letter-spacing:189.985197pt;}
.ls14{letter-spacing:208.281087pt;}
.ls11{letter-spacing:215.406421pt;}
.ls9{letter-spacing:484.969076pt;}
.ws2{word-spacing:-13.333333pt;}
.wsb{word-spacing:-11.850667pt;}
.ws3{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.773333pt;}
.ws45{word-spacing:-10.752000pt;}
.ws42{word-spacing:-10.666667pt;}
.ws2b{word-spacing:-10.080000pt;}
.ws49{word-spacing:-9.333333pt;}
.ws0{word-spacing:-8.362667pt;}
.ws6c{word-spacing:-8.192000pt;}
.ws88{word-spacing:-7.509333pt;}
.ws96{word-spacing:-7.466667pt;}
.wsa{word-spacing:-1.920000pt;}
.ws19{word-spacing:-1.706667pt;}
.ws4e{word-spacing:-1.546667pt;}
.ws97{word-spacing:-1.536000pt;}
.ws4a{word-spacing:-1.280000pt;}
.ws78{word-spacing:-1.194667pt;}
.ws7c{word-spacing:-1.152000pt;}
.ws3c{word-spacing:-1.120000pt;}
.ws8f{word-spacing:-1.066667pt;}
.ws79{word-spacing:-0.768000pt;}
.ws1a{word-spacing:-0.746667pt;}
.ws81{word-spacing:-0.682667pt;}
.ws70{word-spacing:-0.640000pt;}
.ws82{word-spacing:-0.298667pt;}
.ws48{word-spacing:-0.213333pt;}
.ws47{word-spacing:-0.170667pt;}
.wse{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.ws76{word-spacing:0.085333pt;}
.ws13{word-spacing:0.160000pt;}
.ws87{word-spacing:0.170667pt;}
.ws18{word-spacing:0.213333pt;}
.ws8e{word-spacing:0.256000pt;}
.ws7d{word-spacing:0.298667pt;}
.ws5b{word-spacing:0.426667pt;}
.ws7a{word-spacing:0.469333pt;}
.ws75{word-spacing:0.597333pt;}
.ws8a{word-spacing:0.682667pt;}
.ws22{word-spacing:0.693333pt;}
.ws6d{word-spacing:0.800000pt;}
.ws84{word-spacing:0.810667pt;}
.ws73{word-spacing:0.896000pt;}
.ws7{word-spacing:1.120000pt;}
.ws5a{word-spacing:1.173333pt;}
.ws2e{word-spacing:1.226667pt;}
.ws74{word-spacing:1.237333pt;}
.ws80{word-spacing:1.280000pt;}
.ws2d{word-spacing:1.333333pt;}
.ws2c{word-spacing:1.386667pt;}
.ws98{word-spacing:1.408000pt;}
.ws7f{word-spacing:1.493333pt;}
.ws71{word-spacing:1.578667pt;}
.ws21{word-spacing:1.600000pt;}
.ws41{word-spacing:1.706667pt;}
.ws92{word-spacing:1.749333pt;}
.ws4f{word-spacing:1.760000pt;}
.wsd{word-spacing:1.973333pt;}
.ws4d{word-spacing:2.293333pt;}
.ws28{word-spacing:2.346667pt;}
.ws1f{word-spacing:2.400000pt;}
.ws85{word-spacing:2.432000pt;}
.ws4c{word-spacing:2.453333pt;}
.wsc{word-spacing:2.517333pt;}
.ws86{word-spacing:2.645333pt;}
.ws1c{word-spacing:2.666667pt;}
.ws40{word-spacing:2.773333pt;}
.ws20{word-spacing:2.933333pt;}
.ws8b{word-spacing:3.114667pt;}
.ws77{word-spacing:3.200000pt;}
.ws11{word-spacing:3.413333pt;}
.ws8c{word-spacing:3.498667pt;}
.ws72{word-spacing:3.541333pt;}
.ws1b{word-spacing:3.893333pt;}
.ws83{word-spacing:3.925333pt;}
.ws3e{word-spacing:3.946667pt;}
.ws2f{word-spacing:4.000000pt;}
.ws26{word-spacing:4.053333pt;}
.ws29{word-spacing:4.160000pt;}
.ws5d{word-spacing:4.213333pt;}
.ws1d{word-spacing:4.373333pt;}
.ws9{word-spacing:4.746667pt;}
.ws3d{word-spacing:4.800000pt;}
.ws1e{word-spacing:4.906667pt;}
.ws5c{word-spacing:5.120000pt;}
.ws14{word-spacing:5.173333pt;}
.ws16{word-spacing:5.226667pt;}
.ws17{word-spacing:5.333333pt;}
.ws10{word-spacing:5.546667pt;}
.ws8d{word-spacing:5.589333pt;}
.ws3b{word-spacing:5.653333pt;}
.ws6a{word-spacing:5.706667pt;}
.ws7b{word-spacing:5.802667pt;}
.ws6e{word-spacing:5.866667pt;}
.ws23{word-spacing:5.920000pt;}
.ws3f{word-spacing:5.973333pt;}
.ws6b{word-spacing:6.229333pt;}
.ws4b{word-spacing:6.240000pt;}
.ws12{word-spacing:6.453333pt;}
.ws8{word-spacing:6.720000pt;}
.ws24{word-spacing:6.773333pt;}
.ws46{word-spacing:7.200000pt;}
.ws25{word-spacing:7.360000pt;}
.ws2a{word-spacing:7.466667pt;}
.ws7e{word-spacing:7.552000pt;}
.ws27{word-spacing:7.946667pt;}
.ws93{word-spacing:8.021333pt;}
.ws15{word-spacing:8.800000pt;}
.ws91{word-spacing:10.581333pt;}
.ws90{word-spacing:10.624000pt;}
.ws6f{word-spacing:10.666667pt;}
.ws89{word-spacing:11.605333pt;}
.wsf{word-spacing:15.306667pt;}
.ws54{word-spacing:19.105197pt;}
.ws44{word-spacing:19.569010pt;}
.ws58{word-spacing:21.442708pt;}
.ws56{word-spacing:21.455701pt;}
.ws51{word-spacing:21.614421pt;}
.ws53{word-spacing:28.567879pt;}
.ws94{word-spacing:39.396706pt;}
.ws95{word-spacing:39.396828pt;}
.ws4{word-spacing:39.956190pt;}
.ws5{word-spacing:39.956271pt;}
.ws59{word-spacing:44.026367pt;}
.ws60{word-spacing:47.278890pt;}
.ws5f{word-spacing:50.657594pt;}
.ws55{word-spacing:51.053375pt;}
.ws30{word-spacing:56.570748pt;}
.ws66{word-spacing:61.753573pt;}
.ws33{word-spacing:67.551432pt;}
.ws38{word-spacing:69.134928pt;}
.ws57{word-spacing:70.214526pt;}
.ws62{word-spacing:75.529134pt;}
.ws65{word-spacing:83.116246pt;}
.ws67{word-spacing:83.185603pt;}
.ws31{word-spacing:88.884766pt;}
.ws36{word-spacing:88.884854pt;}
.ws5e{word-spacing:95.927905pt;}
.ws52{word-spacing:98.499197pt;}
.ws37{word-spacing:110.218099pt;}
.ws61{word-spacing:117.261238pt;}
.ws32{word-spacing:172.666748pt;}
.ws34{word-spacing:187.288411pt;}
.ws39{word-spacing:190.440915pt;}
.ws35{word-spacing:197.152585pt;}
.ws68{word-spacing:278.984516pt;}
.ws3a{word-spacing:440.514113pt;}
.ws50{word-spacing:450.373865pt;}
.ws64{word-spacing:502.349338pt;}
.ws63{word-spacing:503.748805pt;}
.ws43{word-spacing:1355.024524pt;}
.ws69{word-spacing:1504.756287pt;}
._67{margin-left:-58.979187pt;}
._66{margin-left:-11.156339pt;}
._65{margin-left:-10.176994pt;}
._13{margin-left:-7.455010pt;}
._5{margin-left:-6.560000pt;}
._11{margin-left:-5.247999pt;}
._b{margin-left:-4.058666pt;}
._e{margin-left:-3.072000pt;}
._a{margin-left:-2.133333pt;}
._0{margin-left:-1.241600pt;}
._1{width:1.066667pt;}
._d{width:2.778667pt;}
._2{width:3.680000pt;}
._12{width:4.581334pt;}
._4{width:5.472000pt;}
._6{width:7.045334pt;}
._8{width:8.469333pt;}
._9{width:9.402668pt;}
._7{width:10.698666pt;}
._3{width:11.984000pt;}
._c{width:14.970667pt;}
._30{width:15.911022pt;}
._2f{width:17.081677pt;}
._32{width:30.235677pt;}
._10{width:31.786667pt;}
._3e{width:32.993189pt;}
._42{width:34.478257pt;}
._5e{width:38.674149pt;}
._5c{width:40.332849pt;}
._f{width:47.529585pt;}
._68{width:50.005325pt;}
._3c{width:52.422526pt;}
._36{width:53.443197pt;}
._3f{width:54.928583pt;}
._4a{width:56.793557pt;}
._52{width:57.945557pt;}
._34{width:63.680883pt;}
._45{width:73.755859pt;}
._1f{width:78.150416pt;}
._17{width:81.859078pt;}
._3d{width:93.145508pt;}
._59{width:97.443724pt;}
._21{width:99.551432pt;}
._41{width:108.822051pt;}
._64{width:111.545573pt;}
._5b{width:114.323726pt;}
._2d{width:116.038416pt;}
._16{width:117.343432pt;}
._4b{width:129.077382pt;}
._3b{width:131.431385pt;}
._5a{width:137.644246pt;}
._4e{width:138.592049pt;}
._4d{width:147.895508pt;}
._44{width:153.087915pt;}
._5d{width:157.817057pt;}
._4f{width:167.987801pt;}
._15{width:171.012847pt;}
._38{width:174.937508pt;}
._1a{width:183.333415pt;}
._29{width:184.916260pt;}
._48{width:187.075203pt;}
._27{width:190.747749pt;}
._1b{width:197.955078pt;}
._20{width:200.206913pt;}
._2b{width:204.666748pt;}
._3a{width:208.281087pt;}
._37{width:213.223385pt;}
._50{width:229.558927pt;}
._24{width:257.038913pt;}
._43{width:259.218052pt;}
._58{width:271.514138pt;}
._22{width:279.579749pt;}
._25{width:284.260246pt;}
._33{width:286.919448pt;}
._53{width:300.480060pt;}
._46{width:325.915198pt;}
._1d{width:327.067749pt;}
._4c{width:334.751471pt;}
._5f{width:345.494906pt;}
._35{width:347.248531pt;}
._26{width:367.289579pt;}
._1c{width:373.694912pt;}
._23{width:395.662913pt;}
._47{width:396.827198pt;}
._1e{width:398.052246pt;}
._18{width:401.691749pt;}
._39{width:416.027198pt;}
._40{width:423.152531pt;}
._19{width:426.510913pt;}
._57{width:435.530137pt;}
._31{width:438.442188pt;}
._2e{width:452.580246pt;}
._49{width:455.151472pt;}
._51{width:459.887472pt;}
._28{width:483.385579pt;}
._56{width:488.346138pt;}
._2a{width:504.718913pt;}
._2c{width:526.052246pt;}
._54{width:625.027262pt;}
._60{width:635.597325pt;}
._55{width:868.794189pt;}
._61{width:900.473559pt;}
._14{width:1021.311995pt;}
._62{width:1073.309899pt;}
._63{width:1322.085380pt;}
.fs6{font-size:29.866667pt;}
.fs3{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:69.333333pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:41.543200pt;}
.y51{bottom:41.574800pt;}
.y87{bottom:80.001200pt;}
.y26{bottom:80.001333pt;}
.y50{bottom:80.377869pt;}
.y86{bottom:83.780802pt;}
.y116{bottom:86.982137pt;}
.y4f{bottom:96.377869pt;}
.y85{bottom:98.746133pt;}
.y115{bottom:99.648804pt;}
.ydc{bottom:107.711202pt;}
.y84{bottom:111.412800pt;}
.y14e{bottom:112.305064pt;}
.y114{bottom:112.315470pt;}
.y4e{bottom:112.377869pt;}
.yae{bottom:118.377869pt;}
.ydb{bottom:120.377869pt;}
.y83{bottom:124.079467pt;}
.y14d{bottom:124.971731pt;}
.y113{bottom:124.982137pt;}
.y4d{bottom:128.377869pt;}
.yad{bottom:131.044535pt;}
.yda{bottom:133.044535pt;}
.y15a{bottom:134.748128pt;}
.y14c{bottom:137.638397pt;}
.y112{bottom:137.648804pt;}
.y82{bottom:139.034271pt;}
.y1f{bottom:139.293996pt;}
.y4c{bottom:144.377869pt;}
.yd9{bottom:145.711202pt;}
.y14b{bottom:150.305064pt;}
.y111{bottom:150.315470pt;}
.y81{bottom:151.700938pt;}
.y159{bottom:154.081462pt;}
.y1e{bottom:155.293996pt;}
.yd8{bottom:158.377869pt;}
.yac{bottom:159.711202pt;}
.y4b{bottom:160.377869pt;}
.y14a{bottom:162.971731pt;}
.y110{bottom:162.982137pt;}
.y80{bottom:166.655863pt;}
.yd7{bottom:171.044535pt;}
.y1d{bottom:171.294006pt;}
.y158{bottom:173.414795pt;}
.y149{bottom:175.638407pt;}
.y10f{bottom:175.648804pt;}
.y4a{bottom:176.377869pt;}
.y7f{bottom:179.322530pt;}
.yd6{bottom:183.711202pt;}
.y1c{bottom:187.294006pt;}
.y148{bottom:188.305074pt;}
.y10e{bottom:188.315470pt;}
.yab{bottom:188.377869pt;}
.y49{bottom:192.377869pt;}
.y157{bottom:192.748128pt;}
.y7e{bottom:194.277466pt;}
.yd5{bottom:196.377869pt;}
.y147{bottom:200.971741pt;}
.y10d{bottom:200.982137pt;}
.yaa{bottom:201.044535pt;}
.y1b{bottom:203.294006pt;}
.y156{bottom:207.814799pt;}
.y48{bottom:208.377869pt;}
.yd4{bottom:209.044535pt;}
.y7d{bottom:209.232259pt;}
.y146{bottom:213.638407pt;}
.y10c{bottom:213.648804pt;}
.y1a{bottom:219.294006pt;}
.yd3{bottom:221.711202pt;}
.y7c{bottom:221.898926pt;}
.y47{bottom:224.377869pt;}
.y155{bottom:224.748128pt;}
.y145{bottom:226.305074pt;}
.y10b{bottom:226.315470pt;}
.yd2{bottom:234.377869pt;}
.y7b{bottom:234.565592pt;}
.y19{bottom:235.294006pt;}
.y144{bottom:238.971741pt;}
.y10a{bottom:238.982137pt;}
.y46{bottom:240.377869pt;}
.y154{bottom:246.376404pt;}
.yd1{bottom:247.044535pt;}
.y7a{bottom:249.520528pt;}
.y18{bottom:251.294006pt;}
.y143{bottom:251.638407pt;}
.y109{bottom:251.648804pt;}
.y45{bottom:256.377869pt;}
.y153{bottom:259.043070pt;}
.yd0{bottom:259.711202pt;}
.y79{bottom:262.187195pt;}
.y142{bottom:264.305074pt;}
.y108{bottom:264.315470pt;}
.y17{bottom:267.294006pt;}
.y44{bottom:272.377869pt;}
.y78{bottom:274.853861pt;}
.y141{bottom:276.971741pt;}
.y107{bottom:276.982137pt;}
.y152{bottom:278.376933pt;}
.y16{bottom:283.293864pt;}
.ycf{bottom:285.044535pt;}
.y43{bottom:288.377869pt;}
.y140{bottom:289.638407pt;}
.y106{bottom:289.648804pt;}
.y77{bottom:289.808797pt;}
.y151{bottom:291.043599pt;}
.yce{bottom:297.711202pt;}
.y15{bottom:299.293864pt;}
.y13f{bottom:302.305074pt;}
.y105{bottom:302.315470pt;}
.y76{bottom:302.475464pt;}
.ya9{bottom:303.811462pt;}
.y42{bottom:304.377869pt;}
.ycd{bottom:310.377869pt;}
.y13e{bottom:314.971741pt;}
.y104{bottom:314.982137pt;}
.y14{bottom:315.293864pt;}
.y75{bottom:318.091736pt;}
.ya8{bottom:320.257609pt;}
.y41{bottom:320.377869pt;}
.ycc{bottom:323.044535pt;}
.y13d{bottom:327.638407pt;}
.y103{bottom:327.648804pt;}
.y74{bottom:330.758403pt;}
.y13{bottom:331.293864pt;}
.ya7{bottom:332.924276pt;}
.ycb{bottom:335.711202pt;}
.y58{bottom:336.377869pt;}
.y13c{bottom:340.305074pt;}
.y102{bottom:340.315470pt;}
.y73{bottom:343.425049pt;}
.y12{bottom:347.293986pt;}
.ya6{bottom:347.879191pt;}
.yca{bottom:348.377848pt;}
.y40{bottom:352.377848pt;}
.y13b{bottom:352.971720pt;}
.y101{bottom:352.982137pt;}
.y72{bottom:358.379883pt;}
.yc9{bottom:361.044515pt;}
.ya5{bottom:362.834147pt;}
.y11{bottom:363.293986pt;}
.y13a{bottom:365.638387pt;}
.y100{bottom:365.648804pt;}
.y57{bottom:368.377848pt;}
.y71{bottom:371.046549pt;}
.yc8{bottom:373.711182pt;}
.ya4{bottom:377.788940pt;}
.y139{bottom:378.305054pt;}
.yff{bottom:378.315470pt;}
.y10{bottom:379.293986pt;}
.y3f{bottom:384.377848pt;}
.yc7{bottom:386.377848pt;}
.y138{bottom:390.971720pt;}
.yfe{bottom:390.982137pt;}
.ya3{bottom:392.743856pt;}
.yf{bottom:395.293986pt;}
.yc6{bottom:399.044515pt;}
.y3e{bottom:400.377848pt;}
.y137{bottom:403.638387pt;}
.yfd{bottom:403.648804pt;}
.ya2{bottom:407.698812pt;}
.ye{bottom:411.293986pt;}
.yc5{bottom:411.711182pt;}
.y136{bottom:416.305054pt;}
.yfc{bottom:416.315470pt;}
.y3d{bottom:416.377848pt;}
.ya1{bottom:422.653605pt;}
.yc4{bottom:424.377848pt;}
.yd{bottom:427.293986pt;}
.y135{bottom:428.971720pt;}
.yfb{bottom:428.982137pt;}
.y150{bottom:429.315470pt;}
.y3c{bottom:432.377848pt;}
.yc3{bottom:437.044515pt;}
.ya0{bottom:437.608521pt;}
.y134{bottom:441.638387pt;}
.yfa{bottom:441.648804pt;}
.y14f{bottom:441.982137pt;}
.yc{bottom:443.293986pt;}
.y3b{bottom:448.377848pt;}
.yc2{bottom:449.711182pt;}
.y9f{bottom:452.563477pt;}
.y133{bottom:454.305054pt;}
.yf9{bottom:454.315470pt;}
.yb{bottom:459.293986pt;}
.y70{bottom:462.262817pt;}
.yc1{bottom:462.377848pt;}
.y3a{bottom:464.377848pt;}
.y132{bottom:466.971720pt;}
.yf8{bottom:466.982137pt;}
.y9e{bottom:468.179728pt;}
.yc0{bottom:475.044515pt;}
.ya{bottom:475.293986pt;}
.y6f{bottom:477.217611pt;}
.y131{bottom:479.638387pt;}
.yf7{bottom:479.648804pt;}
.y39{bottom:480.377848pt;}
.y9d{bottom:480.846395pt;}
.ybf{bottom:487.711182pt;}
.y9{bottom:491.293986pt;}
.y6e{bottom:492.172526pt;}
.y130{bottom:492.305054pt;}
.yf6{bottom:492.315470pt;}
.y9c{bottom:495.801351pt;}
.y38{bottom:496.377848pt;}
.ybe{bottom:500.377848pt;}
.y12f{bottom:504.971720pt;}
.yf5{bottom:504.982137pt;}
.y6d{bottom:507.127482pt;}
.y8{bottom:507.293986pt;}
.y37{bottom:512.377848pt;}
.ybd{bottom:513.044515pt;}
.y12e{bottom:517.638387pt;}
.yf4{bottom:517.648804pt;}
.y6c{bottom:522.082275pt;}
.y7{bottom:523.293986pt;}
.ybc{bottom:525.711182pt;}
.y36{bottom:528.377848pt;}
.y12d{bottom:530.305054pt;}
.yf3{bottom:530.315470pt;}
.y6b{bottom:537.037191pt;}
.ybb{bottom:538.377848pt;}
.y6{bottom:539.293986pt;}
.y9b{bottom:541.785604pt;}
.y12c{bottom:542.971720pt;}
.yf2{bottom:542.982137pt;}
.y9a{bottom:544.073730pt;}
.y35{bottom:544.377848pt;}
.yba{bottom:551.044515pt;}
.y6a{bottom:551.992147pt;}
.y5{bottom:555.293986pt;}
.y12b{bottom:555.638387pt;}
.yf1{bottom:555.648804pt;}
.y99{bottom:556.740397pt;}
.y34{bottom:560.377848pt;}
.yb9{bottom:563.711182pt;}
.y69{bottom:566.947062pt;}
.y12a{bottom:568.305054pt;}
.yf0{bottom:568.315470pt;}
.y4{bottom:571.293986pt;}
.y98{bottom:571.695353pt;}
.y33{bottom:576.377848pt;}
.y129{bottom:580.971720pt;}
.yef{bottom:580.982137pt;}
.y68{bottom:581.901855pt;}
.y97{bottom:586.650269pt;}
.y3{bottom:587.293986pt;}
.y96{bottom:588.938395pt;}
.y32{bottom:592.377848pt;}
.y128{bottom:593.638387pt;}
.yee{bottom:593.648804pt;}
.y67{bottom:596.856812pt;}
.y95{bottom:601.605062pt;}
.y127{bottom:606.305054pt;}
.yed{bottom:606.315470pt;}
.y31{bottom:608.377848pt;}
.y66{bottom:611.811727pt;}
.y94{bottom:616.560018pt;}
.y126{bottom:618.971720pt;}
.yec{bottom:618.982137pt;}
.y30{bottom:624.377848pt;}
.y65{bottom:626.766520pt;}
.y93{bottom:629.226685pt;}
.y21{bottom:631.309611pt;}
.y125{bottom:631.638387pt;}
.yeb{bottom:631.648804pt;}
.y2f{bottom:640.377848pt;}
.y64{bottom:641.721476pt;}
.y20{bottom:643.976278pt;}
.y92{bottom:644.009603pt;}
.y124{bottom:644.305054pt;}
.yea{bottom:644.315470pt;}
.y91{bottom:646.297852pt;}
.yb8{bottom:647.713745pt;}
.y2e{bottom:656.377848pt;}
.y63{bottom:656.676270pt;}
.y123{bottom:656.971720pt;}
.ye9{bottom:656.982137pt;}
.y90{bottom:658.964518pt;}
.yb7{bottom:660.380412pt;}
.y122{bottom:669.638387pt;}
.ye8{bottom:669.648804pt;}
.y62{bottom:671.631185pt;}
.y2d{bottom:672.377848pt;}
.yb6{bottom:673.047078pt;}
.y8f{bottom:673.919474pt;}
.y25{bottom:678.433065pt;}
.y121{bottom:682.305054pt;}
.ye7{bottom:682.315470pt;}
.yb5{bottom:685.713704pt;}
.y61{bottom:686.586100pt;}
.y2c{bottom:688.377848pt;}
.y8e{bottom:688.874430pt;}
.y24{bottom:694.433105pt;}
.y120{bottom:694.971761pt;}
.ye6{bottom:694.982096pt;}
.yb4{bottom:698.380371pt;}
.y60{bottom:701.541097pt;}
.y8d{bottom:703.829183pt;}
.y2b{bottom:704.377848pt;}
.y8c{bottom:706.117432pt;}
.y11f{bottom:707.638428pt;}
.ye5{bottom:707.648763pt;}
.yb3{bottom:711.047038pt;}
.y5f{bottom:716.495850pt;}
.y8b{bottom:718.784098pt;}
.y11e{bottom:720.305094pt;}
.ye4{bottom:720.315430pt;}
.y56{bottom:720.377848pt;}
.yb2{bottom:723.713704pt;}
.y5e{bottom:731.450765pt;}
.y23{bottom:732.165365pt;}
.y11d{bottom:732.971761pt;}
.ye3{bottom:732.982096pt;}
.y8a{bottom:733.739095pt;}
.y2a{bottom:736.377848pt;}
.yb1{bottom:736.380371pt;}
.y11c{bottom:745.638428pt;}
.ye2{bottom:745.648763pt;}
.y5d{bottom:746.405762pt;}
.y89{bottom:748.693848pt;}
.yb0{bottom:749.047038pt;}
.y22{bottom:752.165365pt;}
.y55{bottom:752.377848pt;}
.y11b{bottom:758.305094pt;}
.ye1{bottom:758.315430pt;}
.y5c{bottom:762.021973pt;}
.y88{bottom:764.310303pt;}
.y54{bottom:768.377848pt;}
.y11a{bottom:770.971761pt;}
.ye0{bottom:770.982096pt;}
.y5b{bottom:776.976969pt;}
.yaf{bottom:777.712565pt;}
.y119{bottom:783.638428pt;}
.ydf{bottom:783.648763pt;}
.y53{bottom:784.377848pt;}
.y5a{bottom:789.643636pt;}
.y29{bottom:790.377848pt;}
.y118{bottom:796.305094pt;}
.yde{bottom:796.315430pt;}
.y52{bottom:800.377848pt;}
.y59{bottom:804.598389pt;}
.y28{bottom:806.377848pt;}
.y117{bottom:808.971761pt;}
.ydd{bottom:808.982096pt;}
.y2{bottom:822.167969pt;}
.y1{bottom:834.834635pt;}
.h1a{height:26.206250pt;}
.h16{height:28.916667pt;}
.h11{height:29.625000pt;}
.h5{height:37.031250pt;}
.hb{height:37.437500pt;}
.h15{height:37.500000pt;}
.h14{height:37.500041pt;}
.h12{height:37.541667pt;}
.h3{height:40.405333pt;}
.h2{height:40.618667pt;}
.h10{height:41.088000pt;}
.h17{height:42.197333pt;}
.h6{height:46.796875pt;}
.h7{height:46.927083pt;}
.hd{height:51.360000pt;}
.hf{height:52.266667pt;}
.h4{height:52.746667pt;}
.h13{height:54.091146pt;}
.h9{height:57.285333pt;}
.ha{height:57.285496pt;}
.h18{height:57.621252pt;}
.h19{height:57.621333pt;}
.he{height:58.021333pt;}
.hc{height:64.000000pt;}
.h8{height:66.768000pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x1{left:68.031469pt;}
.x2a{left:80.109599pt;}
.x4{left:83.149602pt;}
.x2b{left:86.929067pt;}
.x29{left:90.708669pt;}
.x24{left:121.126536pt;}
.xb{left:155.644938pt;}
.xc{left:170.599864pt;}
.xd{left:186.226542pt;}
.x8{left:199.846537pt;}
.xe{left:201.181458pt;}
.xf{left:216.136393pt;}
.x10{left:231.091329pt;}
.x25{left:232.325195pt;}
.x11{left:246.046143pt;}
.x1f{left:248.156392pt;}
.x12{left:261.001058pt;}
.x13{left:275.955872pt;}
.x14{left:290.910807pt;}
.x20{left:303.796936pt;}
.x15{left:305.865743pt;}
.x16{left:320.820536pt;}
.x7{left:326.026265pt;}
.x17{left:335.775472pt;}
.x22{left:341.996948pt;}
.x26{left:348.563192pt;}
.x18{left:350.730387pt;}
.x19{left:365.685181pt;}
.x23{left:377.530924pt;}
.x1a{left:380.640137pt;}
.x27{left:387.792277pt;}
.x1b{left:395.594930pt;}
.x1c{left:410.549886pt;}
.x1e{left:418.953857pt;}
.x5{left:424.020549pt;}
.x6{left:426.080811pt;}
.x28{left:427.000814pt;}
.x3{left:429.003581pt;}
.x1d{left:438.181885pt;}
.xa{left:459.999349pt;}
.x2{left:463.255737pt;}
.x21{left:484.021606pt;}
.x9{left:486.224935pt;}
}

