
    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_3aa3f42eacf9fece2af3ba2d.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_65072a11f9d598b8bce3b4da.woff')format("woff");}.ff2{font-family:ff2;line-height:0.816406;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_e6266a9a816506a90c79e451.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_036f45f92fc42371a556b4d3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.937500;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_522ccaf5977fc399c0bcac0c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.132812;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_c9266800ef38d0602ca99db8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_84995c47bdf24db85d2dde21.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_d1efbecb5577baf6dc7a38d3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_8a432601c8a1ae038fa1e591.woff')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_7b7a81bdcc130216ee2a9d00.woff')format("woff");}.ffa{font-family:ffa;line-height:1.380859;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v4{vertical-align:-52.680000px;}
.v3{vertical-align:-44.940000px;}
.v5{vertical-align:-27.480000px;}
.v2{vertical-align:-8.520000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.200000px;}
.v6{vertical-align:16.140000px;}
.ls38{letter-spacing:-5.688000px;}
.ls42{letter-spacing:-4.332000px;}
.ls22{letter-spacing:-4.218000px;}
.ls23{letter-spacing:-0.732000px;}
.ls36{letter-spacing:-0.648000px;}
.ls44{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.393000px;}
.ls21{letter-spacing:-0.370200px;}
.ls12{letter-spacing:-0.367800px;}
.ls5{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.328200px;}
.ls1d{letter-spacing:-0.295200px;}
.lsf{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.247800px;}
.ls8{letter-spacing:-0.216000px;}
.ls2e{letter-spacing:-0.131400px;}
.ls6{letter-spacing:-0.108000px;}
.ls1f{letter-spacing:-0.087000px;}
.ls2d{letter-spacing:-0.058320px;}
.ls28{letter-spacing:-0.012360px;}
.ls1c{letter-spacing:-0.009360px;}
.ls1e{letter-spacing:-0.005046px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.030360px;}
.ls14{letter-spacing:0.036000px;}
.ls31{letter-spacing:0.072000px;}
.ls4b{letter-spacing:0.085800px;}
.ls7{letter-spacing:0.108000px;}
.ls1b{letter-spacing:0.122400px;}
.lsd{letter-spacing:0.175968px;}
.ls18{letter-spacing:0.180000px;}
.ls29{letter-spacing:0.221400px;}
.ls46{letter-spacing:0.260400px;}
.ls41{letter-spacing:0.288000px;}
.ls3b{letter-spacing:0.327000px;}
.ls2{letter-spacing:0.360000px;}
.ls39{letter-spacing:0.391800px;}
.ls45{letter-spacing:0.404400px;}
.ls11{letter-spacing:0.432000px;}
.ls2b{letter-spacing:0.468000px;}
.ls19{letter-spacing:0.481200px;}
.ls27{letter-spacing:0.496800px;}
.ls10{letter-spacing:0.504000px;}
.ls37{letter-spacing:0.576000px;}
.ls2a{letter-spacing:0.612000px;}
.ls0{letter-spacing:0.720000px;}
.ls3a{letter-spacing:0.750000px;}
.ls3d{letter-spacing:0.792000px;}
.ls2c{letter-spacing:0.828000px;}
.ls16{letter-spacing:1.080000px;}
.ls15{letter-spacing:1.093248px;}
.ls17{letter-spacing:1.260000px;}
.ls3f{letter-spacing:3.924000px;}
.ls49{letter-spacing:6.120000px;}
.ls4a{letter-spacing:6.840000px;}
.ls40{letter-spacing:8.280000px;}
.ls4{letter-spacing:9.000000px;}
.ls25{letter-spacing:9.684000px;}
.ls32{letter-spacing:10.440000px;}
.ls3c{letter-spacing:14.040000px;}
.ls4c{letter-spacing:15.480000px;}
.ls30{letter-spacing:16.380000px;}
.ls1a{letter-spacing:17.460000px;}
.lsc{letter-spacing:18.216000px;}
.ls3{letter-spacing:19.800000px;}
.ls33{letter-spacing:29.160000px;}
.ls43{letter-spacing:31.500000px;}
.ls35{letter-spacing:37.080000px;}
.lsb{letter-spacing:37.656000px;}
.ls47{letter-spacing:38.979696px;}
.ls24{letter-spacing:39.003696px;}
.ls48{letter-spacing:39.108000px;}
.ls2f{letter-spacing:39.120000px;}
.ls26{letter-spacing:39.132000px;}
.ls34{letter-spacing:39.420000px;}
.lse{letter-spacing:41.935968px;}
.ls3e{letter-spacing:42.840000px;}
.sc_{text-shadow:none;}
.sc5{text-shadow:-0.015em 0 rgb(165,100,78),0 0.015em rgb(165,100,78),0.015em 0 rgb(165,100,78),0 -0.015em  rgb(165,100,78);}
.sc4{text-shadow:-0.015em 0 rgb(124,75,59),0 0.015em rgb(124,75,59),0.015em 0 rgb(124,75,59),0 -0.015em  rgb(124,75,59);}
.sc8{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.sc6{text-shadow:-0.015em 0 rgb(82,50,39),0 0.015em rgb(82,50,39),0.015em 0 rgb(82,50,39),0 -0.015em  rgb(82,50,39);}
.sc3{text-shadow:-0.015em 0 rgb(78,59,48),0 0.015em rgb(78,59,48),0.015em 0 rgb(78,59,48),0 -0.015em  rgb(78,59,48);}
.sc2{text-shadow:-0.015em 0 rgb(68,51,41),0 0.015em rgb(68,51,41),0.015em 0 rgb(68,51,41),0 -0.015em  rgb(68,51,41);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc7{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);}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc5{-webkit-text-stroke:0.015em rgb(165,100,78);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(124,75,59);text-shadow:none;}
.sc8{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc6{-webkit-text-stroke:0.015em rgb(82,50,39);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(78,59,48);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(68,51,41);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc7{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsd{word-spacing:-66.096000px;}
.wse{word-spacing:-46.677312px;}
.ws9{word-spacing:-30.528000px;}
.wsa{word-spacing:-30.456000px;}
.wsf{word-spacing:-30.182400px;}
.ws12{word-spacing:-30.054954px;}
.ws10{word-spacing:-30.050640px;}
.ws13{word-spacing:-30.009000px;}
.wsc{word-spacing:-29.816232px;}
.ws8{word-spacing:-29.808000px;}
.ws14{word-spacing:-29.767800px;}
.ws11{word-spacing:-29.764800px;}
.ws7{word-spacing:-29.736000px;}
.wsb{word-spacing:-29.696232px;}
.ws15{word-spacing:-29.689800px;}
.ws17{word-spacing:-29.328000px;}
.ws1e{word-spacing:-27.828000px;}
.ws2f{word-spacing:-27.792000px;}
.ws27{word-spacing:-27.786000px;}
.ws1b{word-spacing:-27.612000px;}
.ws23{word-spacing:-27.576000px;}
.ws18{word-spacing:-27.532800px;}
.ws1c{word-spacing:-27.468000px;}
.ws26{word-spacing:-27.427800px;}
.ws28{word-spacing:-27.363000px;}
.ws1d{word-spacing:-27.360000px;}
.ws29{word-spacing:-27.288000px;}
.ws1a{word-spacing:-27.257400px;}
.ws3{word-spacing:-27.108000px;}
.ws25{word-spacing:-27.072000px;}
.ws5{word-spacing:-27.066360px;}
.ws19{word-spacing:-27.023640px;}
.ws2{word-spacing:-26.892000px;}
.ws4{word-spacing:-26.784000px;}
.ws6{word-spacing:-26.643000px;}
.ws1{word-spacing:-26.640000px;}
.ws2b{word-spacing:-26.388000px;}
.ws22{word-spacing:-26.352000px;}
.ws16{word-spacing:-25.842000px;}
.ws2a{word-spacing:-22.704000px;}
.ws24{word-spacing:-21.312000px;}
.ws2d{word-spacing:-15.344400px;}
.ws2e{word-spacing:-15.200400px;}
.ws2c{word-spacing:-14.940000px;}
.ws32{word-spacing:-13.591560px;}
.ws31{word-spacing:-13.538304px;}
.ws21{word-spacing:-13.505760px;}
.ws1f{word-spacing:-13.447440px;}
.ws20{word-spacing:-13.406904px;}
.ws0{word-spacing:0.000000px;}
.ws30{word-spacing:208.596000px;}
._13{margin-left:-11.088000px;}
._16{margin-left:-9.752832px;}
._12{margin-left:-6.696000px;}
._b{margin-left:-5.524512px;}
._2{margin-left:-3.825216px;}
._1{margin-left:-1.978560px;}
._0{width:1.187136px;}
._4{width:3.114912px;}
._3{width:4.539360px;}
._1e{width:6.744000px;}
._1f{width:7.944192px;}
._6{width:9.043680px;}
._17{width:10.269216px;}
._19{width:11.675712px;}
._1c{width:13.096704px;}
._14{width:14.930640px;}
._18{width:16.102224px;}
._8{width:17.844000px;}
._9{width:18.849984px;}
._5{width:19.908000px;}
._25{width:22.380816px;}
._24{width:23.979744px;}
._21{width:25.026144px;}
._1a{width:28.116000px;}
._1b{width:29.556000px;}
._20{width:31.354560px;}
._10{width:32.796000px;}
._11{width:34.209120px;}
._7{width:37.644000px;}
._f{width:38.675424px;}
._e{width:40.030560px;}
._c{width:41.488584px;}
._a{width:42.878304px;}
._1d{width:43.945368px;}
._15{width:51.387120px;}
._22{width:57.125664px;}
._29{width:68.762496px;}
._d{width:75.107424px;}
._23{width:136.875744px;}
._26{width:237.224064px;}
._27{width:306.115920px;}
._28{width:330.895920px;}
.fc4{color:rgb(165,100,78);}
.fc3{color:rgb(124,75,59);}
.fc8{color:rgb(0,32,96);}
.fc5{color:rgb(82,50,39);}
.fc2{color:rgb(78,59,48);}
.fc9{color:transparent;}
.fc1{color:rgb(68,51,41);}
.fca{color:rgb(51,102,255);}
.fc7{color:rgb(255,255,255);}
.fc6{color:rgb(98,65,57);}
.fc0{color:rgb(0,0,0);}
.fs16{font-size:48.240000px;}
.fs9{font-size:59.760000px;}
.fs3{font-size:59.904000px;}
.fs17{font-size:72.000000px;}
.fs18{font-size:72.144000px;}
.fs4{font-size:84.240000px;}
.fs7{font-size:90.144000px;}
.fs14{font-size:95.760000px;}
.fs15{font-size:95.904000px;}
.fs6{font-size:108.000000px;}
.fs8{font-size:108.144000px;}
.fs13{font-size:120.240000px;}
.fs11{font-size:120.384000px;}
.fs2{font-size:131.760000px;}
.fs1{font-size:131.904000px;}
.fs5{font-size:144.000000px;}
.fse{font-size:144.144000px;}
.fsa{font-size:162.000000px;}
.fs0{font-size:167.760000px;}
.fs10{font-size:167.904000px;}
.fsc{font-size:192.240000px;}
.fs12{font-size:192.384000px;}
.fsd{font-size:202.636726px;}
.fsb{font-size:264.240000px;}
.fsf{font-size:264.384000px;}
.yc0{bottom:-100.944000px;}
.ybf{bottom:-68.544000px;}
.ybe{bottom:-36.144000px;}
.ybd{bottom:-3.708000px;}
.y0{bottom:0.000000px;}
.y8e{bottom:25.920000px;}
.y93{bottom:26.748000px;}
.ybc{bottom:28.692000px;}
.yfc{bottom:28.944000px;}
.yfb{bottom:47.160000px;}
.y110{bottom:47.880000px;}
.y6d{bottom:51.084000px;}
.yfd{bottom:53.064000px;}
.y5d{bottom:53.928000px;}
.ye8{bottom:55.440000px;}
.yf2{bottom:56.340000px;}
.y10{bottom:56.448000px;}
.yf8{bottom:57.456000px;}
.ye4{bottom:60.192000px;}
.y11a{bottom:61.056000px;}
.ybb{bottom:61.092000px;}
.yfa{bottom:61.560000px;}
.y76{bottom:68.004000px;}
.ye7{bottom:69.945000px;}
.ycd{bottom:70.020000px;}
.yf5{bottom:70.164000px;}
.yf7{bottom:75.636000px;}
.yf{bottom:77.148000px;}
.yf9{bottom:79.920000px;}
.y95{bottom:80.175000px;}
.y6c{bottom:82.944000px;}
.y3f{bottom:85.176000px;}
.ycc{bottom:86.940000px;}
.yce{bottom:87.330000px;}
.yf4{bottom:88.344000px;}
.y8f{bottom:88.530000px;}
.yba{bottom:91.512000px;}
.ye3{bottom:92.592000px;}
.yf6{bottom:93.990000px;}
.ye6{bottom:95.835000px;}
.y94{bottom:98.535000px;}
.y75{bottom:99.900000px;}
.ya9{bottom:100.404000px;}
.y5c{bottom:104.328000px;}
.ycb{bottom:106.170000px;}
.yf3{bottom:106.710000px;}
.y8d{bottom:107.460000px;}
.y51{bottom:109.080000px;}
.ye{bottom:109.548000px;}
.y6b{bottom:111.744000px;}
.yb9{bottom:115.128000px;}
.yc7{bottom:115.920000px;}
.y1b{bottom:116.064000px;}
.y3e{bottom:117.576000px;}
.y119{bottom:118.656000px;}
.yca{bottom:123.450000px;}
.ye2{bottom:125.028000px;}
.y74{bottom:128.700000px;}
.ya8{bottom:132.804000px;}
.y43{bottom:132.876000px;}
.y10f{bottom:134.316000px;}
.yd{bottom:135.504000px;}
.yc9{bottom:139.500000px;}
.y6a{bottom:140.580000px;}
.yeb{bottom:142.230000px;}
.y50{bottom:142.236000px;}
.y97{bottom:142.770000px;}
.yb8{bottom:147.528000px;}
.y1a{bottom:148.464000px;}
.y3d{bottom:150.015000px;}
.ye9{bottom:150.480000px;}
.y90{bottom:151.125000px;}
.yd3{bottom:152.925000px;}
.y5b{bottom:154.725000px;}
.yc8{bottom:156.600000px;}
.y2a{bottom:157.395000px;}
.ye1{bottom:157.425000px;}
.y73{bottom:157.500000px;}
.y96{bottom:161.130000px;}
.y101{bottom:163.545000px;}
.yc{bottom:163.590000px;}
.ya7{bottom:165.240000px;}
.y42{bottom:165.315000px;}
.yff{bottom:165.675000px;}
.y69{bottom:169.380000px;}
.y118{bottom:176.295000px;}
.y4f{bottom:178.230000px;}
.yb7{bottom:179.925000px;}
.y19{bottom:180.870000px;}
.yd2{bottom:181.545000px;}
.y3c{bottom:182.415000px;}
.y7e{bottom:183.930000px;}
.y72{bottom:186.300000px;}
.y109{bottom:186.585000px;}
.ye0{bottom:187.845000px;}
.ya6{bottom:195.660000px;}
.y41{bottom:197.715000px;}
.yfe{bottom:198.030000px;}
.y68{bottom:198.180000px;}
.y29{bottom:200.595000px;}
.ye5{bottom:201.060000px;}
.yb{bottom:204.450000px;}
.y5a{bottom:205.170000px;}
.yea{bottom:208.410000px;}
.ydf{bottom:211.425000px;}
.yb6{bottom:212.325000px;}
.y18{bottom:213.270000px;}
.y91{bottom:213.735000px;}
.y4e{bottom:214.230000px;}
.y98{bottom:214.560000px;}
.y3b{bottom:214.815000px;}
.y71{bottom:215.100000px;}
.ycf{bottom:218.775000px;}
.ya5{bottom:219.240000px;}
.y7d{bottom:219.930000px;}
.y10e{bottom:220.710000px;}
.y2f{bottom:221.325000px;}
.yd1{bottom:222.270000px;}
.y67{bottom:226.980000px;}
.y40{bottom:230.115000px;}
.y117{bottom:233.895000px;}
.ya{bottom:237.030000px;}
.yde{bottom:241.845000px;}
.y28{bottom:243.795000px;}
.y70{bottom:243.930000px;}
.yb5{bottom:244.725000px;}
.y17{bottom:245.670000px;}
.y3a{bottom:247.215000px;}
.y4d{bottom:250.230000px;}
.ya4{bottom:251.640000px;}
.y59{bottom:255.570000px;}
.y66{bottom:255.780000px;}
.y7c{bottom:255.930000px;}
.ydd{bottom:263.490000px;}
.y9{bottom:268.530000px;}
.y6f{bottom:272.730000px;}
.y108{bottom:273.030000px;}
.y2e{bottom:273.165000px;}
.yb4{bottom:275.190000px;}
.y99{bottom:277.170000px;}
.y39{bottom:279.615000px;}
.y92{bottom:279.750000px;}
.ya3{bottom:282.060000px;}
.y65{bottom:284.610000px;}
.y4c{bottom:286.275000px;}
.y27{bottom:286.995000px;}
.ydc{bottom:287.070000px;}
.y116{bottom:291.495000px;}
.y8{bottom:296.280000px;}
.yb3{bottom:298.770000px;}
.y6e{bottom:302.070000px;}
.ya2{bottom:305.640000px;}
.y58{bottom:305.970000px;}
.y10d{bottom:307.155000px;}
.y8c{bottom:308.670000px;}
.y100{bottom:309.930000px;}
.y64{bottom:313.950000px;}
.yd0{bottom:316.830000px;}
.ydb{bottom:319.470000px;}
.y2d{bottom:325.050000px;}
.y7{bottom:328.680000px;}
.y26{bottom:330.225000px;}
.yb2{bottom:331.170000px;}
.ya1{bottom:338.070000px;}
.y14{bottom:338.760000px;}
.y8b{bottom:341.070000px;}
.y115{bottom:349.125000px;}
.yda{bottom:351.870000px;}
.y57{bottom:356.400000px;}
.y107{bottom:359.430000px;}
.y6{bottom:363.420000px;}
.yb1{bottom:363.570000px;}
.ya0{bottom:368.490000px;}
.y13{bottom:371.190000px;}
.y25{bottom:373.425000px;}
.y8a{bottom:373.470000px;}
.y2c{bottom:376.890000px;}
.y35{bottom:378.930000px;}
.yd9{bottom:384.270000px;}
.y9f{bottom:392.070000px;}
.y10c{bottom:393.555000px;}
.yb0{bottom:393.990000px;}
.y4b{bottom:396.075000px;}
.yc6{bottom:398.340000px;}
.y5{bottom:403.200000px;}
.y12{bottom:403.590000px;}
.y89{bottom:403.890000px;}
.y114{bottom:406.725000px;}
.y56{bottom:406.800000px;}
.y34{bottom:411.375000px;}
.y63{bottom:413.280000px;}
.yf1{bottom:414.210000px;}
.y24{bottom:416.625000px;}
.yd8{bottom:416.700000px;}
.yaf{bottom:417.600000px;}
.y5f{bottom:418.830000px;}
.y38{bottom:423.180000px;}
.y9e{bottom:424.470000px;}
.y4{bottom:426.960000px;}
.y88{bottom:427.500000px;}
.y2b{bottom:428.760000px;}
.yc5{bottom:430.740000px;}
.y4a{bottom:431.745000px;}
.y46{bottom:436.065000px;}
.y33{bottom:443.775000px;}
.y106{bottom:445.860000px;}
.yf0{bottom:446.610000px;}
.yd7{bottom:449.100000px;}
.y62{bottom:449.280000px;}
.yae{bottom:450.000000px;}
.y7b{bottom:451.905000px;}
.y37{bottom:455.580000px;}
.y9d{bottom:456.915000px;}
.y55{bottom:457.200000px;}
.y23{bottom:459.870000px;}
.y87{bottom:459.900000px;}
.y103{bottom:462.450000px;}
.yc4{bottom:463.170000px;}
.y113{bottom:464.325000px;}
.y49{bottom:468.105000px;}
.y32{bottom:476.175000px;}
.yef{bottom:479.010000px;}
.y10b{bottom:479.985000px;}
.yd6{bottom:481.500000px;}
.yad{bottom:482.400000px;}
.y61{bottom:485.280000px;}
.y9c{bottom:487.335000px;}
.y7a{bottom:487.905000px;}
.y36{bottom:487.980000px;}
.y86{bottom:490.320000px;}
.yc3{bottom:495.570000px;}
.y45{bottom:505.230000px;}
.y54{bottom:507.630000px;}
.yee{bottom:509.430000px;}
.y9b{bottom:510.915000px;}
.yac{bottom:512.820000px;}
.y85{bottom:513.900000px;}
.y60{bottom:521.310000px;}
.y112{bottom:521.970000px;}
.y79{bottom:523.950000px;}
.yc2{bottom:527.970000px;}
.y102{bottom:531.615000px;}
.y105{bottom:532.260000px;}
.yed{bottom:533.055000px;}
.yab{bottom:536.400000px;}
.y9a{bottom:543.315000px;}
.y84{bottom:546.300000px;}
.y5e{bottom:557.100000px;}
.y53{bottom:558.030000px;}
.yc1{bottom:560.370000px;}
.yec{bottom:565.455000px;}
.y10a{bottom:566.430000px;}
.yaa{bottom:568.830000px;}
.y1e{bottom:572.430000px;}
.y44{bottom:574.350000px;}
.y111{bottom:579.570000px;}
.y48{bottom:579.885000px;}
.y16{bottom:586.230000px;}
.y1d{bottom:599.970000px;}
.y52{bottom:608.430000px;}
.y3{bottom:609.195000px;}
.y22{bottom:612.930000px;}
.y15{bottom:613.950000px;}
.y47{bottom:615.885000px;}
.y1c{bottom:627.690000px;}
.y82{bottom:639.360000px;}
.y21{bottom:645.330000px;}
.y2{bottom:648.825000px;}
.y20{bottom:661.830000px;}
.y81{bottom:666.720000px;}
.yd5{bottom:670.470000px;}
.y78{bottom:680.145000px;}
.y31{bottom:681.945000px;}
.y1{bottom:690.585000px;}
.y30{bottom:701.100000px;}
.yd4{bottom:703.590000px;}
.y80{bottom:706.350000px;}
.y83{bottom:707.910000px;}
.y11{bottom:708.915000px;}
.y104{bottom:715.680000px;}
.y1f{bottom:720.540000px;}
.y77{bottom:723.345000px;}
.y7f{bottom:749.190000px;}
.h21{height:45.374414px;}
.h22{height:45.483750px;}
.h1b{height:50.312812px;}
.ha{height:52.435898px;}
.h4{height:52.562250px;}
.h24{height:56.635898px;}
.h27{height:61.214414px;}
.h26{height:61.514414px;}
.h1e{height:63.175781px;}
.h1f{height:63.302133px;}
.h5{height:73.915664px;}
.h8{height:79.096078px;}
.h19{height:84.023789px;}
.h1a{height:84.150141px;}
.h7{height:94.763672px;}
.h9{height:94.890023px;}
.h16{height:105.503555px;}
.h18{height:105.629906px;}
.hc{height:112.640625px;}
.hd{height:112.790813px;}
.h3{height:115.611680px;}
.h2{height:115.738031px;}
.h6{height:126.351562px;}
.h1c{height:137.421562px;}
.h1d{height:137.571750px;}
.hb{height:142.145508px;}
.h1{height:147.199570px;}
.h17{height:147.325922px;}
.h10{height:150.187500px;}
.h11{height:150.337688px;}
.hf{height:168.402201px;}
.h15{height:168.679336px;}
.h14{height:168.805688px;}
.h13{height:175.118625px;}
.h12{height:198.288000px;}
.h2a{height:199.373906px;}
.h29{height:199.523250px;}
.he{height:200.631445px;}
.h28{height:274.195125px;}
.h25{height:280.620000px;}
.h20{height:314.640000px;}
.h23{height:348.660000px;}
.h0{height:810.000000px;}
.w1{width:663.300000px;}
.w3{width:705.780000px;}
.w4{width:838.980000px;}
.w2{width:900.540000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x7c{left:12.492000px;}
.x5b{left:16.635000px;}
.x5c{left:22.035000px;}
.x59{left:26.745000px;}
.x4{left:32.004000px;}
.x5a{left:34.845000px;}
.x53{left:45.000000px;}
.x36{left:46.800000px;}
.x41{left:49.068000px;}
.x3e{left:50.616000px;}
.x6{left:54.324000px;}
.x2{left:56.628000px;}
.x63{left:58.575000px;}
.x62{left:60.555000px;}
.x3f{left:62.496000px;}
.x32{left:66.564000px;}
.x40{left:67.716000px;}
.x34{left:75.744000px;}
.x85{left:81.288000px;}
.x87{left:83.448000px;}
.x80{left:86.508000px;}
.x88{left:89.568000px;}
.x7e{left:92.052000px;}
.x6e{left:96.480000px;}
.x26{left:98.352000px;}
.x83{left:99.972000px;}
.x4a{left:101.664000px;}
.x49{left:103.464000px;}
.x4b{left:106.704000px;}
.xd{left:108.504000px;}
.x86{left:110.088000px;}
.x33{left:113.364000px;}
.x48{left:115.884000px;}
.x7d{left:118.692000px;}
.x82{left:121.752000px;}
.x27{left:123.372000px;}
.x11{left:125.568000px;}
.xf{left:126.756000px;}
.x35{left:129.744000px;}
.x10{left:131.436000px;}
.x45{left:133.452000px;}
.x5d{left:134.568000px;}
.x51{left:136.440000px;}
.x17{left:138.060000px;}
.x47{left:141.444000px;}
.x3{left:145.548000px;}
.x14{left:149.616000px;}
.x60{left:151.095000px;}
.x71{left:162.720000px;}
.x6d{left:165.780000px;}
.x55{left:167.295000px;}
.x5e{left:168.405000px;}
.x13{left:169.410000px;}
.x6c{left:171.210000px;}
.x28{left:173.625000px;}
.x64{left:176.580000px;}
.x5f{left:178.920000px;}
.x61{left:184.935000px;}
.x52{left:187.050000px;}
.x7f{left:191.625000px;}
.xe{left:193.650000px;}
.x72{left:196.560000px;}
.x43{left:200.955000px;}
.x20{left:203.580000px;}
.x77{left:209.085000px;}
.x22{left:215.460000px;}
.x8{left:220.500000px;}
.x73{left:224.970000px;}
.x18{left:226.800000px;}
.x3c{left:231.660000px;}
.x44{left:234.615000px;}
.x19{left:236.490000px;}
.x9{left:238.320000px;}
.x1e{left:243.510000px;}
.x21{left:246.780000px;}
.x1b{left:250.350000px;}
.x15{left:258.735000px;}
.x1c{left:260.250000px;}
.x3a{left:261.720000px;}
.x3b{left:263.880000px;}
.x46{left:265.500000px;}
.x25{left:267.120000px;}
.x68{left:276.090000px;}
.x1a{left:277.530000px;}
.x1d{left:283.470000px;}
.x24{left:303.150000px;}
.x39{left:308.985000px;}
.x78{left:310.470000px;}
.x5{left:314.820000px;}
.x57{left:318.495000px;}
.x75{left:330.015000px;}
.xb{left:332.100000px;}
.x74{left:344.625000px;}
.xc{left:349.560000px;}
.x7{left:353.700000px;}
.x42{left:370.620000px;}
.x84{left:381.705000px;}
.x37{left:383.580000px;}
.x6f{left:385.410000px;}
.x54{left:389.235000px;}
.x1f{left:398.700000px;}
.x79{left:404.970000px;}
.x12{left:406.290000px;}
.x69{left:408.240000px;}
.x89{left:419.550000px;}
.x16{left:421.350000px;}
.x38{left:439.380000px;}
.x76{left:457.485000px;}
.x65{left:475.200000px;}
.x23{left:477.570000px;}
.x81{left:498.600000px;}
.x58{left:502.200000px;}
.x66{left:508.500000px;}
.x7a{left:515.085000px;}
.x1{left:541.980000px;}
.xa{left:544.170000px;}
.x70{left:557.820000px;}
.x6a{left:565.665000px;}
.x56{left:601.125000px;}
.x3d{left:620.895000px;}
.x31{left:632.085000px;}
.x7b{left:636.735000px;}
.x2d{left:642.885000px;}
.x2b{left:644.865000px;}
.x2c{left:648.825000px;}
.x2e{left:671.685000px;}
.x29{left:685.050000px;}
.x2f{left:690.945000px;}
.x4d{left:693.390000px;}
.x4e{left:698.430000px;}
.x67{left:700.410000px;}
.x50{left:709.410000px;}
.x4f{left:724.710000px;}
.x6b{left:732.165000px;}
.x2a{left:735.810000px;}
.x30{left:755.430000px;}
.x4c{left:816.510000px;}
@media print{
.v4{vertical-align:-46.826667pt;}
.v3{vertical-align:-39.946667pt;}
.v5{vertical-align:-24.426667pt;}
.v2{vertical-align:-7.573333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.733333pt;}
.v6{vertical-align:14.346667pt;}
.ls38{letter-spacing:-5.056000pt;}
.ls42{letter-spacing:-3.850667pt;}
.ls22{letter-spacing:-3.749333pt;}
.ls23{letter-spacing:-0.650667pt;}
.ls36{letter-spacing:-0.576000pt;}
.ls44{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.349333pt;}
.ls21{letter-spacing:-0.329067pt;}
.ls12{letter-spacing:-0.326933pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.291733pt;}
.ls1d{letter-spacing:-0.262400pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.220267pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls2e{letter-spacing:-0.116800pt;}
.ls6{letter-spacing:-0.096000pt;}
.ls1f{letter-spacing:-0.077333pt;}
.ls2d{letter-spacing:-0.051840pt;}
.ls28{letter-spacing:-0.010987pt;}
.ls1c{letter-spacing:-0.008320pt;}
.ls1e{letter-spacing:-0.004485pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.026987pt;}
.ls14{letter-spacing:0.032000pt;}
.ls31{letter-spacing:0.064000pt;}
.ls4b{letter-spacing:0.076267pt;}
.ls7{letter-spacing:0.096000pt;}
.ls1b{letter-spacing:0.108800pt;}
.lsd{letter-spacing:0.156416pt;}
.ls18{letter-spacing:0.160000pt;}
.ls29{letter-spacing:0.196800pt;}
.ls46{letter-spacing:0.231467pt;}
.ls41{letter-spacing:0.256000pt;}
.ls3b{letter-spacing:0.290667pt;}
.ls2{letter-spacing:0.320000pt;}
.ls39{letter-spacing:0.348267pt;}
.ls45{letter-spacing:0.359467pt;}
.ls11{letter-spacing:0.384000pt;}
.ls2b{letter-spacing:0.416000pt;}
.ls19{letter-spacing:0.427733pt;}
.ls27{letter-spacing:0.441600pt;}
.ls10{letter-spacing:0.448000pt;}
.ls37{letter-spacing:0.512000pt;}
.ls2a{letter-spacing:0.544000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls3a{letter-spacing:0.666667pt;}
.ls3d{letter-spacing:0.704000pt;}
.ls2c{letter-spacing:0.736000pt;}
.ls16{letter-spacing:0.960000pt;}
.ls15{letter-spacing:0.971776pt;}
.ls17{letter-spacing:1.120000pt;}
.ls3f{letter-spacing:3.488000pt;}
.ls49{letter-spacing:5.440000pt;}
.ls4a{letter-spacing:6.080000pt;}
.ls40{letter-spacing:7.360000pt;}
.ls4{letter-spacing:8.000000pt;}
.ls25{letter-spacing:8.608000pt;}
.ls32{letter-spacing:9.280000pt;}
.ls3c{letter-spacing:12.480000pt;}
.ls4c{letter-spacing:13.760000pt;}
.ls30{letter-spacing:14.560000pt;}
.ls1a{letter-spacing:15.520000pt;}
.lsc{letter-spacing:16.192000pt;}
.ls3{letter-spacing:17.600000pt;}
.ls33{letter-spacing:25.920000pt;}
.ls43{letter-spacing:28.000000pt;}
.ls35{letter-spacing:32.960000pt;}
.lsb{letter-spacing:33.472000pt;}
.ls47{letter-spacing:34.648619pt;}
.ls24{letter-spacing:34.669952pt;}
.ls48{letter-spacing:34.762667pt;}
.ls2f{letter-spacing:34.773333pt;}
.ls26{letter-spacing:34.784000pt;}
.ls34{letter-spacing:35.040000pt;}
.lse{letter-spacing:37.276416pt;}
.ls3e{letter-spacing:38.080000pt;}
.wsd{word-spacing:-58.752000pt;}
.wse{word-spacing:-41.490944pt;}
.ws9{word-spacing:-27.136000pt;}
.wsa{word-spacing:-27.072000pt;}
.wsf{word-spacing:-26.828800pt;}
.ws12{word-spacing:-26.715515pt;}
.ws10{word-spacing:-26.711680pt;}
.ws13{word-spacing:-26.674667pt;}
.wsc{word-spacing:-26.503317pt;}
.ws8{word-spacing:-26.496000pt;}
.ws14{word-spacing:-26.460267pt;}
.ws11{word-spacing:-26.457600pt;}
.ws7{word-spacing:-26.432000pt;}
.wsb{word-spacing:-26.396651pt;}
.ws15{word-spacing:-26.390933pt;}
.ws17{word-spacing:-26.069333pt;}
.ws1e{word-spacing:-24.736000pt;}
.ws2f{word-spacing:-24.704000pt;}
.ws27{word-spacing:-24.698667pt;}
.ws1b{word-spacing:-24.544000pt;}
.ws23{word-spacing:-24.512000pt;}
.ws18{word-spacing:-24.473600pt;}
.ws1c{word-spacing:-24.416000pt;}
.ws26{word-spacing:-24.380267pt;}
.ws28{word-spacing:-24.322667pt;}
.ws1d{word-spacing:-24.320000pt;}
.ws29{word-spacing:-24.256000pt;}
.ws1a{word-spacing:-24.228800pt;}
.ws3{word-spacing:-24.096000pt;}
.ws25{word-spacing:-24.064000pt;}
.ws5{word-spacing:-24.058987pt;}
.ws19{word-spacing:-24.021013pt;}
.ws2{word-spacing:-23.904000pt;}
.ws4{word-spacing:-23.808000pt;}
.ws6{word-spacing:-23.682667pt;}
.ws1{word-spacing:-23.680000pt;}
.ws2b{word-spacing:-23.456000pt;}
.ws22{word-spacing:-23.424000pt;}
.ws16{word-spacing:-22.970667pt;}
.ws2a{word-spacing:-20.181333pt;}
.ws24{word-spacing:-18.944000pt;}
.ws2d{word-spacing:-13.639467pt;}
.ws2e{word-spacing:-13.511467pt;}
.ws2c{word-spacing:-13.280000pt;}
.ws32{word-spacing:-12.081387pt;}
.ws31{word-spacing:-12.034048pt;}
.ws21{word-spacing:-12.005120pt;}
.ws1f{word-spacing:-11.953280pt;}
.ws20{word-spacing:-11.917248pt;}
.ws0{word-spacing:0.000000pt;}
.ws30{word-spacing:185.418667pt;}
._13{margin-left:-9.856000pt;}
._16{margin-left:-8.669184pt;}
._12{margin-left:-5.952000pt;}
._b{margin-left:-4.910677pt;}
._2{margin-left:-3.400192pt;}
._1{margin-left:-1.758720pt;}
._0{width:1.055232pt;}
._4{width:2.768811pt;}
._3{width:4.034987pt;}
._1e{width:5.994667pt;}
._1f{width:7.061504pt;}
._6{width:8.038827pt;}
._17{width:9.128192pt;}
._19{width:10.378411pt;}
._1c{width:11.641515pt;}
._14{width:13.271680pt;}
._18{width:14.313088pt;}
._8{width:15.861333pt;}
._9{width:16.755541pt;}
._5{width:17.696000pt;}
._25{width:19.894059pt;}
._24{width:21.315328pt;}
._21{width:22.245461pt;}
._1a{width:24.992000pt;}
._1b{width:26.272000pt;}
._20{width:27.870720pt;}
._10{width:29.152000pt;}
._11{width:30.408107pt;}
._7{width:33.461333pt;}
._f{width:34.378155pt;}
._e{width:35.582720pt;}
._c{width:36.878741pt;}
._a{width:38.114048pt;}
._1d{width:39.062549pt;}
._15{width:45.677440pt;}
._22{width:50.778368pt;}
._29{width:61.122219pt;}
._d{width:66.762155pt;}
._23{width:121.667328pt;}
._26{width:210.865835pt;}
._27{width:272.103040pt;}
._28{width:294.129707pt;}
.fs16{font-size:42.880000pt;}
.fs9{font-size:53.120000pt;}
.fs3{font-size:53.248000pt;}
.fs17{font-size:64.000000pt;}
.fs18{font-size:64.128000pt;}
.fs4{font-size:74.880000pt;}
.fs7{font-size:80.128000pt;}
.fs14{font-size:85.120000pt;}
.fs15{font-size:85.248000pt;}
.fs6{font-size:96.000000pt;}
.fs8{font-size:96.128000pt;}
.fs13{font-size:106.880000pt;}
.fs11{font-size:107.008000pt;}
.fs2{font-size:117.120000pt;}
.fs1{font-size:117.248000pt;}
.fs5{font-size:128.000000pt;}
.fse{font-size:128.128000pt;}
.fsa{font-size:144.000000pt;}
.fs0{font-size:149.120000pt;}
.fs10{font-size:149.248000pt;}
.fsc{font-size:170.880000pt;}
.fs12{font-size:171.008000pt;}
.fsd{font-size:180.121534pt;}
.fsb{font-size:234.880000pt;}
.fsf{font-size:235.008000pt;}
.yc0{bottom:-89.728000pt;}
.ybf{bottom:-60.928000pt;}
.ybe{bottom:-32.128000pt;}
.ybd{bottom:-3.296000pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:23.040000pt;}
.y93{bottom:23.776000pt;}
.ybc{bottom:25.504000pt;}
.yfc{bottom:25.728000pt;}
.yfb{bottom:41.920000pt;}
.y110{bottom:42.560000pt;}
.y6d{bottom:45.408000pt;}
.yfd{bottom:47.168000pt;}
.y5d{bottom:47.936000pt;}
.ye8{bottom:49.280000pt;}
.yf2{bottom:50.080000pt;}
.y10{bottom:50.176000pt;}
.yf8{bottom:51.072000pt;}
.ye4{bottom:53.504000pt;}
.y11a{bottom:54.272000pt;}
.ybb{bottom:54.304000pt;}
.yfa{bottom:54.720000pt;}
.y76{bottom:60.448000pt;}
.ye7{bottom:62.173333pt;}
.ycd{bottom:62.240000pt;}
.yf5{bottom:62.368000pt;}
.yf7{bottom:67.232000pt;}
.yf{bottom:68.576000pt;}
.yf9{bottom:71.040000pt;}
.y95{bottom:71.266667pt;}
.y6c{bottom:73.728000pt;}
.y3f{bottom:75.712000pt;}
.ycc{bottom:77.280000pt;}
.yce{bottom:77.626667pt;}
.yf4{bottom:78.528000pt;}
.y8f{bottom:78.693333pt;}
.yba{bottom:81.344000pt;}
.ye3{bottom:82.304000pt;}
.yf6{bottom:83.546667pt;}
.ye6{bottom:85.186667pt;}
.y94{bottom:87.586667pt;}
.y75{bottom:88.800000pt;}
.ya9{bottom:89.248000pt;}
.y5c{bottom:92.736000pt;}
.ycb{bottom:94.373333pt;}
.yf3{bottom:94.853333pt;}
.y8d{bottom:95.520000pt;}
.y51{bottom:96.960000pt;}
.ye{bottom:97.376000pt;}
.y6b{bottom:99.328000pt;}
.yb9{bottom:102.336000pt;}
.yc7{bottom:103.040000pt;}
.y1b{bottom:103.168000pt;}
.y3e{bottom:104.512000pt;}
.y119{bottom:105.472000pt;}
.yca{bottom:109.733333pt;}
.ye2{bottom:111.136000pt;}
.y74{bottom:114.400000pt;}
.ya8{bottom:118.048000pt;}
.y43{bottom:118.112000pt;}
.y10f{bottom:119.392000pt;}
.yd{bottom:120.448000pt;}
.yc9{bottom:124.000000pt;}
.y6a{bottom:124.960000pt;}
.yeb{bottom:126.426667pt;}
.y50{bottom:126.432000pt;}
.y97{bottom:126.906667pt;}
.yb8{bottom:131.136000pt;}
.y1a{bottom:131.968000pt;}
.y3d{bottom:133.346667pt;}
.ye9{bottom:133.760000pt;}
.y90{bottom:134.333333pt;}
.yd3{bottom:135.933333pt;}
.y5b{bottom:137.533333pt;}
.yc8{bottom:139.200000pt;}
.y2a{bottom:139.906667pt;}
.ye1{bottom:139.933333pt;}
.y73{bottom:140.000000pt;}
.y96{bottom:143.226667pt;}
.y101{bottom:145.373333pt;}
.yc{bottom:145.413333pt;}
.ya7{bottom:146.880000pt;}
.y42{bottom:146.946667pt;}
.yff{bottom:147.266667pt;}
.y69{bottom:150.560000pt;}
.y118{bottom:156.706667pt;}
.y4f{bottom:158.426667pt;}
.yb7{bottom:159.933333pt;}
.y19{bottom:160.773333pt;}
.yd2{bottom:161.373333pt;}
.y3c{bottom:162.146667pt;}
.y7e{bottom:163.493333pt;}
.y72{bottom:165.600000pt;}
.y109{bottom:165.853333pt;}
.ye0{bottom:166.973333pt;}
.ya6{bottom:173.920000pt;}
.y41{bottom:175.746667pt;}
.yfe{bottom:176.026667pt;}
.y68{bottom:176.160000pt;}
.y29{bottom:178.306667pt;}
.ye5{bottom:178.720000pt;}
.yb{bottom:181.733333pt;}
.y5a{bottom:182.373333pt;}
.yea{bottom:185.253333pt;}
.ydf{bottom:187.933333pt;}
.yb6{bottom:188.733333pt;}
.y18{bottom:189.573333pt;}
.y91{bottom:189.986667pt;}
.y4e{bottom:190.426667pt;}
.y98{bottom:190.720000pt;}
.y3b{bottom:190.946667pt;}
.y71{bottom:191.200000pt;}
.ycf{bottom:194.466667pt;}
.ya5{bottom:194.880000pt;}
.y7d{bottom:195.493333pt;}
.y10e{bottom:196.186667pt;}
.y2f{bottom:196.733333pt;}
.yd1{bottom:197.573333pt;}
.y67{bottom:201.760000pt;}
.y40{bottom:204.546667pt;}
.y117{bottom:207.906667pt;}
.ya{bottom:210.693333pt;}
.yde{bottom:214.973333pt;}
.y28{bottom:216.706667pt;}
.y70{bottom:216.826667pt;}
.yb5{bottom:217.533333pt;}
.y17{bottom:218.373333pt;}
.y3a{bottom:219.746667pt;}
.y4d{bottom:222.426667pt;}
.ya4{bottom:223.680000pt;}
.y59{bottom:227.173333pt;}
.y66{bottom:227.360000pt;}
.y7c{bottom:227.493333pt;}
.ydd{bottom:234.213333pt;}
.y9{bottom:238.693333pt;}
.y6f{bottom:242.426667pt;}
.y108{bottom:242.693333pt;}
.y2e{bottom:242.813333pt;}
.yb4{bottom:244.613333pt;}
.y99{bottom:246.373333pt;}
.y39{bottom:248.546667pt;}
.y92{bottom:248.666667pt;}
.ya3{bottom:250.720000pt;}
.y65{bottom:252.986667pt;}
.y4c{bottom:254.466667pt;}
.y27{bottom:255.106667pt;}
.ydc{bottom:255.173333pt;}
.y116{bottom:259.106667pt;}
.y8{bottom:263.360000pt;}
.yb3{bottom:265.573333pt;}
.y6e{bottom:268.506667pt;}
.ya2{bottom:271.680000pt;}
.y58{bottom:271.973333pt;}
.y10d{bottom:273.026667pt;}
.y8c{bottom:274.373333pt;}
.y100{bottom:275.493333pt;}
.y64{bottom:279.066667pt;}
.yd0{bottom:281.626667pt;}
.ydb{bottom:283.973333pt;}
.y2d{bottom:288.933333pt;}
.y7{bottom:292.160000pt;}
.y26{bottom:293.533333pt;}
.yb2{bottom:294.373333pt;}
.ya1{bottom:300.506667pt;}
.y14{bottom:301.120000pt;}
.y8b{bottom:303.173333pt;}
.y115{bottom:310.333333pt;}
.yda{bottom:312.773333pt;}
.y57{bottom:316.800000pt;}
.y107{bottom:319.493333pt;}
.y6{bottom:323.040000pt;}
.yb1{bottom:323.173333pt;}
.ya0{bottom:327.546667pt;}
.y13{bottom:329.946667pt;}
.y25{bottom:331.933333pt;}
.y8a{bottom:331.973333pt;}
.y2c{bottom:335.013333pt;}
.y35{bottom:336.826667pt;}
.yd9{bottom:341.573333pt;}
.y9f{bottom:348.506667pt;}
.y10c{bottom:349.826667pt;}
.yb0{bottom:350.213333pt;}
.y4b{bottom:352.066667pt;}
.yc6{bottom:354.080000pt;}
.y5{bottom:358.400000pt;}
.y12{bottom:358.746667pt;}
.y89{bottom:359.013333pt;}
.y114{bottom:361.533333pt;}
.y56{bottom:361.600000pt;}
.y34{bottom:365.666667pt;}
.y63{bottom:367.360000pt;}
.yf1{bottom:368.186667pt;}
.y24{bottom:370.333333pt;}
.yd8{bottom:370.400000pt;}
.yaf{bottom:371.200000pt;}
.y5f{bottom:372.293333pt;}
.y38{bottom:376.160000pt;}
.y9e{bottom:377.306667pt;}
.y4{bottom:379.520000pt;}
.y88{bottom:380.000000pt;}
.y2b{bottom:381.120000pt;}
.yc5{bottom:382.880000pt;}
.y4a{bottom:383.773333pt;}
.y46{bottom:387.613333pt;}
.y33{bottom:394.466667pt;}
.y106{bottom:396.320000pt;}
.yf0{bottom:396.986667pt;}
.yd7{bottom:399.200000pt;}
.y62{bottom:399.360000pt;}
.yae{bottom:400.000000pt;}
.y7b{bottom:401.693333pt;}
.y37{bottom:404.960000pt;}
.y9d{bottom:406.146667pt;}
.y55{bottom:406.400000pt;}
.y23{bottom:408.773333pt;}
.y87{bottom:408.800000pt;}
.y103{bottom:411.066667pt;}
.yc4{bottom:411.706667pt;}
.y113{bottom:412.733333pt;}
.y49{bottom:416.093333pt;}
.y32{bottom:423.266667pt;}
.yef{bottom:425.786667pt;}
.y10b{bottom:426.653333pt;}
.yd6{bottom:428.000000pt;}
.yad{bottom:428.800000pt;}
.y61{bottom:431.360000pt;}
.y9c{bottom:433.186667pt;}
.y7a{bottom:433.693333pt;}
.y36{bottom:433.760000pt;}
.y86{bottom:435.840000pt;}
.yc3{bottom:440.506667pt;}
.y45{bottom:449.093333pt;}
.y54{bottom:451.226667pt;}
.yee{bottom:452.826667pt;}
.y9b{bottom:454.146667pt;}
.yac{bottom:455.840000pt;}
.y85{bottom:456.800000pt;}
.y60{bottom:463.386667pt;}
.y112{bottom:463.973333pt;}
.y79{bottom:465.733333pt;}
.yc2{bottom:469.306667pt;}
.y102{bottom:472.546667pt;}
.y105{bottom:473.120000pt;}
.yed{bottom:473.826667pt;}
.yab{bottom:476.800000pt;}
.y9a{bottom:482.946667pt;}
.y84{bottom:485.600000pt;}
.y5e{bottom:495.200000pt;}
.y53{bottom:496.026667pt;}
.yc1{bottom:498.106667pt;}
.yec{bottom:502.626667pt;}
.y10a{bottom:503.493333pt;}
.yaa{bottom:505.626667pt;}
.y1e{bottom:508.826667pt;}
.y44{bottom:510.533333pt;}
.y111{bottom:515.173333pt;}
.y48{bottom:515.453333pt;}
.y16{bottom:521.093333pt;}
.y1d{bottom:533.306667pt;}
.y52{bottom:540.826667pt;}
.y3{bottom:541.506667pt;}
.y22{bottom:544.826667pt;}
.y15{bottom:545.733333pt;}
.y47{bottom:547.453333pt;}
.y1c{bottom:557.946667pt;}
.y82{bottom:568.320000pt;}
.y21{bottom:573.626667pt;}
.y2{bottom:576.733333pt;}
.y20{bottom:588.293333pt;}
.y81{bottom:592.640000pt;}
.yd5{bottom:595.973333pt;}
.y78{bottom:604.573333pt;}
.y31{bottom:606.173333pt;}
.y1{bottom:613.853333pt;}
.y30{bottom:623.200000pt;}
.yd4{bottom:625.413333pt;}
.y80{bottom:627.866667pt;}
.y83{bottom:629.253333pt;}
.y11{bottom:630.146667pt;}
.y104{bottom:636.160000pt;}
.y1f{bottom:640.480000pt;}
.y77{bottom:642.973333pt;}
.y7f{bottom:665.946667pt;}
.h21{height:40.332812pt;}
.h22{height:40.430000pt;}
.h1b{height:44.722500pt;}
.ha{height:46.609688pt;}
.h4{height:46.722000pt;}
.h24{height:50.343021pt;}
.h27{height:54.412813pt;}
.h26{height:54.679479pt;}
.h1e{height:56.156250pt;}
.h1f{height:56.268562pt;}
.h5{height:65.702812pt;}
.h8{height:70.307625pt;}
.h19{height:74.687812pt;}
.h1a{height:74.800125pt;}
.h7{height:84.234375pt;}
.h9{height:84.346688pt;}
.h16{height:93.780937pt;}
.h18{height:93.893250pt;}
.hc{height:100.125000pt;}
.hd{height:100.258500pt;}
.h3{height:102.765937pt;}
.h2{height:102.878250pt;}
.h6{height:112.312500pt;}
.h1c{height:122.152500pt;}
.h1d{height:122.286000pt;}
.hb{height:126.351562pt;}
.h1{height:130.844062pt;}
.h17{height:130.956375pt;}
.h10{height:133.500000pt;}
.h11{height:133.633500pt;}
.hf{height:149.690845pt;}
.h15{height:149.937187pt;}
.h14{height:150.049500pt;}
.h13{height:155.661000pt;}
.h12{height:176.256000pt;}
.h2a{height:177.221250pt;}
.h29{height:177.354000pt;}
.he{height:178.339062pt;}
.h28{height:243.729000pt;}
.h25{height:249.440000pt;}
.h20{height:279.680000pt;}
.h23{height:309.920000pt;}
.h0{height:720.000000pt;}
.w1{width:589.600000pt;}
.w3{width:627.360000pt;}
.w4{width:745.760000pt;}
.w2{width:800.480000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x7c{left:11.104000pt;}
.x5b{left:14.786667pt;}
.x5c{left:19.586667pt;}
.x59{left:23.773333pt;}
.x4{left:28.448000pt;}
.x5a{left:30.973333pt;}
.x53{left:40.000000pt;}
.x36{left:41.600000pt;}
.x41{left:43.616000pt;}
.x3e{left:44.992000pt;}
.x6{left:48.288000pt;}
.x2{left:50.336000pt;}
.x63{left:52.066667pt;}
.x62{left:53.826667pt;}
.x3f{left:55.552000pt;}
.x32{left:59.168000pt;}
.x40{left:60.192000pt;}
.x34{left:67.328000pt;}
.x85{left:72.256000pt;}
.x87{left:74.176000pt;}
.x80{left:76.896000pt;}
.x88{left:79.616000pt;}
.x7e{left:81.824000pt;}
.x6e{left:85.760000pt;}
.x26{left:87.424000pt;}
.x83{left:88.864000pt;}
.x4a{left:90.368000pt;}
.x49{left:91.968000pt;}
.x4b{left:94.848000pt;}
.xd{left:96.448000pt;}
.x86{left:97.856000pt;}
.x33{left:100.768000pt;}
.x48{left:103.008000pt;}
.x7d{left:105.504000pt;}
.x82{left:108.224000pt;}
.x27{left:109.664000pt;}
.x11{left:111.616000pt;}
.xf{left:112.672000pt;}
.x35{left:115.328000pt;}
.x10{left:116.832000pt;}
.x45{left:118.624000pt;}
.x5d{left:119.616000pt;}
.x51{left:121.280000pt;}
.x17{left:122.720000pt;}
.x47{left:125.728000pt;}
.x3{left:129.376000pt;}
.x14{left:132.992000pt;}
.x60{left:134.306667pt;}
.x71{left:144.640000pt;}
.x6d{left:147.360000pt;}
.x55{left:148.706667pt;}
.x5e{left:149.693333pt;}
.x13{left:150.586667pt;}
.x6c{left:152.186667pt;}
.x28{left:154.333333pt;}
.x64{left:156.960000pt;}
.x5f{left:159.040000pt;}
.x61{left:164.386667pt;}
.x52{left:166.266667pt;}
.x7f{left:170.333333pt;}
.xe{left:172.133333pt;}
.x72{left:174.720000pt;}
.x43{left:178.626667pt;}
.x20{left:180.960000pt;}
.x77{left:185.853333pt;}
.x22{left:191.520000pt;}
.x8{left:196.000000pt;}
.x73{left:199.973333pt;}
.x18{left:201.600000pt;}
.x3c{left:205.920000pt;}
.x44{left:208.546667pt;}
.x19{left:210.213333pt;}
.x9{left:211.840000pt;}
.x1e{left:216.453333pt;}
.x21{left:219.360000pt;}
.x1b{left:222.533333pt;}
.x15{left:229.986667pt;}
.x1c{left:231.333333pt;}
.x3a{left:232.640000pt;}
.x3b{left:234.560000pt;}
.x46{left:236.000000pt;}
.x25{left:237.440000pt;}
.x68{left:245.413333pt;}
.x1a{left:246.693333pt;}
.x1d{left:251.973333pt;}
.x24{left:269.466667pt;}
.x39{left:274.653333pt;}
.x78{left:275.973333pt;}
.x5{left:279.840000pt;}
.x57{left:283.106667pt;}
.x75{left:293.346667pt;}
.xb{left:295.200000pt;}
.x74{left:306.333333pt;}
.xc{left:310.720000pt;}
.x7{left:314.400000pt;}
.x42{left:329.440000pt;}
.x84{left:339.293333pt;}
.x37{left:340.960000pt;}
.x6f{left:342.586667pt;}
.x54{left:345.986667pt;}
.x1f{left:354.400000pt;}
.x79{left:359.973333pt;}
.x12{left:361.146667pt;}
.x69{left:362.880000pt;}
.x89{left:372.933333pt;}
.x16{left:374.533333pt;}
.x38{left:390.560000pt;}
.x76{left:406.653333pt;}
.x65{left:422.400000pt;}
.x23{left:424.506667pt;}
.x81{left:443.200000pt;}
.x58{left:446.400000pt;}
.x66{left:452.000000pt;}
.x7a{left:457.853333pt;}
.x1{left:481.760000pt;}
.xa{left:483.706667pt;}
.x70{left:495.840000pt;}
.x6a{left:502.813333pt;}
.x56{left:534.333333pt;}
.x3d{left:551.906667pt;}
.x31{left:561.853333pt;}
.x7b{left:565.986667pt;}
.x2d{left:571.453333pt;}
.x2b{left:573.213333pt;}
.x2c{left:576.733333pt;}
.x2e{left:597.053333pt;}
.x29{left:608.933333pt;}
.x2f{left:614.173333pt;}
.x4d{left:616.346667pt;}
.x4e{left:620.826667pt;}
.x67{left:622.586667pt;}
.x50{left:630.586667pt;}
.x4f{left:644.186667pt;}
.x6b{left:650.813333pt;}
.x2a{left:654.053333pt;}
.x30{left:671.493333pt;}
.x4c{left:725.786667pt;}
}

