
    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_57ee3d03dc19cbb0a0db910d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_81e9f084e7fa7713a1c1b9b8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.185000;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_32efa7f5ed6ad01346d3e7cd.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_49a97a836f9119ca0a9dda8b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_05d1d16f42618db003fdac4e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.203000;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_57ee3d03dc19cbb0a0db910d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ae25adfa4208c7291fe64a0c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.183000;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_d4a4ee3bff649fb207e60598.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_05d1d16f42618db003fdac4e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.203000;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_8497d566f7cb4f46998eef6b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.483000;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_1135f0eddeb064a88f3e8fb7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.483000;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_d4a4ee3bff649fb207e60598.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_05d1d16f42618db003fdac4e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.203000;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_e6e7943a587a629014fa5084.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.303000;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_d4a4ee3bff649fb207e60598.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_05d1d16f42618db003fdac4e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.203000;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_c93c7f27faff5c4220d9f576.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v4{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.754517px;}
.v3{vertical-align:26.399780px;}
.v2{vertical-align:45.732422px;}
.ls9{letter-spacing:-1.999200px;}
.lsa{letter-spacing:-1.058400px;}
.ls3{letter-spacing:-1.050000px;}
.ls4{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.470400px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000002px;}
.ls6{letter-spacing:0.000007px;}
.ls5{letter-spacing:0.000009px;}
.ls0{letter-spacing:0.000022px;}
.lsc{letter-spacing:0.000097px;}
.ls7{letter-spacing:0.000100px;}
.lsb{letter-spacing:1.176000px;}
.ls1{letter-spacing:9.360000px;}
.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;}
}
.ws9{word-spacing:-30.528000px;}
.ws3{word-spacing:-15.810960px;}
.ws72{word-spacing:-14.994000px;}
.ws73{word-spacing:-14.700000px;}
.wsa{word-spacing:-14.454000px;}
.ws17{word-spacing:-13.818000px;}
.ws6f{word-spacing:-13.347600px;}
.ws71{word-spacing:-12.759600px;}
.ws5{word-spacing:-12.483600px;}
.ws6{word-spacing:-12.420000px;}
.ws8{word-spacing:-11.880000px;}
.ws105{word-spacing:-11.826000px;}
.ws70{word-spacing:-11.818800px;}
.ws134{word-spacing:-11.426400px;}
.ws7{word-spacing:-10.800000px;}
.wsda{word-spacing:-10.512000px;}
.wsb{word-spacing:-10.117800px;}
.wsa9{word-spacing:-9.936000px;}
.ws4{word-spacing:-9.855000px;}
.wsd9{word-spacing:-9.720000px;}
.ws133{word-spacing:-9.315000px;}
.wsaa{word-spacing:-8.640000px;}
.ws1{word-spacing:-8.148000px;}
.ws135{word-spacing:-6.898500px;}
.ws8a{word-spacing:-6.468000px;}
.ws16{word-spacing:-5.640000px;}
.ws62{word-spacing:-4.762800px;}
.ws114{word-spacing:-4.512000px;}
.ws14{word-spacing:-3.108000px;}
.ws15{word-spacing:-3.057780px;}
.ws6a{word-spacing:-2.410800px;}
.wsd6{word-spacing:-2.064000px;}
.ws76{word-spacing:-2.058000px;}
.wsf8{word-spacing:-2.016000px;}
.wsd5{word-spacing:-1.920000px;}
.wsa1{word-spacing:-1.470000px;}
.ws13{word-spacing:-1.344000px;}
.wsc3{word-spacing:-0.999600px;}
.ws78{word-spacing:-0.940800px;}
.wsc8{word-spacing:-0.411600px;}
.ws132{word-spacing:-0.352800px;}
.wsf3{word-spacing:-0.294000px;}
.ws106{word-spacing:-0.235200px;}
.ws20{word-spacing:-0.176400px;}
.wsf9{word-spacing:-0.144000px;}
.ws24{word-spacing:-0.117600px;}
.wsf7{word-spacing:-0.054000px;}
.ws115{word-spacing:-0.048000px;}
.ws136{word-spacing:-0.045000px;}
.wsc{word-spacing:0.000000px;}
.ws95{word-spacing:0.058800px;}
.ws81{word-spacing:0.117600px;}
.wsd8{word-spacing:0.144000px;}
.ws6b{word-spacing:0.176400px;}
.ws11{word-spacing:0.210000px;}
.ws36{word-spacing:0.235200px;}
.ws84{word-spacing:0.294000px;}
.wsca{word-spacing:0.352800px;}
.ws4b{word-spacing:0.411600px;}
.wsa8{word-spacing:0.470400px;}
.ws12b{word-spacing:0.529200px;}
.wsc4{word-spacing:0.588000px;}
.ws103{word-spacing:0.624000px;}
.ws4a{word-spacing:0.646800px;}
.ws104{word-spacing:0.672000px;}
.ws10c{word-spacing:0.764400px;}
.ws10b{word-spacing:0.823200px;}
.wsd1{word-spacing:0.882000px;}
.ws127{word-spacing:0.940800px;}
.wsd7{word-spacing:0.960000px;}
.ws85{word-spacing:0.999600px;}
.ws12{word-spacing:1.050000px;}
.ws41{word-spacing:1.176000px;}
.ws10a{word-spacing:1.234800px;}
.wse{word-spacing:1.260000px;}
.ws7f{word-spacing:1.293600px;}
.wsf{word-spacing:1.302000px;}
.wsd{word-spacing:1.344000px;}
.ws61{word-spacing:1.352400px;}
.ws11b{word-spacing:1.411200px;}
.ws10{word-spacing:1.470000px;}
.ws4d{word-spacing:1.528800px;}
.wscb{word-spacing:1.587600px;}
.wse4{word-spacing:1.646400px;}
.ws64{word-spacing:1.705200px;}
.wsbb{word-spacing:1.764000px;}
.ws46{word-spacing:1.822800px;}
.ws10d{word-spacing:1.881600px;}
.ws7d{word-spacing:1.940400px;}
.ws12d{word-spacing:1.999200px;}
.ws10f{word-spacing:2.058000px;}
.ws8c{word-spacing:2.175600px;}
.ws94{word-spacing:2.293200px;}
.wscd{word-spacing:2.352000px;}
.ws9c{word-spacing:2.410800px;}
.ws7c{word-spacing:2.528400px;}
.ws58{word-spacing:2.587200px;}
.ws19{word-spacing:2.640000px;}
.ws83{word-spacing:2.646000px;}
.ws68{word-spacing:2.704800px;}
.ws130{word-spacing:2.881200px;}
.ws91{word-spacing:2.940000px;}
.ws5d{word-spacing:2.998800px;}
.ws117{word-spacing:3.057600px;}
.ws18{word-spacing:3.072000px;}
.ws43{word-spacing:3.116400px;}
.wsb9{word-spacing:3.175200px;}
.wseb{word-spacing:3.234000px;}
.ws69{word-spacing:3.292800px;}
.ws52{word-spacing:3.351600px;}
.ws32{word-spacing:3.410400px;}
.ws60{word-spacing:3.469200px;}
.wsff{word-spacing:3.645600px;}
.wsc0{word-spacing:3.704400px;}
.ws66{word-spacing:3.763200px;}
.ws6c{word-spacing:3.822000px;}
.ws3f{word-spacing:3.880800px;}
.ws7a{word-spacing:3.939600px;}
.wsa6{word-spacing:3.998400px;}
.ws5c{word-spacing:4.057200px;}
.ws29{word-spacing:4.116000px;}
.ws116{word-spacing:4.174800px;}
.ws30{word-spacing:4.233600px;}
.ws4e{word-spacing:4.292400px;}
.ws63{word-spacing:4.351200px;}
.ws5a{word-spacing:4.410000px;}
.ws100{word-spacing:4.468800px;}
.ws108{word-spacing:4.527600px;}
.ws2f{word-spacing:4.586400px;}
.ws35{word-spacing:4.645200px;}
.wsd2{word-spacing:4.704000px;}
.ws2c{word-spacing:4.762800px;}
.wsdb{word-spacing:4.821600px;}
.ws39{word-spacing:4.880400px;}
.ws7b{word-spacing:4.939200px;}
.wse6{word-spacing:5.056800px;}
.ws1d{word-spacing:5.115600px;}
.ws67{word-spacing:5.174400px;}
.ws3e{word-spacing:5.292000px;}
.ws112{word-spacing:5.409600px;}
.wsc5{word-spacing:5.468400px;}
.wsf1{word-spacing:5.527200px;}
.ws129{word-spacing:5.586000px;}
.wsfa{word-spacing:5.644800px;}
.wsbf{word-spacing:5.703600px;}
.ws23{word-spacing:5.762400px;}
.ws11d{word-spacing:5.880000px;}
.ws11c{word-spacing:5.938800px;}
.ws9a{word-spacing:5.997600px;}
.ws28{word-spacing:6.056400px;}
.ws5e{word-spacing:6.115200px;}
.ws3d{word-spacing:6.174000px;}
.ws4c{word-spacing:6.232800px;}
.wsa7{word-spacing:6.350400px;}
.ws101{word-spacing:6.409200px;}
.ws59{word-spacing:6.468000px;}
.ws113{word-spacing:6.526800px;}
.wse7{word-spacing:6.585600px;}
.ws6e{word-spacing:6.644400px;}
.wsec{word-spacing:6.703200px;}
.ws126{word-spacing:6.762000px;}
.ws123{word-spacing:6.820800px;}
.ws102{word-spacing:6.879600px;}
.wsee{word-spacing:6.938400px;}
.ws97{word-spacing:7.056000px;}
.ws31{word-spacing:7.114800px;}
.wse3{word-spacing:7.173600px;}
.ws119{word-spacing:7.232400px;}
.ws56{word-spacing:7.350000px;}
.ws77{word-spacing:7.408800px;}
.ws51{word-spacing:7.467600px;}
.wsf2{word-spacing:7.526400px;}
.ws74{word-spacing:7.644000px;}
.wsce{word-spacing:7.761600px;}
.wsb8{word-spacing:7.820400px;}
.wsa5{word-spacing:7.938000px;}
.wsed{word-spacing:7.996800px;}
.wsa0{word-spacing:8.055600px;}
.wsbc{word-spacing:8.114400px;}
.ws1a{word-spacing:8.173200px;}
.ws93{word-spacing:8.290800px;}
.ws21{word-spacing:8.349600px;}
.ws1b{word-spacing:8.467200px;}
.ws12c{word-spacing:8.584800px;}
.wsef{word-spacing:8.643600px;}
.wsf6{word-spacing:8.702400px;}
.ws7e{word-spacing:8.761200px;}
.ws3a{word-spacing:8.820000px;}
.wsd4{word-spacing:8.878800px;}
.ws5f{word-spacing:8.937600px;}
.ws8d{word-spacing:8.996400px;}
.wse1{word-spacing:9.055200px;}
.ws79{word-spacing:9.114000px;}
.wsba{word-spacing:9.172800px;}
.ws45{word-spacing:9.231600px;}
.ws128{word-spacing:9.290400px;}
.ws1c{word-spacing:9.349200px;}
.wse5{word-spacing:9.408000px;}
.wsd3{word-spacing:9.466800px;}
.wsfb{word-spacing:9.525600px;}
.ws53{word-spacing:9.584400px;}
.ws4f{word-spacing:9.643200px;}
.wscf{word-spacing:9.702000px;}
.wsbd{word-spacing:9.819600px;}
.ws98{word-spacing:9.878400px;}
.ws25{word-spacing:9.996000px;}
.ws124{word-spacing:10.054800px;}
.ws109{word-spacing:10.113600px;}
.ws3b{word-spacing:10.172400px;}
.ws27{word-spacing:10.231200px;}
.ws11f{word-spacing:10.290000px;}
.wsb2{word-spacing:10.407600px;}
.wsa3{word-spacing:10.466400px;}
.wsfe{word-spacing:10.525200px;}
.ws65{word-spacing:10.819200px;}
.ws9b{word-spacing:10.878000px;}
.wsc2{word-spacing:11.113200px;}
.ws2d{word-spacing:11.172000px;}
.ws89{word-spacing:11.289600px;}
.wsdf{word-spacing:11.407200px;}
.ws12e{word-spacing:11.466000px;}
.ws120{word-spacing:11.524800px;}
.ws11a{word-spacing:11.583600px;}
.ws38{word-spacing:11.701200px;}
.ws82{word-spacing:11.818800px;}
.ws57{word-spacing:11.936400px;}
.ws9f{word-spacing:11.995200px;}
.ws87{word-spacing:12.054000px;}
.wsea{word-spacing:12.171600px;}
.ws37{word-spacing:12.289200px;}
.ws54{word-spacing:12.348000px;}
.ws44{word-spacing:12.406800px;}
.ws26{word-spacing:12.465600px;}
.ws80{word-spacing:12.524400px;}
.ws86{word-spacing:12.642000px;}
.ws122{word-spacing:12.700800px;}
.ws9d{word-spacing:12.759600px;}
.ws8e{word-spacing:12.818400px;}
.wse9{word-spacing:12.936000px;}
.wsaf{word-spacing:12.994800px;}
.wse8{word-spacing:13.112400px;}
.ws75{word-spacing:13.171200px;}
.wsde{word-spacing:13.230000px;}
.wscc{word-spacing:13.288800px;}
.ws55{word-spacing:13.465200px;}
.wsdc{word-spacing:13.582800px;}
.ws111{word-spacing:13.700400px;}
.ws8f{word-spacing:13.818000px;}
.ws107{word-spacing:13.876800px;}
.wsbe{word-spacing:13.935600px;}
.ws34{word-spacing:13.994400px;}
.ws2a{word-spacing:14.112000px;}
.wsb6{word-spacing:14.229600px;}
.ws125{word-spacing:14.406000px;}
.ws2e{word-spacing:14.464800px;}
.wsf4{word-spacing:14.523600px;}
.ws12a{word-spacing:14.582400px;}
.ws121{word-spacing:14.641200px;}
.wsf0{word-spacing:14.817600px;}
.wsb1{word-spacing:14.935200px;}
.wsad{word-spacing:14.994000px;}
.ws8b{word-spacing:15.052800px;}
.ws3c{word-spacing:15.229200px;}
.ws110{word-spacing:15.288000px;}
.ws6d{word-spacing:15.346800px;}
.wsb5{word-spacing:15.405600px;}
.ws33{word-spacing:15.523200px;}
.ws48{word-spacing:15.582000px;}
.wsb7{word-spacing:15.640800px;}
.ws118{word-spacing:15.817200px;}
.wsb4{word-spacing:15.993600px;}
.ws22{word-spacing:16.111200px;}
.ws47{word-spacing:16.228800px;}
.ws1f{word-spacing:16.464000px;}
.ws88{word-spacing:16.816800px;}
.wsae{word-spacing:17.346000px;}
.wsfd{word-spacing:17.463600px;}
.ws11e{word-spacing:17.522400px;}
.ws12f{word-spacing:17.757600px;}
.ws90{word-spacing:17.816400px;}
.wsf5{word-spacing:17.934000px;}
.ws99{word-spacing:17.992800px;}
.wsdd{word-spacing:18.404400px;}
.wsb3{word-spacing:18.463200px;}
.wsc6{word-spacing:18.698400px;}
.wse0{word-spacing:18.757200px;}
.ws40{word-spacing:18.874800px;}
.wsab{word-spacing:18.992400px;}
.wsac{word-spacing:19.227600px;}
.wsa2{word-spacing:19.345200px;}
.wsd0{word-spacing:19.404000px;}
.ws10e{word-spacing:19.462800px;}
.wse2{word-spacing:19.933200px;}
.wsfc{word-spacing:20.227200px;}
.ws49{word-spacing:21.109200px;}
.ws131{word-spacing:21.226800px;}
.ws42{word-spacing:21.462000px;}
.wsc9{word-spacing:22.226400px;}
.ws5b{word-spacing:23.108400px;}
.ws9e{word-spacing:24.166800px;}
.ws50{word-spacing:24.696000px;}
.ws2b{word-spacing:24.990000px;}
.wsb0{word-spacing:25.754400px;}
.ws96{word-spacing:25.930800px;}
.ws92{word-spacing:26.812800px;}
.ws1e{word-spacing:29.400000px;}
.wsc1{word-spacing:34.045200px;}
.wsc7{word-spacing:34.221600px;}
.wsa4{word-spacing:35.691600px;}
.ws2{word-spacing:1275.705051px;}
.ws0{word-spacing:2061.754745px;}
._c{margin-left:-2891.244630px;}
._13{margin-left:-20.699719px;}
._10{margin-left:-17.859034px;}
._f{margin-left:-11.172000px;}
._25{margin-left:-9.855000px;}
._9{margin-left:-8.552188px;}
._b{margin-left:-7.315002px;}
._7{margin-left:-5.664000px;}
._5{margin-left:-4.012012px;}
._2{margin-left:-2.467988px;}
._1{margin-left:-1.404000px;}
._0{width:1.092000px;}
._3{width:2.775300px;}
._6{width:3.925988px;}
._a{width:4.975048px;}
._21{width:6.875753px;}
._11{width:7.899700px;}
._27{width:9.418288px;}
._d{width:10.481572px;}
._12{width:11.943074px;}
._20{width:13.516992px;}
._4{width:14.719798px;}
._e{width:15.791534px;}
._8{width:17.035181px;}
._2e{width:33.120000px;}
._2d{width:55.080000px;}
._2c{width:62.145000px;}
._2a{width:73.440000px;}
._24{width:81.360000px;}
._2b{width:91.485000px;}
._28{width:94.095000px;}
._26{width:95.857012px;}
._29{width:99.675000px;}
._23{width:112.005000px;}
._22{width:195.586797px;}
._16{width:219.643791px;}
._18{width:243.067791px;}
._1b{width:341.487590px;}
._1e{width:457.395590px;}
._1d{width:513.615590px;}
._1f{width:549.363590px;}
._1a{width:561.411590px;}
._14{width:605.619590px;}
._15{width:614.295590px;}
._17{width:642.291590px;}
._1c{width:654.483590px;}
._19{width:658.282592px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:31.500000px;}
.fs1{font-size:42.000000px;}
.fs4{font-size:45.000000px;}
.fs9{font-size:46.199999px;}
.fs2{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fsb{font-size:55.199999px;}
.fsa{font-size:58.800000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:61.800000px;}
.fs8{font-size:66.000000px;}
.fsc{font-size:72.000000px;}
.fs3{font-size:74.580000px;}
.fs0{font-size:78.000000px;}
.fs7{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:88.869152px;}
.yb9{bottom:90.000000px;}
.ybc{bottom:92.551203px;}
.y64{bottom:92.551352px;}
.y71{bottom:92.552547px;}
.y8{bottom:100.869152px;}
.y19d{bottom:106.105797px;}
.y15b{bottom:108.283504px;}
.ybb{bottom:110.551197px;}
.y63{bottom:110.551346px;}
.y70{bottom:110.552547px;}
.y1e0{bottom:111.113697px;}
.y7{bottom:112.869152px;}
.y19c{bottom:119.605797px;}
.y1df{bottom:124.613697px;}
.y6{bottom:124.869152px;}
.y15a{bottom:126.283504px;}
.y8b{bottom:128.551197px;}
.y62{bottom:128.551346px;}
.y6f{bottom:128.552547px;}
.y19b{bottom:133.105797px;}
.y159{bottom:135.283504px;}
.y5{bottom:136.869152px;}
.y1de{bottom:138.113697px;}
.y8a{bottom:146.551197px;}
.y61{bottom:146.551346px;}
.y6e{bottom:146.552547px;}
.yad{bottom:146.563946px;}
.y19a{bottom:146.605797px;}
.y4{bottom:148.869152px;}
.y1dd{bottom:151.613697px;}
.y158{bottom:153.283504px;}
.y199{bottom:160.105797px;}
.y3{bottom:160.869152px;}
.y157{bottom:162.283504px;}
.y89{bottom:164.551197px;}
.y60{bottom:164.551346px;}
.yac{bottom:164.563946px;}
.y1dc{bottom:165.113697px;}
.y2{bottom:172.869152px;}
.y198{bottom:173.605797px;}
.y1db{bottom:178.613697px;}
.y6d{bottom:182.551197px;}
.y5f{bottom:182.551346px;}
.yab{bottom:182.563946px;}
.y197{bottom:187.105797px;}
.y156{bottom:189.283504px;}
.y1da{bottom:192.113708px;}
.y6c{bottom:200.551208px;}
.y5e{bottom:200.551346px;}
.y196{bottom:200.605797px;}
.y155{bottom:202.783493px;}
.y1d9{bottom:205.613708px;}
.y10{bottom:213.424805px;}
.y195{bottom:214.105797px;}
.y12a{bottom:217.665894px;}
.y6b{bottom:218.551208px;}
.y5d{bottom:218.551346px;}
.yaa{bottom:218.562607px;}
.y1d8{bottom:219.113708px;}
.yf5{bottom:224.482956px;}
.y194{bottom:227.605797px;}
.y154{bottom:229.783493px;}
.y1d7{bottom:232.613708px;}
.y129{bottom:232.665894px;}
.yf{bottom:234.424805px;}
.y6a{bottom:236.551208px;}
.y5c{bottom:236.551346px;}
.ya9{bottom:236.562607px;}
.yf4{bottom:239.482956px;}
.y193{bottom:241.105797px;}
.y153{bottom:243.283493px;}
.y1d6{bottom:246.113708px;}
.y128{bottom:247.665894px;}
.ye{bottom:247.924805px;}
.yf3{bottom:254.482956px;}
.y69{bottom:254.551208px;}
.y5b{bottom:254.551346px;}
.ya8{bottom:254.562607px;}
.y192{bottom:254.605797px;}
.y1d5{bottom:259.613708px;}
.yd{bottom:261.424805px;}
.y127{bottom:262.665894px;}
.y191{bottom:268.105797px;}
.y152{bottom:270.283493px;}
.yf2{bottom:271.986900px;}
.y68{bottom:272.551208px;}
.y5a{bottom:272.551346px;}
.ya7{bottom:272.562607px;}
.y1d4{bottom:273.113708px;}
.y126{bottom:277.665894px;}
.y190{bottom:281.605797px;}
.y151{bottom:283.783493px;}
.y1d3{bottom:286.613708px;}
.yf1{bottom:289.490845px;}
.y67{bottom:290.551208px;}
.y59{bottom:290.551346px;}
.ya6{bottom:290.562607px;}
.y125{bottom:292.665894px;}
.y18f{bottom:295.105797px;}
.y1d2{bottom:300.113708px;}
.yf0{bottom:304.490845px;}
.y124{bottom:307.665894px;}
.y58{bottom:308.551208px;}
.ya5{bottom:308.562607px;}
.y18e{bottom:308.605797px;}
.y150{bottom:310.783493px;}
.y1d1{bottom:313.613708px;}
.yf7{bottom:315.465889px;}
.yef{bottom:321.994789px;}
.y18d{bottom:322.105797px;}
.y123{bottom:322.665894px;}
.y57{bottom:326.551208px;}
.ya4{bottom:326.562607px;}
.y1d0{bottom:327.113708px;}
.y28{bottom:330.354149px;}
.yf6{bottom:330.465889px;}
.y18c{bottom:335.605797px;}
.yee{bottom:336.994789px;}
.y122{bottom:340.169861px;}
.y1cf{bottom:340.613708px;}
.y56{bottom:344.551208px;}
.ya3{bottom:344.562607px;}
.y14f{bottom:346.783493px;}
.y18b{bottom:349.105797px;}
.y27{bottom:352.854149px;}
.y1ce{bottom:354.113708px;}
.yed{bottom:354.498756px;}
.y121{bottom:355.169861px;}
.y14e{bottom:360.283493px;}
.y55{bottom:362.551208px;}
.y18a{bottom:362.605797px;}
.y1cd{bottom:367.613708px;}
.yec{bottom:369.498756px;}
.y120{bottom:370.169861px;}
.y26{bottom:370.854149px;}
.y14d{bottom:373.783493px;}
.y189{bottom:376.105797px;}
.y54{bottom:380.551208px;}
.ya2{bottom:380.561096px;}
.y1cc{bottom:381.113708px;}
.y11f{bottom:385.169861px;}
.yeb{bottom:387.002700px;}
.y25{bottom:388.854172px;}
.y188{bottom:389.605820px;}
.y1cb{bottom:394.613708px;}
.y53{bottom:398.551208px;}
.ya1{bottom:398.561096px;}
.y14c{bottom:400.783493px;}
.yea{bottom:402.002700px;}
.y11e{bottom:402.673782px;}
.y187{bottom:403.105820px;}
.y24{bottom:406.854172px;}
.y1ca{bottom:408.113708px;}
.y14b{bottom:414.283493px;}
.y52{bottom:416.551208px;}
.y186{bottom:416.605820px;}
.y11d{bottom:417.673782px;}
.ye9{bottom:419.506668px;}
.y1c9{bottom:421.613708px;}
.y23{bottom:424.854172px;}
.y14a{bottom:427.783493px;}
.y185{bottom:430.105820px;}
.y11c{bottom:432.673782px;}
.ye8{bottom:434.506668px;}
.y51{bottom:434.551208px;}
.ya0{bottom:434.559769px;}
.y1c8{bottom:435.113708px;}
.y149{bottom:441.283493px;}
.y184{bottom:443.605820px;}
.y22{bottom:447.354172px;}
.y1c7{bottom:448.613708px;}
.ye7{bottom:449.506668px;}
.y11b{bottom:450.177750px;}
.y50{bottom:452.551208px;}
.y9f{bottom:452.559769px;}
.y148{bottom:454.783493px;}
.y183{bottom:457.105820px;}
.y1c6{bottom:462.113708px;}
.ye6{bottom:464.506668px;}
.y11a{bottom:465.177750px;}
.y21{bottom:465.354172px;}
.y4f{bottom:470.551208px;}
.y182{bottom:470.605820px;}
.y1c5{bottom:475.613708px;}
.y147{bottom:481.783493px;}
.ye5{bottom:482.010590px;}
.y119{bottom:482.681717px;}
.y20{bottom:483.354172px;}
.y181{bottom:484.105820px;}
.y4e{bottom:488.551208px;}
.y9e{bottom:488.558258px;}
.y1c4{bottom:489.113708px;}
.y146{bottom:495.283493px;}
.y180{bottom:497.605820px;}
.y118{bottom:497.681717px;}
.ye4{bottom:499.514557px;}
.y1f{bottom:501.354172px;}
.y1c3{bottom:502.613708px;}
.y4d{bottom:506.551208px;}
.y9d{bottom:506.558258px;}
.y145{bottom:508.783493px;}
.y17f{bottom:511.105820px;}
.y117{bottom:512.681717px;}
.ye3{bottom:514.514557px;}
.y1c2{bottom:516.113708px;}
.y1e{bottom:519.354172px;}
.y144{bottom:522.283493px;}
.y4c{bottom:524.551208px;}
.y9c{bottom:524.558258px;}
.y17e{bottom:524.605820px;}
.y1c1{bottom:529.613708px;}
.y116{bottom:530.185638px;}
.ye2{bottom:532.018478px;}
.y143{bottom:535.783493px;}
.y1d{bottom:537.354172px;}
.y17d{bottom:538.105820px;}
.y4b{bottom:542.551208px;}
.y9b{bottom:542.558258px;}
.y1c0{bottom:543.113708px;}
.y115{bottom:545.185638px;}
.y142{bottom:549.283493px;}
.ye1{bottom:549.522308px;}
.y17c{bottom:551.605820px;}
.y1c{bottom:555.354172px;}
.y1bf{bottom:556.613708px;}
.y114{bottom:560.185638px;}
.y4a{bottom:560.551208px;}
.y9a{bottom:560.558258px;}
.y141{bottom:562.783493px;}
.ye0{bottom:564.522308px;}
.y17b{bottom:565.105820px;}
.y1be{bottom:570.113708px;}
.y1b{bottom:573.354172px;}
.y140{bottom:576.283493px;}
.y113{bottom:577.689468px;}
.y49{bottom:578.551208px;}
.y99{bottom:578.558258px;}
.y17a{bottom:578.605820px;}
.ydf{bottom:579.522308px;}
.y1bd{bottom:583.613708px;}
.y13f{bottom:589.783493px;}
.y179{bottom:592.105820px;}
.y112{bottom:592.689468px;}
.yde{bottom:594.522308px;}
.y1a{bottom:595.854172px;}
.y48{bottom:596.551208px;}
.y1bc{bottom:597.113708px;}
.y13e{bottom:603.283493px;}
.y178{bottom:605.605820px;}
.y111{bottom:607.689468px;}
.y1bb{bottom:610.613708px;}
.ydd{bottom:612.026230px;}
.y19{bottom:613.854172px;}
.y47{bottom:614.551208px;}
.y98{bottom:614.556885px;}
.y177{bottom:619.105820px;}
.y110{bottom:622.689468px;}
.y1ba{bottom:624.113708px;}
.ydc{bottom:627.026230px;}
.y13d{bottom:630.283493px;}
.y18{bottom:631.854172px;}
.y46{bottom:632.551208px;}
.y97{bottom:632.556885px;}
.y176{bottom:632.605820px;}
.y1b9{bottom:637.613708px;}
.y10f{bottom:640.305908px;}
.y13c{bottom:643.783493px;}
.ydb{bottom:644.530197px;}
.y175{bottom:646.105820px;}
.y17{bottom:649.854172px;}
.y45{bottom:650.551208px;}
.y96{bottom:650.556885px;}
.y1b8{bottom:651.113708px;}
.y10e{bottom:655.305908px;}
.y13b{bottom:657.283493px;}
.y88{bottom:657.746979px;}
.yda{bottom:659.530197px;}
.y174{bottom:659.605820px;}
.y1b7{bottom:664.613708px;}
.y16{bottom:667.854172px;}
.y44{bottom:668.551208px;}
.y95{bottom:668.556885px;}
.y13a{bottom:670.783493px;}
.yba{bottom:670.979233px;}
.y10d{bottom:672.809830px;}
.y173{bottom:673.105820px;}
.y87{bottom:675.746979px;}
.yd9{bottom:677.034164px;}
.y1b6{bottom:678.113708px;}
.y139{bottom:684.283493px;}
.y43{bottom:686.551208px;}
.y172{bottom:686.605820px;}
.y10c{bottom:689.309830px;}
.y15{bottom:690.354172px;}
.y1b5{bottom:691.613708px;}
.y86{bottom:693.746979px;}
.yd8{bottom:694.538086px;}
.y138{bottom:697.783493px;}
.y171{bottom:700.105820px;}
.y42{bottom:704.551208px;}
.y94{bottom:704.555420px;}
.y1b4{bottom:705.113708px;}
.y10b{bottom:705.809830px;}
.y14{bottom:708.354172px;}
.yd7{bottom:709.538086px;}
.y137{bottom:711.283493px;}
.y85{bottom:711.746979px;}
.y170{bottom:713.605820px;}
.yc0{bottom:715.712082px;}
.y1b3{bottom:718.613708px;}
.y10a{bottom:722.309830px;}
.y41{bottom:722.551208px;}
.y93{bottom:722.555420px;}
.y13{bottom:726.354172px;}
.yd6{bottom:727.042053px;}
.y16f{bottom:727.105820px;}
.y84{bottom:729.746979px;}
.ybf{bottom:730.712082px;}
.y1b2{bottom:732.113708px;}
.y109{bottom:738.809830px;}
.y40{bottom:740.551208px;}
.y92{bottom:740.555420px;}
.y16e{bottom:740.605820px;}
.y12{bottom:744.354172px;}
.yd5{bottom:744.546021px;}
.y1b1{bottom:745.613708px;}
.ybe{bottom:745.712082px;}
.y83{bottom:747.746979px;}
.y136{bottom:751.039352px;}
.y16d{bottom:754.105820px;}
.y3f{bottom:758.551208px;}
.y1b0{bottom:759.113708px;}
.yd4{bottom:759.546021px;}
.ybd{bottom:760.712082px;}
.y82{bottom:765.746979px;}
.yb8{bottom:765.751190px;}
.y11{bottom:766.854172px;}
.y16c{bottom:767.605820px;}
.yf8{bottom:769.964813px;}
.y1af{bottom:772.613708px;}
.y135{bottom:773.043274px;}
.y3e{bottom:776.551208px;}
.y91{bottom:776.554047px;}
.y108{bottom:777.038086px;}
.yd3{bottom:777.049988px;}
.y16b{bottom:781.105774px;}
.y81{bottom:783.746887px;}
.yb7{bottom:783.751190px;}
.y1ae{bottom:786.113708px;}
.y107{bottom:792.038086px;}
.yd2{bottom:792.049988px;}
.y3d{bottom:794.551208px;}
.y90{bottom:794.554047px;}
.y16a{bottom:794.605774px;}
.y1ad{bottom:799.613708px;}
.y80{bottom:801.746887px;}
.yb6{bottom:801.751190px;}
.yf9{bottom:801.932098px;}
.y134{bottom:803.551208px;}
.y106{bottom:807.038086px;}
.yd1{bottom:807.049988px;}
.y169{bottom:808.105774px;}
.y3c{bottom:812.551208px;}
.y8f{bottom:812.554047px;}
.y1ac{bottom:813.113708px;}
.y133{bottom:817.051208px;}
.y7f{bottom:819.746887px;}
.y168{bottom:821.605774px;}
.y105{bottom:824.542053px;}
.yd0{bottom:824.553864px;}
.y2d{bottom:825.316681px;}
.y1ab{bottom:826.613708px;}
.y3b{bottom:830.551208px;}
.y7e{bottom:837.746887px;}
.yb5{bottom:837.749725px;}
.y104{bottom:839.542053px;}
.ycf{bottom:839.553864px;}
.y1aa{bottom:840.113708px;}
.y2c{bottom:846.316681px;}
.y3a{bottom:848.551208px;}
.y8e{bottom:848.552673px;}
.y1a9{bottom:853.613708px;}
.yce{bottom:854.553864px;}
.y7d{bottom:855.746887px;}
.yb4{bottom:855.749725px;}
.y103{bottom:857.046021px;}
.y39{bottom:866.551208px;}
.y8d{bottom:866.552673px;}
.y1a8{bottom:867.113708px;}
.ycd{bottom:869.553864px;}
.y102{bottom:872.046021px;}
.y7c{bottom:873.746887px;}
.yb3{bottom:873.749725px;}
.y132{bottom:880.051208px;}
.y1a7{bottom:880.613708px;}
.y38{bottom:884.551208px;}
.y8c{bottom:884.552673px;}
.ycc{bottom:884.553864px;}
.y101{bottom:889.549988px;}
.y167{bottom:890.605774px;}
.y7b{bottom:891.746887px;}
.y131{bottom:893.551208px;}
.y1a6{bottom:894.113708px;}
.y2b{bottom:897.316681px;}
.ycb{bottom:902.170349px;}
.y37{bottom:902.551208px;}
.y100{bottom:904.549988px;}
.y130{bottom:907.051208px;}
.y1a5{bottom:907.613708px;}
.y7a{bottom:909.746887px;}
.yb2{bottom:909.748352px;}
.yca{bottom:917.170349px;}
.yff{bottom:919.549988px;}
.y36{bottom:920.551208px;}
.y1a4{bottom:921.113708px;}
.y166{bottom:925.613708px;}
.y79{bottom:927.746887px;}
.yb1{bottom:927.748352px;}
.y1e2{bottom:929.551208px;}
.y12f{bottom:934.051208px;}
.y165{bottom:934.613708px;}
.yc9{bottom:934.674133px;}
.y2a{bottom:936.316681px;}
.yfe{bottom:937.053864px;}
.y35{bottom:938.551208px;}
.y1e1{bottom:943.051208px;}
.y78{bottom:945.746887px;}
.yb0{bottom:945.748352px;}
.y12e{bottom:947.551208px;}
.y1a3{bottom:948.113708px;}
.yc8{bottom:951.174133px;}
.yfd{bottom:952.053864px;}
.y164{bottom:952.613708px;}
.y34{bottom:956.551208px;}
.y12d{bottom:961.051208px;}
.y1a2{bottom:961.613708px;}
.y77{bottom:963.746887px;}
.yaf{bottom:963.748352px;}
.y163{bottom:966.113708px;}
.yfc{bottom:967.053864px;}
.yc7{bottom:967.674133px;}
.y33{bottom:974.551208px;}
.y1a1{bottom:975.113708px;}
.y29{bottom:975.316681px;}
.y162{bottom:979.613708px;}
.y76{bottom:981.746887px;}
.yae{bottom:981.748352px;}
.yc6{bottom:984.174133px;}
.yfb{bottom:984.670349px;}
.y12c{bottom:988.051208px;}
.y161{bottom:988.613708px;}
.y32{bottom:992.551208px;}
.yfa{bottom:999.670349px;}
.y75{bottom:999.746887px;}
.yc5{bottom:1000.674133px;}
.y12b{bottom:1001.551208px;}
.y160{bottom:1002.113708px;}
.y31{bottom:1010.551208px;}
.y1a0{bottom:1015.613708px;}
.yc4{bottom:1017.174133px;}
.y74{bottom:1017.746887px;}
.y15f{bottom:1020.113708px;}
.y66{bottom:1028.551208px;}
.y30{bottom:1028.551392px;}
.y19f{bottom:1029.113708px;}
.y15e{bottom:1033.613708px;}
.yc3{bottom:1033.674133px;}
.y73{bottom:1035.746887px;}
.y1{bottom:1036.426208px;}
.y15d{bottom:1042.613708px;}
.y65{bottom:1046.551208px;}
.y2f{bottom:1046.551392px;}
.yc2{bottom:1050.174133px;}
.yc1{bottom:1052.070740px;}
.y72{bottom:1053.746887px;}
.y19e{bottom:1056.113708px;}
.y15c{bottom:1060.613708px;}
.yc{bottom:1103.110382px;}
.yb{bottom:1114.051208px;}
.ya{bottom:1129.051208px;}
.y2e{bottom:1129.426208px;}
.h19{height:29.452500px;}
.h4{height:39.270000px;}
.h3{height:40.824000px;}
.h8{height:42.075000px;}
.h1a{height:42.840000px;}
.h18{height:43.740000px;}
.h17{height:44.784000px;}
.h14{height:44.880000px;}
.h5{height:45.744000px;}
.h13{height:46.656000px;}
.h11{height:47.472000px;}
.h12{height:47.988281px;}
.h16{height:50.490000px;}
.h15{height:53.406000px;}
.hf{height:53.654399px;}
.he{height:55.860000px;}
.hb{height:56.100000px;}
.ha{height:58.320000px;}
.h10{height:59.388000px;}
.h9{height:61.120200px;}
.hd{height:69.596779px;}
.h7{height:71.000160px;}
.h2{height:78.896517px;}
.h6{height:116.732582px;}
.hc{height:137.088000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:85.039352px;}
.x1{left:91.234200px;}
.x12{left:93.543303px;}
.x5{left:94.789352px;}
.x7{left:97.039352px;}
.x14{left:107.539352px;}
.xc{left:244.385857px;}
.x10{left:245.545052px;}
.x2{left:271.062904px;}
.xa{left:295.073250px;}
.xb{left:361.696198px;}
.xd{left:392.822388px;}
.x8{left:457.086731px;}
.x9{left:469.086731px;}
.x13{left:479.586594px;}
.xe{left:564.415192px;}
.xf{left:719.739899px;}
.x4{left:736.147934px;}
.x11{left:738.661789px;}
.x6{left:744.817657px;}
@media print{
.v4{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.559570pt;}
.v3{vertical-align:23.466471pt;}
.v2{vertical-align:40.651042pt;}
.ls9{letter-spacing:-1.777067pt;}
.lsa{letter-spacing:-0.940800pt;}
.ls3{letter-spacing:-0.933333pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.418133pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000001pt;}
.ls6{letter-spacing:0.000007pt;}
.ls5{letter-spacing:0.000008pt;}
.ls0{letter-spacing:0.000020pt;}
.lsc{letter-spacing:0.000086pt;}
.ls7{letter-spacing:0.000089pt;}
.lsb{letter-spacing:1.045333pt;}
.ls1{letter-spacing:8.320000pt;}
.ws9{word-spacing:-27.136000pt;}
.ws3{word-spacing:-14.054187pt;}
.ws72{word-spacing:-13.328000pt;}
.ws73{word-spacing:-13.066667pt;}
.wsa{word-spacing:-12.848000pt;}
.ws17{word-spacing:-12.282667pt;}
.ws6f{word-spacing:-11.864533pt;}
.ws71{word-spacing:-11.341867pt;}
.ws5{word-spacing:-11.096533pt;}
.ws6{word-spacing:-11.040000pt;}
.ws8{word-spacing:-10.560000pt;}
.ws105{word-spacing:-10.512000pt;}
.ws70{word-spacing:-10.505600pt;}
.ws134{word-spacing:-10.156800pt;}
.ws7{word-spacing:-9.600000pt;}
.wsda{word-spacing:-9.344000pt;}
.wsb{word-spacing:-8.993600pt;}
.wsa9{word-spacing:-8.832000pt;}
.ws4{word-spacing:-8.760000pt;}
.wsd9{word-spacing:-8.640000pt;}
.ws133{word-spacing:-8.280000pt;}
.wsaa{word-spacing:-7.680000pt;}
.ws1{word-spacing:-7.242667pt;}
.ws135{word-spacing:-6.132000pt;}
.ws8a{word-spacing:-5.749333pt;}
.ws16{word-spacing:-5.013333pt;}
.ws62{word-spacing:-4.233600pt;}
.ws114{word-spacing:-4.010667pt;}
.ws14{word-spacing:-2.762667pt;}
.ws15{word-spacing:-2.718027pt;}
.ws6a{word-spacing:-2.142933pt;}
.wsd6{word-spacing:-1.834667pt;}
.ws76{word-spacing:-1.829333pt;}
.wsf8{word-spacing:-1.792000pt;}
.wsd5{word-spacing:-1.706667pt;}
.wsa1{word-spacing:-1.306667pt;}
.ws13{word-spacing:-1.194667pt;}
.wsc3{word-spacing:-0.888533pt;}
.ws78{word-spacing:-0.836267pt;}
.wsc8{word-spacing:-0.365867pt;}
.ws132{word-spacing:-0.313600pt;}
.wsf3{word-spacing:-0.261333pt;}
.ws106{word-spacing:-0.209067pt;}
.ws20{word-spacing:-0.156800pt;}
.wsf9{word-spacing:-0.128000pt;}
.ws24{word-spacing:-0.104533pt;}
.wsf7{word-spacing:-0.048000pt;}
.ws115{word-spacing:-0.042667pt;}
.ws136{word-spacing:-0.040000pt;}
.wsc{word-spacing:0.000000pt;}
.ws95{word-spacing:0.052267pt;}
.ws81{word-spacing:0.104533pt;}
.wsd8{word-spacing:0.128000pt;}
.ws6b{word-spacing:0.156800pt;}
.ws11{word-spacing:0.186667pt;}
.ws36{word-spacing:0.209067pt;}
.ws84{word-spacing:0.261333pt;}
.wsca{word-spacing:0.313600pt;}
.ws4b{word-spacing:0.365867pt;}
.wsa8{word-spacing:0.418133pt;}
.ws12b{word-spacing:0.470400pt;}
.wsc4{word-spacing:0.522667pt;}
.ws103{word-spacing:0.554667pt;}
.ws4a{word-spacing:0.574933pt;}
.ws104{word-spacing:0.597333pt;}
.ws10c{word-spacing:0.679467pt;}
.ws10b{word-spacing:0.731733pt;}
.wsd1{word-spacing:0.784000pt;}
.ws127{word-spacing:0.836267pt;}
.wsd7{word-spacing:0.853333pt;}
.ws85{word-spacing:0.888533pt;}
.ws12{word-spacing:0.933333pt;}
.ws41{word-spacing:1.045333pt;}
.ws10a{word-spacing:1.097600pt;}
.wse{word-spacing:1.120000pt;}
.ws7f{word-spacing:1.149867pt;}
.wsf{word-spacing:1.157333pt;}
.wsd{word-spacing:1.194667pt;}
.ws61{word-spacing:1.202133pt;}
.ws11b{word-spacing:1.254400pt;}
.ws10{word-spacing:1.306667pt;}
.ws4d{word-spacing:1.358933pt;}
.wscb{word-spacing:1.411200pt;}
.wse4{word-spacing:1.463467pt;}
.ws64{word-spacing:1.515733pt;}
.wsbb{word-spacing:1.568000pt;}
.ws46{word-spacing:1.620267pt;}
.ws10d{word-spacing:1.672533pt;}
.ws7d{word-spacing:1.724800pt;}
.ws12d{word-spacing:1.777067pt;}
.ws10f{word-spacing:1.829333pt;}
.ws8c{word-spacing:1.933867pt;}
.ws94{word-spacing:2.038400pt;}
.wscd{word-spacing:2.090667pt;}
.ws9c{word-spacing:2.142933pt;}
.ws7c{word-spacing:2.247467pt;}
.ws58{word-spacing:2.299733pt;}
.ws19{word-spacing:2.346667pt;}
.ws83{word-spacing:2.352000pt;}
.ws68{word-spacing:2.404267pt;}
.ws130{word-spacing:2.561067pt;}
.ws91{word-spacing:2.613333pt;}
.ws5d{word-spacing:2.665600pt;}
.ws117{word-spacing:2.717867pt;}
.ws18{word-spacing:2.730667pt;}
.ws43{word-spacing:2.770133pt;}
.wsb9{word-spacing:2.822400pt;}
.wseb{word-spacing:2.874667pt;}
.ws69{word-spacing:2.926933pt;}
.ws52{word-spacing:2.979200pt;}
.ws32{word-spacing:3.031467pt;}
.ws60{word-spacing:3.083733pt;}
.wsff{word-spacing:3.240533pt;}
.wsc0{word-spacing:3.292800pt;}
.ws66{word-spacing:3.345067pt;}
.ws6c{word-spacing:3.397333pt;}
.ws3f{word-spacing:3.449600pt;}
.ws7a{word-spacing:3.501867pt;}
.wsa6{word-spacing:3.554133pt;}
.ws5c{word-spacing:3.606400pt;}
.ws29{word-spacing:3.658667pt;}
.ws116{word-spacing:3.710933pt;}
.ws30{word-spacing:3.763200pt;}
.ws4e{word-spacing:3.815467pt;}
.ws63{word-spacing:3.867733pt;}
.ws5a{word-spacing:3.920000pt;}
.ws100{word-spacing:3.972267pt;}
.ws108{word-spacing:4.024533pt;}
.ws2f{word-spacing:4.076800pt;}
.ws35{word-spacing:4.129067pt;}
.wsd2{word-spacing:4.181333pt;}
.ws2c{word-spacing:4.233600pt;}
.wsdb{word-spacing:4.285867pt;}
.ws39{word-spacing:4.338133pt;}
.ws7b{word-spacing:4.390400pt;}
.wse6{word-spacing:4.494933pt;}
.ws1d{word-spacing:4.547200pt;}
.ws67{word-spacing:4.599467pt;}
.ws3e{word-spacing:4.704000pt;}
.ws112{word-spacing:4.808533pt;}
.wsc5{word-spacing:4.860800pt;}
.wsf1{word-spacing:4.913067pt;}
.ws129{word-spacing:4.965333pt;}
.wsfa{word-spacing:5.017600pt;}
.wsbf{word-spacing:5.069867pt;}
.ws23{word-spacing:5.122133pt;}
.ws11d{word-spacing:5.226667pt;}
.ws11c{word-spacing:5.278933pt;}
.ws9a{word-spacing:5.331200pt;}
.ws28{word-spacing:5.383467pt;}
.ws5e{word-spacing:5.435733pt;}
.ws3d{word-spacing:5.488000pt;}
.ws4c{word-spacing:5.540267pt;}
.wsa7{word-spacing:5.644800pt;}
.ws101{word-spacing:5.697067pt;}
.ws59{word-spacing:5.749333pt;}
.ws113{word-spacing:5.801600pt;}
.wse7{word-spacing:5.853867pt;}
.ws6e{word-spacing:5.906133pt;}
.wsec{word-spacing:5.958400pt;}
.ws126{word-spacing:6.010667pt;}
.ws123{word-spacing:6.062933pt;}
.ws102{word-spacing:6.115200pt;}
.wsee{word-spacing:6.167467pt;}
.ws97{word-spacing:6.272000pt;}
.ws31{word-spacing:6.324267pt;}
.wse3{word-spacing:6.376533pt;}
.ws119{word-spacing:6.428800pt;}
.ws56{word-spacing:6.533333pt;}
.ws77{word-spacing:6.585600pt;}
.ws51{word-spacing:6.637867pt;}
.wsf2{word-spacing:6.690133pt;}
.ws74{word-spacing:6.794667pt;}
.wsce{word-spacing:6.899200pt;}
.wsb8{word-spacing:6.951467pt;}
.wsa5{word-spacing:7.056000pt;}
.wsed{word-spacing:7.108267pt;}
.wsa0{word-spacing:7.160533pt;}
.wsbc{word-spacing:7.212800pt;}
.ws1a{word-spacing:7.265067pt;}
.ws93{word-spacing:7.369600pt;}
.ws21{word-spacing:7.421867pt;}
.ws1b{word-spacing:7.526400pt;}
.ws12c{word-spacing:7.630933pt;}
.wsef{word-spacing:7.683200pt;}
.wsf6{word-spacing:7.735467pt;}
.ws7e{word-spacing:7.787733pt;}
.ws3a{word-spacing:7.840000pt;}
.wsd4{word-spacing:7.892267pt;}
.ws5f{word-spacing:7.944533pt;}
.ws8d{word-spacing:7.996800pt;}
.wse1{word-spacing:8.049067pt;}
.ws79{word-spacing:8.101333pt;}
.wsba{word-spacing:8.153600pt;}
.ws45{word-spacing:8.205867pt;}
.ws128{word-spacing:8.258133pt;}
.ws1c{word-spacing:8.310400pt;}
.wse5{word-spacing:8.362667pt;}
.wsd3{word-spacing:8.414933pt;}
.wsfb{word-spacing:8.467200pt;}
.ws53{word-spacing:8.519467pt;}
.ws4f{word-spacing:8.571733pt;}
.wscf{word-spacing:8.624000pt;}
.wsbd{word-spacing:8.728533pt;}
.ws98{word-spacing:8.780800pt;}
.ws25{word-spacing:8.885333pt;}
.ws124{word-spacing:8.937600pt;}
.ws109{word-spacing:8.989867pt;}
.ws3b{word-spacing:9.042133pt;}
.ws27{word-spacing:9.094400pt;}
.ws11f{word-spacing:9.146667pt;}
.wsb2{word-spacing:9.251200pt;}
.wsa3{word-spacing:9.303467pt;}
.wsfe{word-spacing:9.355733pt;}
.ws65{word-spacing:9.617067pt;}
.ws9b{word-spacing:9.669333pt;}
.wsc2{word-spacing:9.878400pt;}
.ws2d{word-spacing:9.930667pt;}
.ws89{word-spacing:10.035200pt;}
.wsdf{word-spacing:10.139733pt;}
.ws12e{word-spacing:10.192000pt;}
.ws120{word-spacing:10.244267pt;}
.ws11a{word-spacing:10.296533pt;}
.ws38{word-spacing:10.401067pt;}
.ws82{word-spacing:10.505600pt;}
.ws57{word-spacing:10.610133pt;}
.ws9f{word-spacing:10.662400pt;}
.ws87{word-spacing:10.714667pt;}
.wsea{word-spacing:10.819200pt;}
.ws37{word-spacing:10.923733pt;}
.ws54{word-spacing:10.976000pt;}
.ws44{word-spacing:11.028267pt;}
.ws26{word-spacing:11.080533pt;}
.ws80{word-spacing:11.132800pt;}
.ws86{word-spacing:11.237333pt;}
.ws122{word-spacing:11.289600pt;}
.ws9d{word-spacing:11.341867pt;}
.ws8e{word-spacing:11.394133pt;}
.wse9{word-spacing:11.498667pt;}
.wsaf{word-spacing:11.550933pt;}
.wse8{word-spacing:11.655467pt;}
.ws75{word-spacing:11.707733pt;}
.wsde{word-spacing:11.760000pt;}
.wscc{word-spacing:11.812267pt;}
.ws55{word-spacing:11.969067pt;}
.wsdc{word-spacing:12.073600pt;}
.ws111{word-spacing:12.178133pt;}
.ws8f{word-spacing:12.282667pt;}
.ws107{word-spacing:12.334933pt;}
.wsbe{word-spacing:12.387200pt;}
.ws34{word-spacing:12.439467pt;}
.ws2a{word-spacing:12.544000pt;}
.wsb6{word-spacing:12.648533pt;}
.ws125{word-spacing:12.805333pt;}
.ws2e{word-spacing:12.857600pt;}
.wsf4{word-spacing:12.909867pt;}
.ws12a{word-spacing:12.962133pt;}
.ws121{word-spacing:13.014400pt;}
.wsf0{word-spacing:13.171200pt;}
.wsb1{word-spacing:13.275733pt;}
.wsad{word-spacing:13.328000pt;}
.ws8b{word-spacing:13.380267pt;}
.ws3c{word-spacing:13.537067pt;}
.ws110{word-spacing:13.589333pt;}
.ws6d{word-spacing:13.641600pt;}
.wsb5{word-spacing:13.693867pt;}
.ws33{word-spacing:13.798400pt;}
.ws48{word-spacing:13.850667pt;}
.wsb7{word-spacing:13.902933pt;}
.ws118{word-spacing:14.059733pt;}
.wsb4{word-spacing:14.216533pt;}
.ws22{word-spacing:14.321067pt;}
.ws47{word-spacing:14.425600pt;}
.ws1f{word-spacing:14.634667pt;}
.ws88{word-spacing:14.948267pt;}
.wsae{word-spacing:15.418667pt;}
.wsfd{word-spacing:15.523200pt;}
.ws11e{word-spacing:15.575467pt;}
.ws12f{word-spacing:15.784533pt;}
.ws90{word-spacing:15.836800pt;}
.wsf5{word-spacing:15.941333pt;}
.ws99{word-spacing:15.993600pt;}
.wsdd{word-spacing:16.359467pt;}
.wsb3{word-spacing:16.411733pt;}
.wsc6{word-spacing:16.620800pt;}
.wse0{word-spacing:16.673067pt;}
.ws40{word-spacing:16.777600pt;}
.wsab{word-spacing:16.882133pt;}
.wsac{word-spacing:17.091200pt;}
.wsa2{word-spacing:17.195733pt;}
.wsd0{word-spacing:17.248000pt;}
.ws10e{word-spacing:17.300267pt;}
.wse2{word-spacing:17.718400pt;}
.wsfc{word-spacing:17.979733pt;}
.ws49{word-spacing:18.763733pt;}
.ws131{word-spacing:18.868267pt;}
.ws42{word-spacing:19.077333pt;}
.wsc9{word-spacing:19.756800pt;}
.ws5b{word-spacing:20.540800pt;}
.ws9e{word-spacing:21.481600pt;}
.ws50{word-spacing:21.952000pt;}
.ws2b{word-spacing:22.213333pt;}
.wsb0{word-spacing:22.892800pt;}
.ws96{word-spacing:23.049600pt;}
.ws92{word-spacing:23.833600pt;}
.ws1e{word-spacing:26.133333pt;}
.wsc1{word-spacing:30.262400pt;}
.wsc7{word-spacing:30.419200pt;}
.wsa4{word-spacing:31.725867pt;}
.ws2{word-spacing:1133.960045pt;}
.ws0{word-spacing:1832.670885pt;}
._c{margin-left:-2569.995227pt;}
._13{margin-left:-18.399751pt;}
._10{margin-left:-15.874697pt;}
._f{margin-left:-9.930667pt;}
._25{margin-left:-8.760000pt;}
._9{margin-left:-7.601945pt;}
._b{margin-left:-6.502224pt;}
._7{margin-left:-5.034667pt;}
._5{margin-left:-3.566233pt;}
._2{margin-left:-2.193767pt;}
._1{margin-left:-1.248000pt;}
._0{width:0.970667pt;}
._3{width:2.466933pt;}
._6{width:3.489767pt;}
._a{width:4.422265pt;}
._21{width:6.111781pt;}
._11{width:7.021956pt;}
._27{width:8.371811pt;}
._d{width:9.316953pt;}
._12{width:10.616066pt;}
._20{width:12.015104pt;}
._4{width:13.084265pt;}
._e{width:14.036919pt;}
._8{width:15.142383pt;}
._2e{width:29.440000pt;}
._2d{width:48.960000pt;}
._2c{width:55.240000pt;}
._2a{width:65.280000pt;}
._24{width:72.320000pt;}
._2b{width:81.320000pt;}
._28{width:83.640000pt;}
._26{width:85.206233pt;}
._29{width:88.600000pt;}
._23{width:99.560000pt;}
._22{width:173.854930pt;}
._16{width:195.238925pt;}
._18{width:216.060258pt;}
._1b{width:303.544524pt;}
._1e{width:406.573857pt;}
._1d{width:456.547191pt;}
._1f{width:488.323191pt;}
._1a{width:499.032524pt;}
._14{width:538.328524pt;}
._15{width:546.040524pt;}
._17{width:570.925857pt;}
._1c{width:581.763191pt;}
._19{width:585.140082pt;}
.fse{font-size:28.000000pt;}
.fs1{font-size:37.333333pt;}
.fs4{font-size:40.000000pt;}
.fs9{font-size:41.066666pt;}
.fs2{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fsb{font-size:49.066666pt;}
.fsa{font-size:52.266667pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:54.933333pt;}
.fs8{font-size:58.666667pt;}
.fsc{font-size:64.000000pt;}
.fs3{font-size:66.293333pt;}
.fs0{font-size:69.333333pt;}
.fs7{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:78.994802pt;}
.yb9{bottom:80.000000pt;}
.ybc{bottom:82.267736pt;}
.y64{bottom:82.267868pt;}
.y71{bottom:82.268931pt;}
.y8{bottom:89.661469pt;}
.y19d{bottom:94.316264pt;}
.y15b{bottom:96.252004pt;}
.ybb{bottom:98.267731pt;}
.y63{bottom:98.267863pt;}
.y70{bottom:98.268931pt;}
.y1e0{bottom:98.767731pt;}
.y7{bottom:100.328135pt;}
.y19c{bottom:106.316264pt;}
.y1df{bottom:110.767731pt;}
.y6{bottom:110.994802pt;}
.y15a{bottom:112.252004pt;}
.y8b{bottom:114.267731pt;}
.y62{bottom:114.267863pt;}
.y6f{bottom:114.268931pt;}
.y19b{bottom:118.316264pt;}
.y159{bottom:120.252004pt;}
.y5{bottom:121.661469pt;}
.y1de{bottom:122.767731pt;}
.y8a{bottom:130.267731pt;}
.y61{bottom:130.267863pt;}
.y6e{bottom:130.268931pt;}
.yad{bottom:130.279063pt;}
.y19a{bottom:130.316264pt;}
.y4{bottom:132.328135pt;}
.y1dd{bottom:134.767731pt;}
.y158{bottom:136.252004pt;}
.y199{bottom:142.316264pt;}
.y3{bottom:142.994802pt;}
.y157{bottom:144.252004pt;}
.y89{bottom:146.267731pt;}
.y60{bottom:146.267863pt;}
.yac{bottom:146.279063pt;}
.y1dc{bottom:146.767731pt;}
.y2{bottom:153.661469pt;}
.y198{bottom:154.316264pt;}
.y1db{bottom:158.767731pt;}
.y6d{bottom:162.267731pt;}
.y5f{bottom:162.267863pt;}
.yab{bottom:162.279063pt;}
.y197{bottom:166.316264pt;}
.y156{bottom:168.252004pt;}
.y1da{bottom:170.767741pt;}
.y6c{bottom:178.267741pt;}
.y5e{bottom:178.267863pt;}
.y196{bottom:178.316264pt;}
.y155{bottom:180.251994pt;}
.y1d9{bottom:182.767741pt;}
.y10{bottom:189.710937pt;}
.y195{bottom:190.316264pt;}
.y12a{bottom:193.480794pt;}
.y6b{bottom:194.267741pt;}
.y5d{bottom:194.267863pt;}
.yaa{bottom:194.277873pt;}
.y1d8{bottom:194.767741pt;}
.yf5{bottom:199.540405pt;}
.y194{bottom:202.316264pt;}
.y154{bottom:204.251994pt;}
.y1d7{bottom:206.767741pt;}
.y129{bottom:206.814128pt;}
.yf{bottom:208.377604pt;}
.y6a{bottom:210.267741pt;}
.y5c{bottom:210.267863pt;}
.ya9{bottom:210.277873pt;}
.yf4{bottom:212.873739pt;}
.y193{bottom:214.316264pt;}
.y153{bottom:216.251994pt;}
.y1d6{bottom:218.767741pt;}
.y128{bottom:220.147461pt;}
.ye{bottom:220.377604pt;}
.yf3{bottom:226.207072pt;}
.y69{bottom:226.267741pt;}
.y5b{bottom:226.267863pt;}
.ya8{bottom:226.277873pt;}
.y192{bottom:226.316264pt;}
.y1d5{bottom:230.767741pt;}
.yd{bottom:232.377604pt;}
.y127{bottom:233.480794pt;}
.y191{bottom:238.316264pt;}
.y152{bottom:240.251994pt;}
.yf2{bottom:241.766133pt;}
.y68{bottom:242.267741pt;}
.y5a{bottom:242.267863pt;}
.ya7{bottom:242.277873pt;}
.y1d4{bottom:242.767741pt;}
.y126{bottom:246.814128pt;}
.y190{bottom:250.316264pt;}
.y151{bottom:252.251994pt;}
.y1d3{bottom:254.767741pt;}
.yf1{bottom:257.325195pt;}
.y67{bottom:258.267741pt;}
.y59{bottom:258.267863pt;}
.ya6{bottom:258.277873pt;}
.y125{bottom:260.147461pt;}
.y18f{bottom:262.316264pt;}
.y1d2{bottom:266.767741pt;}
.yf0{bottom:270.658529pt;}
.y124{bottom:273.480794pt;}
.y58{bottom:274.267741pt;}
.ya5{bottom:274.277873pt;}
.y18e{bottom:274.316264pt;}
.y150{bottom:276.251994pt;}
.y1d1{bottom:278.767741pt;}
.yf7{bottom:280.414124pt;}
.yef{bottom:286.217590pt;}
.y18d{bottom:286.316264pt;}
.y123{bottom:286.814128pt;}
.y57{bottom:290.267741pt;}
.ya4{bottom:290.277873pt;}
.y1d0{bottom:290.767741pt;}
.y28{bottom:293.648132pt;}
.yf6{bottom:293.747457pt;}
.y18c{bottom:298.316264pt;}
.yee{bottom:299.550924pt;}
.y122{bottom:302.373210pt;}
.y1cf{bottom:302.767741pt;}
.y56{bottom:306.267741pt;}
.ya3{bottom:306.277873pt;}
.y14f{bottom:308.251994pt;}
.y18b{bottom:310.316264pt;}
.y27{bottom:313.648132pt;}
.y1ce{bottom:314.767741pt;}
.yed{bottom:315.110006pt;}
.y121{bottom:315.706543pt;}
.y14e{bottom:320.251994pt;}
.y55{bottom:322.267741pt;}
.y18a{bottom:322.316264pt;}
.y1cd{bottom:326.767741pt;}
.yec{bottom:328.443339pt;}
.y120{bottom:329.039876pt;}
.y26{bottom:329.648132pt;}
.y14d{bottom:332.251994pt;}
.y189{bottom:334.316264pt;}
.y54{bottom:338.267741pt;}
.ya2{bottom:338.276530pt;}
.y1cc{bottom:338.767741pt;}
.y11f{bottom:342.373210pt;}
.yeb{bottom:344.002400pt;}
.y25{bottom:345.648153pt;}
.y188{bottom:346.316284pt;}
.y1cb{bottom:350.767741pt;}
.y53{bottom:354.267741pt;}
.ya1{bottom:354.276530pt;}
.y14c{bottom:356.251994pt;}
.yea{bottom:357.335733pt;}
.y11e{bottom:357.932251pt;}
.y187{bottom:358.316284pt;}
.y24{bottom:361.648153pt;}
.y1ca{bottom:362.767741pt;}
.y14b{bottom:368.251994pt;}
.y52{bottom:370.267741pt;}
.y186{bottom:370.316284pt;}
.y11d{bottom:371.265584pt;}
.ye9{bottom:372.894816pt;}
.y1c9{bottom:374.767741pt;}
.y23{bottom:377.648153pt;}
.y14a{bottom:380.251994pt;}
.y185{bottom:382.316284pt;}
.y11c{bottom:384.598918pt;}
.ye8{bottom:386.228149pt;}
.y51{bottom:386.267741pt;}
.ya0{bottom:386.275350pt;}
.y1c8{bottom:386.767741pt;}
.y149{bottom:392.251994pt;}
.y184{bottom:394.316284pt;}
.y22{bottom:397.648153pt;}
.y1c7{bottom:398.767741pt;}
.ye7{bottom:399.561483pt;}
.y11b{bottom:400.158000pt;}
.y50{bottom:402.267741pt;}
.y9f{bottom:402.275350pt;}
.y148{bottom:404.251994pt;}
.y183{bottom:406.316284pt;}
.y1c6{bottom:410.767741pt;}
.ye6{bottom:412.894816pt;}
.y11a{bottom:413.491333pt;}
.y21{bottom:413.648153pt;}
.y4f{bottom:418.267741pt;}
.y182{bottom:418.316284pt;}
.y1c5{bottom:422.767741pt;}
.y147{bottom:428.251994pt;}
.ye5{bottom:428.453857pt;}
.y119{bottom:429.050415pt;}
.y20{bottom:429.648153pt;}
.y181{bottom:430.316284pt;}
.y4e{bottom:434.267741pt;}
.y9e{bottom:434.274007pt;}
.y1c4{bottom:434.767741pt;}
.y146{bottom:440.251994pt;}
.y180{bottom:442.316284pt;}
.y118{bottom:442.383748pt;}
.ye4{bottom:444.012939pt;}
.y1f{bottom:445.648153pt;}
.y1c3{bottom:446.767741pt;}
.y4d{bottom:450.267741pt;}
.y9d{bottom:450.274007pt;}
.y145{bottom:452.251994pt;}
.y17f{bottom:454.316284pt;}
.y117{bottom:455.717082pt;}
.ye3{bottom:457.346273pt;}
.y1c2{bottom:458.767741pt;}
.y1e{bottom:461.648153pt;}
.y144{bottom:464.251994pt;}
.y4c{bottom:466.267741pt;}
.y9c{bottom:466.274007pt;}
.y17e{bottom:466.316284pt;}
.y1c1{bottom:470.767741pt;}
.y116{bottom:471.276123pt;}
.ye2{bottom:472.905314pt;}
.y143{bottom:476.251994pt;}
.y1d{bottom:477.648153pt;}
.y17d{bottom:478.316284pt;}
.y4b{bottom:482.267741pt;}
.y9b{bottom:482.274007pt;}
.y1c0{bottom:482.767741pt;}
.y115{bottom:484.609456pt;}
.y142{bottom:488.251994pt;}
.ye1{bottom:488.464274pt;}
.y17c{bottom:490.316284pt;}
.y1c{bottom:493.648153pt;}
.y1bf{bottom:494.767741pt;}
.y114{bottom:497.942790pt;}
.y4a{bottom:498.267741pt;}
.y9a{bottom:498.274007pt;}
.y141{bottom:500.251994pt;}
.ye0{bottom:501.797607pt;}
.y17b{bottom:502.316284pt;}
.y1be{bottom:506.767741pt;}
.y1b{bottom:509.648153pt;}
.y140{bottom:512.251994pt;}
.y113{bottom:513.501750pt;}
.y49{bottom:514.267741pt;}
.y99{bottom:514.274007pt;}
.y17a{bottom:514.316284pt;}
.ydf{bottom:515.130941pt;}
.y1bd{bottom:518.767741pt;}
.y13f{bottom:524.251994pt;}
.y179{bottom:526.316284pt;}
.y112{bottom:526.835083pt;}
.yde{bottom:528.464274pt;}
.y1a{bottom:529.648153pt;}
.y48{bottom:530.267741pt;}
.y1bc{bottom:530.767741pt;}
.y13e{bottom:536.251994pt;}
.y178{bottom:538.316284pt;}
.y111{bottom:540.168416pt;}
.y1bb{bottom:542.767741pt;}
.ydd{bottom:544.023315pt;}
.y19{bottom:545.648153pt;}
.y47{bottom:546.267741pt;}
.y98{bottom:546.272786pt;}
.y177{bottom:550.316284pt;}
.y110{bottom:553.501750pt;}
.y1ba{bottom:554.767741pt;}
.ydc{bottom:557.356649pt;}
.y13d{bottom:560.251994pt;}
.y18{bottom:561.648153pt;}
.y46{bottom:562.267741pt;}
.y97{bottom:562.272786pt;}
.y176{bottom:562.316284pt;}
.y1b9{bottom:566.767741pt;}
.y10f{bottom:569.160807pt;}
.y13c{bottom:572.251994pt;}
.ydb{bottom:572.915731pt;}
.y175{bottom:574.316284pt;}
.y17{bottom:577.648153pt;}
.y45{bottom:578.267741pt;}
.y96{bottom:578.272786pt;}
.y1b8{bottom:578.767741pt;}
.y10e{bottom:582.494141pt;}
.y13b{bottom:584.251994pt;}
.y88{bottom:584.663981pt;}
.yda{bottom:586.249064pt;}
.y174{bottom:586.316284pt;}
.y1b7{bottom:590.767741pt;}
.y16{bottom:593.648153pt;}
.y44{bottom:594.267741pt;}
.y95{bottom:594.272786pt;}
.y13a{bottom:596.251994pt;}
.yba{bottom:596.425985pt;}
.y10d{bottom:598.053182pt;}
.y173{bottom:598.316284pt;}
.y87{bottom:600.663981pt;}
.yd9{bottom:601.808146pt;}
.y1b6{bottom:602.767741pt;}
.y139{bottom:608.251994pt;}
.y43{bottom:610.267741pt;}
.y172{bottom:610.316284pt;}
.y10c{bottom:612.719849pt;}
.y15{bottom:613.648153pt;}
.y1b5{bottom:614.767741pt;}
.y86{bottom:616.663981pt;}
.yd8{bottom:617.367188pt;}
.y138{bottom:620.251994pt;}
.y171{bottom:622.316284pt;}
.y42{bottom:626.267741pt;}
.y94{bottom:626.271484pt;}
.y1b4{bottom:626.767741pt;}
.y10b{bottom:627.386515pt;}
.y14{bottom:629.648153pt;}
.yd7{bottom:630.700521pt;}
.y137{bottom:632.251994pt;}
.y85{bottom:632.663981pt;}
.y170{bottom:634.316284pt;}
.yc0{bottom:636.188517pt;}
.y1b3{bottom:638.767741pt;}
.y10a{bottom:642.053182pt;}
.y41{bottom:642.267741pt;}
.y93{bottom:642.271484pt;}
.y13{bottom:645.648153pt;}
.yd6{bottom:646.259603pt;}
.y16f{bottom:646.316284pt;}
.y84{bottom:648.663981pt;}
.ybf{bottom:649.521851pt;}
.y1b2{bottom:650.767741pt;}
.y109{bottom:656.719849pt;}
.y40{bottom:658.267741pt;}
.y92{bottom:658.271484pt;}
.y16e{bottom:658.316284pt;}
.y12{bottom:661.648153pt;}
.yd5{bottom:661.818685pt;}
.y1b1{bottom:662.767741pt;}
.ybe{bottom:662.855184pt;}
.y83{bottom:664.663981pt;}
.y136{bottom:667.590535pt;}
.y16d{bottom:670.316284pt;}
.y3f{bottom:674.267741pt;}
.y1b0{bottom:674.767741pt;}
.yd4{bottom:675.152018pt;}
.ybd{bottom:676.188517pt;}
.y82{bottom:680.663981pt;}
.yb8{bottom:680.667725pt;}
.y11{bottom:681.648153pt;}
.y16c{bottom:682.316284pt;}
.yf8{bottom:684.413167pt;}
.y1af{bottom:686.767741pt;}
.y135{bottom:687.149577pt;}
.y3e{bottom:690.267741pt;}
.y91{bottom:690.270264pt;}
.y108{bottom:690.700521pt;}
.yd3{bottom:690.711100pt;}
.y16b{bottom:694.316243pt;}
.y81{bottom:696.663900pt;}
.yb7{bottom:696.667725pt;}
.y1ae{bottom:698.767741pt;}
.y107{bottom:704.033854pt;}
.yd2{bottom:704.044434pt;}
.y3d{bottom:706.267741pt;}
.y90{bottom:706.270264pt;}
.y16a{bottom:706.316243pt;}
.y1ad{bottom:710.767741pt;}
.y80{bottom:712.663900pt;}
.yb6{bottom:712.667725pt;}
.yf9{bottom:712.828532pt;}
.y134{bottom:714.267741pt;}
.y106{bottom:717.367188pt;}
.yd1{bottom:717.377767pt;}
.y169{bottom:718.316243pt;}
.y3c{bottom:722.267741pt;}
.y8f{bottom:722.270264pt;}
.y1ac{bottom:722.767741pt;}
.y133{bottom:726.267741pt;}
.y7f{bottom:728.663900pt;}
.y168{bottom:730.316243pt;}
.y105{bottom:732.926270pt;}
.yd0{bottom:732.936768pt;}
.y2d{bottom:733.614827pt;}
.y1ab{bottom:734.767741pt;}
.y3b{bottom:738.267741pt;}
.y7e{bottom:744.663900pt;}
.yb5{bottom:744.666423pt;}
.y104{bottom:746.259603pt;}
.ycf{bottom:746.270101pt;}
.y1aa{bottom:746.767741pt;}
.y2c{bottom:752.281494pt;}
.y3a{bottom:754.267741pt;}
.y8e{bottom:754.269043pt;}
.y1a9{bottom:758.767741pt;}
.yce{bottom:759.603434pt;}
.y7d{bottom:760.663900pt;}
.yb4{bottom:760.666423pt;}
.y103{bottom:761.818685pt;}
.y39{bottom:770.267741pt;}
.y8d{bottom:770.269043pt;}
.y1a8{bottom:770.767741pt;}
.ycd{bottom:772.936768pt;}
.y102{bottom:775.152018pt;}
.y7c{bottom:776.663900pt;}
.yb3{bottom:776.666423pt;}
.y132{bottom:782.267741pt;}
.y1a7{bottom:782.767741pt;}
.y38{bottom:786.267741pt;}
.y8c{bottom:786.269043pt;}
.ycc{bottom:786.270101pt;}
.y101{bottom:790.711100pt;}
.y167{bottom:791.649577pt;}
.y7b{bottom:792.663900pt;}
.y131{bottom:794.267741pt;}
.y1a6{bottom:794.767741pt;}
.y2b{bottom:797.614827pt;}
.ycb{bottom:801.929199pt;}
.y37{bottom:802.267741pt;}
.y100{bottom:804.044434pt;}
.y130{bottom:806.267741pt;}
.y1a5{bottom:806.767741pt;}
.y7a{bottom:808.663900pt;}
.yb2{bottom:808.665202pt;}
.yca{bottom:815.262533pt;}
.yff{bottom:817.377767pt;}
.y36{bottom:818.267741pt;}
.y1a4{bottom:818.767741pt;}
.y166{bottom:822.767741pt;}
.y79{bottom:824.663900pt;}
.yb1{bottom:824.665202pt;}
.y1e2{bottom:826.267741pt;}
.y12f{bottom:830.267741pt;}
.y165{bottom:830.767741pt;}
.yc9{bottom:830.821452pt;}
.y2a{bottom:832.281494pt;}
.yfe{bottom:832.936768pt;}
.y35{bottom:834.267741pt;}
.y1e1{bottom:838.267741pt;}
.y78{bottom:840.663900pt;}
.yb0{bottom:840.665202pt;}
.y12e{bottom:842.267741pt;}
.y1a3{bottom:842.767741pt;}
.yc8{bottom:845.488118pt;}
.yfd{bottom:846.270101pt;}
.y164{bottom:846.767741pt;}
.y34{bottom:850.267741pt;}
.y12d{bottom:854.267741pt;}
.y1a2{bottom:854.767741pt;}
.y77{bottom:856.663900pt;}
.yaf{bottom:856.665202pt;}
.y163{bottom:858.767741pt;}
.yfc{bottom:859.603434pt;}
.yc7{bottom:860.154785pt;}
.y33{bottom:866.267741pt;}
.y1a1{bottom:866.767741pt;}
.y29{bottom:866.948161pt;}
.y162{bottom:870.767741pt;}
.y76{bottom:872.663900pt;}
.yae{bottom:872.665202pt;}
.yc6{bottom:874.821452pt;}
.yfb{bottom:875.262533pt;}
.y12c{bottom:878.267741pt;}
.y161{bottom:878.767741pt;}
.y32{bottom:882.267741pt;}
.yfa{bottom:888.595866pt;}
.y75{bottom:888.663900pt;}
.yc5{bottom:889.488118pt;}
.y12b{bottom:890.267741pt;}
.y160{bottom:890.767741pt;}
.y31{bottom:898.267741pt;}
.y1a0{bottom:902.767741pt;}
.yc4{bottom:904.154785pt;}
.y74{bottom:904.663900pt;}
.y15f{bottom:906.767741pt;}
.y66{bottom:914.267741pt;}
.y30{bottom:914.267904pt;}
.y19f{bottom:914.767741pt;}
.y15e{bottom:918.767741pt;}
.yc3{bottom:918.821452pt;}
.y73{bottom:920.663900pt;}
.y1{bottom:921.267741pt;}
.y15d{bottom:926.767741pt;}
.y65{bottom:930.267741pt;}
.y2f{bottom:930.267904pt;}
.yc2{bottom:933.488118pt;}
.yc1{bottom:935.173991pt;}
.y72{bottom:936.663900pt;}
.y19e{bottom:938.767741pt;}
.y15c{bottom:942.767741pt;}
.yc{bottom:980.542562pt;}
.yb{bottom:990.267741pt;}
.ya{bottom:1003.601074pt;}
.y2e{bottom:1003.934408pt;}
.h19{height:26.180000pt;}
.h4{height:34.906667pt;}
.h3{height:36.288000pt;}
.h8{height:37.400000pt;}
.h1a{height:38.080000pt;}
.h18{height:38.880000pt;}
.h17{height:39.808000pt;}
.h14{height:39.893333pt;}
.h5{height:40.661333pt;}
.h13{height:41.472000pt;}
.h11{height:42.197333pt;}
.h12{height:42.656250pt;}
.h16{height:44.880000pt;}
.h15{height:47.472000pt;}
.hf{height:47.692799pt;}
.he{height:49.653333pt;}
.hb{height:49.866667pt;}
.ha{height:51.840000pt;}
.h10{height:52.789333pt;}
.h9{height:54.329067pt;}
.hd{height:61.863804pt;}
.h7{height:63.111253pt;}
.h2{height:70.130237pt;}
.h6{height:103.762295pt;}
.hc{height:121.856000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.590535pt;}
.x1{left:81.097066pt;}
.x12{left:83.149602pt;}
.x5{left:84.257202pt;}
.x7{left:86.257202pt;}
.x14{left:95.590535pt;}
.xc{left:217.231873pt;}
.x10{left:218.262268pt;}
.x2{left:240.944804pt;}
.xa{left:262.287333pt;}
.xb{left:321.507731pt;}
.xd{left:349.175456pt;}
.x8{left:406.299316pt;}
.x9{left:416.965983pt;}
.x13{left:426.299194pt;}
.xe{left:501.702393pt;}
.xf{left:639.768799pt;}
.x4{left:654.353719pt;}
.x11{left:656.588257pt;}
.x6{left:662.060140pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  