
    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_3411fa1978fbf86711b80c89.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898030;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_b5303dda9342175728c97ddb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.868000;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_4e84f36ae20f45ae961e5f5a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.159668;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_5a47e8c9ccafdd15a94f307e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.990234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_97575c1051c41780c7f00237.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.989746;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_7aeb07d2d8c6f545a91254fe.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.986816;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_8900982f011f9dc0828a9ea6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.158691;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_a829143f092cd9dabc7a5bac.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.986816;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_cc3ff7ea3b233ce7844c371d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.986816;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_4fa8cc539ec77c4ccd0b767b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.032000;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_b766d83280503d604719f819.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.982910;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_a3264fd233f73519c68e6c54.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.975098;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_3411fa1978fbf86711b80c89.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.898030;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_b5303dda9342175728c97ddb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.868000;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_7a710cada8c69ce0a4b2d0a3.woff2')format("woff");}.fff{font-family:fff;line-height:1.159668;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_97ed805d59adb59c758fb815.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.159668;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_0ecb4490132ca8cf21cb006c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.989746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_6bd7149fedf9b275d324911d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.989746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_0b45ed700f61d92590a71cfd.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.986816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_45d8db63d2e7aa8781fcfabf.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.988770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_85316eff7b78b4c3e3c504a6.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.988770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_3411fa1978fbf86711b80c89.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.898030;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_b5303dda9342175728c97ddb.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.868000;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:ff18;src:url('chunks/assets/font_54c1031243b13fbbd9458b83.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.159668;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;}
.m4{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204545,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.211364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211364,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213636,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.213638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213638,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.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);}
.m7{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);}
.v1{vertical-align:-5.088000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.065200px;}
.v3{vertical-align:17.982000px;}
.v2{vertical-align:19.780200px;}
.ls16{letter-spacing:-1.800000px;}
.ls15{letter-spacing:-1.200000px;}
.ls17{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-1.020000px;}
.lsa{letter-spacing:-0.761864px;}
.ls13{letter-spacing:-0.600000px;}
.ls14{letter-spacing:-0.480000px;}
.ls6{letter-spacing:-0.240000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.005490px;}
.ls3{letter-spacing:0.010836px;}
.ls10{letter-spacing:0.158400px;}
.lsf{letter-spacing:0.211200px;}
.lsc{letter-spacing:0.264000px;}
.lsd{letter-spacing:0.369600px;}
.ls11{letter-spacing:0.422400px;}
.ls9{letter-spacing:0.475200px;}
.lse{letter-spacing:0.580800px;}
.lsb{letter-spacing:0.594000px;}
.ls1{letter-spacing:0.671551px;}
.ls0{letter-spacing:0.857764px;}
.ls12{letter-spacing:1.056000px;}
.ls8{letter-spacing:2.019600px;}
.ls7{letter-spacing:2.376000px;}
.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;}
}
.ws0{word-spacing:-19.965000px;}
.wsc6{word-spacing:-14.040000px;}
.ws8f{word-spacing:-13.980000px;}
.ws2{word-spacing:-13.800000px;}
.ws1{word-spacing:-13.020000px;}
.ws6{word-spacing:-12.672000px;}
.wsc7{word-spacing:-12.582000px;}
.ws5{word-spacing:-12.460800px;}
.ws4{word-spacing:-12.355200px;}
.ws7{word-spacing:-12.302400px;}
.ws8{word-spacing:-12.249600px;}
.wsc8{word-spacing:-12.180000px;}
.wsc5{word-spacing:-11.502000px;}
.ws3{word-spacing:-7.341602px;}
.wsd5{word-spacing:-2.760000px;}
.ws66{word-spacing:-2.640000px;}
.wsa5{word-spacing:-2.580000px;}
.wsbc{word-spacing:-2.520000px;}
.wsab{word-spacing:-2.460000px;}
.ws99{word-spacing:-2.400000px;}
.ws9b{word-spacing:-2.220000px;}
.ws97{word-spacing:-2.160000px;}
.wsb{word-spacing:-2.040000px;}
.ws37{word-spacing:-1.998000px;}
.ws78{word-spacing:-1.980000px;}
.wsd0{word-spacing:-1.920000px;}
.ws22{word-spacing:-1.800000px;}
.wsca{word-spacing:-1.680000px;}
.ws31{word-spacing:-1.620000px;}
.ws69{word-spacing:-1.597200px;}
.ws36{word-spacing:-1.566000px;}
.ws9d{word-spacing:-1.500000px;}
.ws7e{word-spacing:-1.320000px;}
.ws62{word-spacing:-1.260000px;}
.ws2f{word-spacing:-1.188000px;}
.wsbe{word-spacing:-1.152000px;}
.ws9a{word-spacing:-1.080000px;}
.ws45{word-spacing:-1.020000px;}
.wscf{word-spacing:-0.960000px;}
.ws7c{word-spacing:-0.900000px;}
.ws26{word-spacing:-0.840000px;}
.ws39{word-spacing:-0.810000px;}
.ws4c{word-spacing:-0.780000px;}
.ws81{word-spacing:-0.720000px;}
.ws4f{word-spacing:-0.660000px;}
.ws3f{word-spacing:-0.594000px;}
.ws87{word-spacing:-0.576000px;}
.ws47{word-spacing:-0.540000px;}
.ws34{word-spacing:-0.486000px;}
.ws49{word-spacing:-0.480000px;}
.ws3e{word-spacing:-0.475200px;}
.ws40{word-spacing:-0.422400px;}
.ws1c{word-spacing:-0.420000px;}
.ws51{word-spacing:-0.300000px;}
.ws35{word-spacing:-0.270000px;}
.ws98{word-spacing:-0.180000px;}
.ws8d{word-spacing:-0.144000px;}
.wse2{word-spacing:-0.060000px;}
.ws9{word-spacing:0.000000px;}
.ws5a{word-spacing:0.060000px;}
.ws93{word-spacing:0.180000px;}
.ws3d{word-spacing:0.356400px;}
.wsd6{word-spacing:0.360000px;}
.wsc3{word-spacing:0.480000px;}
.wse{word-spacing:0.540000px;}
.ws1a{word-spacing:0.600000px;}
.ws91{word-spacing:0.660000px;}
.ws30{word-spacing:0.756000px;}
.ws86{word-spacing:0.816000px;}
.ws1f{word-spacing:0.840000px;}
.ws38{word-spacing:0.972000px;}
.ws9f{word-spacing:1.140000px;}
.ws70{word-spacing:1.200000px;}
.wsc0{word-spacing:1.248000px;}
.ws7f{word-spacing:1.260000px;}
.ws1d{word-spacing:1.500000px;}
.wsa{word-spacing:1.560000px;}
.ws68{word-spacing:1.680000px;}
.wsa6{word-spacing:1.740000px;}
.ws3a{word-spacing:1.782000px;}
.ws79{word-spacing:1.800000px;}
.ws3b{word-spacing:1.836000px;}
.ws42{word-spacing:1.860000px;}
.wsa0{word-spacing:1.980000px;}
.ws64{word-spacing:2.040000px;}
.wse9{word-spacing:2.160000px;}
.wsde{word-spacing:2.220000px;}
.ws92{word-spacing:2.280000px;}
.wse1{word-spacing:2.400000px;}
.wsbf{word-spacing:2.448000px;}
.wsc1{word-spacing:2.496000px;}
.wsb7{word-spacing:2.520000px;}
.ws8e{word-spacing:2.592000px;}
.wsb9{word-spacing:2.640000px;}
.ws88{word-spacing:2.736000px;}
.ws20{word-spacing:2.820000px;}
.ws16{word-spacing:2.880000px;}
.ws59{word-spacing:2.940000px;}
.ws89{word-spacing:2.976000px;}
.ws24{word-spacing:3.000000px;}
.ws33{word-spacing:3.078000px;}
.wsd7{word-spacing:3.120000px;}
.ws4b{word-spacing:3.180000px;}
.wsa2{word-spacing:3.240000px;}
.wsb6{word-spacing:3.480000px;}
.ws90{word-spacing:3.540000px;}
.ws50{word-spacing:3.600000px;}
.wsa8{word-spacing:3.660000px;}
.ws6f{word-spacing:3.840000px;}
.wsc2{word-spacing:3.888000px;}
.ws9e{word-spacing:3.960000px;}
.ws29{word-spacing:4.020000px;}
.ws19{word-spacing:4.080000px;}
.ws57{word-spacing:4.200000px;}
.wsb3{word-spacing:4.320000px;}
.wsd2{word-spacing:4.380000px;}
.wsad{word-spacing:4.500000px;}
.ws23{word-spacing:4.680000px;}
.ws61{word-spacing:4.800000px;}
.ws21{word-spacing:4.920000px;}
.ws32{word-spacing:5.022000px;}
.ws17{word-spacing:5.040000px;}
.wsdc{word-spacing:5.100000px;}
.ws8b{word-spacing:5.280000px;}
.wsba{word-spacing:5.400000px;}
.wsb2{word-spacing:5.460000px;}
.ws56{word-spacing:5.520000px;}
.wsea{word-spacing:5.568000px;}
.ws7d{word-spacing:5.580000px;}
.ws82{word-spacing:5.760000px;}
.wsaa{word-spacing:5.820000px;}
.ws75{word-spacing:5.940000px;}
.ws67{word-spacing:6.000000px;}
.wsaf{word-spacing:6.060000px;}
.ws8a{word-spacing:6.096000px;}
.ws3c{word-spacing:6.102000px;}
.ws8c{word-spacing:6.144000px;}
.wsf{word-spacing:6.300000px;}
.ws6e{word-spacing:6.360000px;}
.ws14{word-spacing:6.420000px;}
.ws10{word-spacing:6.480000px;}
.ws2d{word-spacing:6.534000px;}
.ws2e{word-spacing:6.588000px;}
.wsac{word-spacing:6.600000px;}
.ws5e{word-spacing:6.660000px;}
.ws12{word-spacing:6.720000px;}
.wsa3{word-spacing:6.780000px;}
.ws94{word-spacing:6.900000px;}
.ws77{word-spacing:6.960000px;}
.wsb4{word-spacing:7.080000px;}
.ws55{word-spacing:7.200000px;}
.ws6d{word-spacing:7.260000px;}
.ws63{word-spacing:7.440000px;}
.wsce{word-spacing:7.500000px;}
.ws44{word-spacing:7.620000px;}
.ws76{word-spacing:7.680000px;}
.ws5c{word-spacing:7.740000px;}
.ws7a{word-spacing:7.800000px;}
.ws11{word-spacing:7.860000px;}
.ws1b{word-spacing:7.980000px;}
.ws60{word-spacing:8.100000px;}
.wsbb{word-spacing:8.160000px;}
.ws2b{word-spacing:8.208000px;}
.ws95{word-spacing:8.220000px;}
.wsa4{word-spacing:8.280000px;}
.wsd9{word-spacing:8.400000px;}
.wsb5{word-spacing:8.520000px;}
.ws52{word-spacing:8.580000px;}
.ws5f{word-spacing:8.640000px;}
.ws80{word-spacing:8.700000px;}
.ws72{word-spacing:8.940000px;}
.wsc{word-spacing:9.000000px;}
.ws6c{word-spacing:9.060000px;}
.ws4a{word-spacing:9.180000px;}
.wsae{word-spacing:9.300000px;}
.ws13{word-spacing:9.420000px;}
.ws53{word-spacing:9.480000px;}
.ws96{word-spacing:9.660000px;}
.wsa9{word-spacing:9.720000px;}
.ws43{word-spacing:9.900000px;}
.wse3{word-spacing:9.960000px;}
.ws71{word-spacing:10.560000px;}
.wsb8{word-spacing:10.620000px;}
.wsa7{word-spacing:10.680000px;}
.ws7b{word-spacing:10.980000px;}
.ws2c{word-spacing:11.016000px;}
.wsda{word-spacing:11.520000px;}
.wscd{word-spacing:11.580000px;}
.ws65{word-spacing:11.640000px;}
.ws4d{word-spacing:11.700000px;}
.ws58{word-spacing:11.820000px;}
.ws15{word-spacing:11.880000px;}
.ws6b{word-spacing:12.000000px;}
.ws46{word-spacing:12.060000px;}
.wsd{word-spacing:12.180000px;}
.wsc9{word-spacing:12.240000px;}
.wse0{word-spacing:12.360000px;}
.wse6{word-spacing:12.480000px;}
.wsd8{word-spacing:12.600000px;}
.ws25{word-spacing:12.660000px;}
.ws2a{word-spacing:12.744000px;}
.wsb0{word-spacing:12.780000px;}
.ws4e{word-spacing:13.020000px;}
.ws73{word-spacing:13.500000px;}
.wsdf{word-spacing:13.680000px;}
.ws1e{word-spacing:13.800000px;}
.ws85{word-spacing:13.920000px;}
.ws6a{word-spacing:14.220000px;}
.wscc{word-spacing:14.700000px;}
.wscb{word-spacing:14.760000px;}
.ws83{word-spacing:15.000000px;}
.wsa1{word-spacing:15.180000px;}
.ws54{word-spacing:15.300000px;}
.ws27{word-spacing:15.360000px;}
.wsd4{word-spacing:15.480000px;}
.ws9c{word-spacing:16.380000px;}
.ws18{word-spacing:16.500000px;}
.ws48{word-spacing:16.860000px;}
.wse5{word-spacing:16.920000px;}
.wsb1{word-spacing:17.940000px;}
.ws74{word-spacing:18.300000px;}
.ws28{word-spacing:18.540000px;}
.wsd3{word-spacing:19.080000px;}
.ws84{word-spacing:19.800000px;}
.wsd1{word-spacing:19.980000px;}
.ws5b{word-spacing:20.040000px;}
.wsbd{word-spacing:21.060000px;}
.ws5d{word-spacing:27.720000px;}
.wsdb{word-spacing:29.280000px;}
.wse7{word-spacing:30.180000px;}
.wse8{word-spacing:30.300000px;}
.wsdd{word-spacing:32.040000px;}
.wse4{word-spacing:33.540000px;}
.ws41{word-spacing:1632.862800px;}
.wsc4{word-spacing:1640.014800px;}
._1a{margin-left:-13.617600px;}
._19{margin-left:-10.492320px;}
._e{margin-left:-9.123840px;}
._15{margin-left:-6.186000px;}
._f{margin-left:-4.939200px;}
._4{margin-left:-3.774000px;}
._b{margin-left:-2.646000px;}
._0{margin-left:-1.566000px;}
._1{width:1.406400px;}
._3{width:3.132000px;}
._c{width:4.366200px;}
._d{width:5.931600px;}
._13{width:7.068000px;}
._12{width:8.226000px;}
._14{width:10.116000px;}
._16{width:11.316000px;}
._5{width:12.546000px;}
._10{width:16.170000px;}
._17{width:17.616000px;}
._18{width:19.104000px;}
._11{width:21.210000px;}
._8{width:59.616000px;}
._2{width:108.031200px;}
._9{width:203.364000px;}
._a{width:1240.650000px;}
._6{width:1443.042000px;}
._7{width:1572.102000px;}
.fc3{color:rgb(128,128,128);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(39,91,155);}
.fc0{color:rgb(70,69,69);}
.fs8{font-size:30.782400px;}
.fs7{font-size:31.482000px;}
.fs6{font-size:34.630200px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:52.800000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.400000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:72.600000px;}
.fs4{font-size:118.800000px;}
.y0{bottom:0.000000px;}
.y59{bottom:24.138750px;}
.y2{bottom:24.992250px;}
.yd5{bottom:25.410750px;}
.y1b{bottom:63.684900px;}
.ye{bottom:63.729900px;}
.y8d{bottom:63.752250px;}
.yc4{bottom:63.770550px;}
.yfd{bottom:63.784050px;}
.y138{bottom:63.800400px;}
.yea{bottom:63.824700px;}
.y73{bottom:63.977250px;}
.y137{bottom:81.800400px;}
.y8c{bottom:81.827250px;}
.yfc{bottom:81.934050px;}
.ye9{bottom:81.974700px;}
.y72{bottom:81.977250px;}
.yc3{bottom:82.040550px;}
.y27{bottom:82.509900px;}
.yd{bottom:82.539900px;}
.y1a{bottom:82.554900px;}
.y136{bottom:99.800400px;}
.y8b{bottom:99.902250px;}
.y71{bottom:99.977250px;}
.yfb{bottom:100.084050px;}
.ye8{bottom:100.124700px;}
.yc2{bottom:100.310550px;}
.y26{bottom:101.289900px;}
.yc{bottom:101.349900px;}
.y19{bottom:101.424900px;}
.y135{bottom:117.800400px;}
.y70{bottom:117.977250px;}
.ye7{bottom:118.274700px;}
.yc1{bottom:118.580550px;}
.y25{bottom:120.069900px;}
.yb{bottom:120.159900px;}
.y18{bottom:120.294900px;}
.y134{bottom:135.800400px;}
.y6f{bottom:135.977250px;}
.y8a{bottom:136.052250px;}
.yfa{bottom:136.388550px;}
.ye6{bottom:136.424700px;}
.yc0{bottom:136.850550px;}
.y24{bottom:138.849900px;}
.ya{bottom:138.969900px;}
.y17{bottom:139.164900px;}
.y133{bottom:153.800400px;}
.y6e{bottom:153.977250px;}
.y89{bottom:154.127250px;}
.ye5{bottom:154.574700px;}
.ybf{bottom:155.120550px;}
.y23{bottom:157.629900px;}
.y9{bottom:157.779900px;}
.y16{bottom:158.034900px;}
.y132{bottom:171.800400px;}
.y6d{bottom:171.977250px;}
.y88{bottom:172.202250px;}
.ye4{bottom:172.724700px;}
.yf9{bottom:172.769700px;}
.ybe{bottom:173.390550px;}
.y22{bottom:176.409900px;}
.y8{bottom:176.589900px;}
.y15{bottom:176.904900px;}
.y131{bottom:189.800400px;}
.y6c{bottom:189.977250px;}
.y87{bottom:190.277250px;}
.ye3{bottom:190.874700px;}
.yf8{bottom:190.919700px;}
.ybd{bottom:191.660550px;}
.y21{bottom:195.189900px;}
.y7{bottom:195.399900px;}
.y14{bottom:195.774900px;}
.y130{bottom:207.800400px;}
.y86{bottom:208.352250px;}
.ye2{bottom:209.024700px;}
.yf7{bottom:209.069700px;}
.ybc{bottom:209.930550px;}
.y20{bottom:213.969900px;}
.y6{bottom:214.209900px;}
.y13{bottom:214.644900px;}
.y12f{bottom:225.800400px;}
.y6b{bottom:225.977250px;}
.y85{bottom:226.427250px;}
.ye1{bottom:227.174700px;}
.yf6{bottom:227.219700px;}
.ybb{bottom:228.200550px;}
.y1f{bottom:232.749900px;}
.y5{bottom:233.019900px;}
.y12{bottom:233.514900px;}
.y15e{bottom:243.433650px;}
.y150{bottom:243.442200px;}
.y191{bottom:243.449550px;}
.y12e{bottom:243.800400px;}
.y84{bottom:244.502250px;}
.ye0{bottom:245.324700px;}
.yf5{bottom:245.369700px;}
.yba{bottom:246.470550px;}
.y1e{bottom:251.529900px;}
.y4{bottom:251.829900px;}
.y11{bottom:252.384900px;}
.y190{bottom:259.661550px;}
.y15d{bottom:261.493650px;}
.y14f{bottom:261.547200px;}
.y12d{bottom:261.800400px;}
.y83{bottom:262.577250px;}
.ydf{bottom:263.474700px;}
.yf4{bottom:263.519700px;}
.y6a{bottom:263.777250px;}
.y1d{bottom:270.309900px;}
.y10{bottom:271.254900px;}
.y18f{bottom:277.736550px;}
.y15c{bottom:279.553650px;}
.y14e{bottom:279.652200px;}
.y12c{bottom:279.800400px;}
.y82{bottom:280.652250px;}
.yde{bottom:281.624700px;}
.yf3{bottom:281.669700px;}
.y69{bottom:281.777250px;}
.yb9{bottom:283.008750px;}
.y1c{bottom:289.089900px;}
.y3{bottom:289.440000px;}
.yf{bottom:290.124900px;}
.y18e{bottom:295.811550px;}
.y15b{bottom:297.613650px;}
.y14d{bottom:297.757200px;}
.y12b{bottom:297.800400px;}
.y81{bottom:298.727250px;}
.ydd{bottom:299.774700px;}
.y68{bottom:299.777250px;}
.yf2{bottom:299.819700px;}
.y18d{bottom:313.886550px;}
.y15a{bottom:315.673650px;}
.y12a{bottom:315.800400px;}
.y14c{bottom:315.862200px;}
.y80{bottom:316.802250px;}
.y67{bottom:317.777250px;}
.ydc{bottom:317.924700px;}
.yf1{bottom:317.969700px;}
.yb8{bottom:319.516200px;}
.y2b{bottom:322.712250px;}
.y18c{bottom:331.961550px;}
.y159{bottom:333.733650px;}
.y7f{bottom:334.877250px;}
.y66{bottom:335.777250px;}
.ydb{bottom:336.074700px;}
.yf0{bottom:336.119700px;}
.yb7{bottom:337.786200px;}
.y2a{bottom:338.912250px;}
.y18b{bottom:350.036550px;}
.y158{bottom:351.793650px;}
.y129{bottom:351.803400px;}
.y14b{bottom:352.068600px;}
.y7e{bottom:352.952250px;}
.y65{bottom:353.777250px;}
.yda{bottom:354.224700px;}
.yef{bottom:354.269700px;}
.y29{bottom:355.112250px;}
.yb6{bottom:356.056200px;}
.y18a{bottom:368.111550px;}
.y7d{bottom:371.027250px;}
.y28{bottom:371.312250px;}
.y64{bottom:371.777250px;}
.yd9{bottom:372.374700px;}
.yee{bottom:372.419700px;}
.yb5{bottom:374.326200px;}
.y189{bottom:386.186550px;}
.y157{bottom:387.908400px;}
.y7c{bottom:389.102250px;}
.y128{bottom:389.674050px;}
.y63{bottom:389.777250px;}
.y14a{bottom:390.060300px;}
.yd8{bottom:390.524700px;}
.yed{bottom:390.569700px;}
.yb4{bottom:392.596200px;}
.y188{bottom:404.261550px;}
.y7b{bottom:407.177250px;}
.y127{bottom:407.674050px;}
.y62{bottom:407.777250px;}
.y44{bottom:408.151350px;}
.y149{bottom:408.165300px;}
.yd7{bottom:408.674700px;}
.yec{bottom:408.719700px;}
.yb3{bottom:410.866200px;}
.y187{bottom:422.336550px;}
.y43{bottom:424.648350px;}
.y7a{bottom:425.252250px;}
.y126{bottom:425.674050px;}
.y61{bottom:425.777250px;}
.y156{bottom:425.812500px;}
.y148{bottom:426.270300px;}
.yd6{bottom:426.824700px;}
.yeb{bottom:426.869700px;}
.yb2{bottom:429.136200px;}
.y186{bottom:440.411550px;}
.y40{bottom:441.145350px;}
.y79{bottom:443.327250px;}
.y125{bottom:443.674050px;}
.y60{bottom:443.777250px;}
.y155{bottom:443.872500px;}
.y147{bottom:444.375300px;}
.yb1{bottom:447.406200px;}
.y3f{bottom:457.642350px;}
.y42{bottom:458.155350px;}
.y185{bottom:458.486550px;}
.y141{bottom:459.363900px;}
.y78{bottom:461.402250px;}
.y124{bottom:461.674050px;}
.y5f{bottom:461.777250px;}
.y154{bottom:461.932500px;}
.y146{bottom:462.480300px;}
.yb0{bottom:465.676200px;}
.y140{bottom:473.763900px;}
.y41{bottom:474.652350px;}
.y184{bottom:476.561550px;}
.y77{bottom:479.477250px;}
.y123{bottom:479.674050px;}
.y5e{bottom:479.777250px;}
.y153{bottom:479.992500px;}
.y145{bottom:480.585300px;}
.yaf{bottom:483.946200px;}
.y13f{bottom:488.163900px;}
.y3e{bottom:491.149350px;}
.y183{bottom:494.636550px;}
.y76{bottom:497.552250px;}
.y122{bottom:497.674050px;}
.y5d{bottom:497.777250px;}
.y152{bottom:498.052500px;}
.y144{bottom:498.690300px;}
.yae{bottom:502.216200px;}
.y13e{bottom:502.563900px;}
.y3d{bottom:507.646350px;}
.y182{bottom:512.711550px;}
.y75{bottom:515.627250px;}
.y121{bottom:515.674050px;}
.y5c{bottom:515.777250px;}
.y143{bottom:516.795300px;}
.y13d{bottom:516.963900px;}
.yad{bottom:520.486200px;}
.y3c{bottom:524.143350px;}
.y181{bottom:530.786550px;}
.y13c{bottom:531.363900px;}
.y120{bottom:533.674050px;}
.y74{bottom:533.702250px;}
.y5b{bottom:533.777250px;}
.y151{bottom:534.167250px;}
.y142{bottom:534.900300px;}
.yac{bottom:538.756200px;}
.y3b{bottom:540.640350px;}
.y13b{bottom:545.763900px;}
.y180{bottom:548.861550px;}
.y11f{bottom:551.674050px;}
.y5a{bottom:551.777250px;}
.yab{bottom:557.026200px;}
.y3a{bottom:557.137350px;}
.y13a{bottom:560.163900px;}
.y17f{bottom:566.936550px;}
.y19f{bottom:567.439350px;}
.y11e{bottom:569.674050px;}
.y39{bottom:573.634350px;}
.y139{bottom:574.563900px;}
.yaa{bottom:575.296200px;}
.y19e{bottom:581.839350px;}
.yd3{bottom:584.316300px;}
.y17e{bottom:585.011550px;}
.y11d{bottom:587.674050px;}
.y38{bottom:590.131350px;}
.ya9{bottom:593.566200px;}
.y19d{bottom:596.239350px;}
.yd2{bottom:598.716300px;}
.y17d{bottom:603.086550px;}
.y11c{bottom:605.674050px;}
.y37{bottom:606.628350px;}
.y19c{bottom:610.639350px;}
.ya8{bottom:611.836200px;}
.yd1{bottom:613.116300px;}
.y17c{bottom:621.161550px;}
.y36{bottom:623.125350px;}
.y11b{bottom:623.674050px;}
.y19b{bottom:625.039350px;}
.yd0{bottom:627.516300px;}
.ya7{bottom:630.106200px;}
.y17b{bottom:639.236550px;}
.y19a{bottom:639.439350px;}
.y35{bottom:639.622350px;}
.y11a{bottom:641.674050px;}
.ycf{bottom:641.916300px;}
.ya6{bottom:648.376200px;}
.y199{bottom:653.839350px;}
.y34{bottom:656.119350px;}
.yce{bottom:656.316300px;}
.y17a{bottom:657.308700px;}
.y119{bottom:659.674050px;}
.ya5{bottom:666.646200px;}
.y198{bottom:668.239350px;}
.ycd{bottom:670.716300px;}
.y33{bottom:672.616350px;}
.y179{bottom:675.346350px;}
.y118{bottom:677.674050px;}
.y197{bottom:682.639350px;}
.ya4{bottom:684.916200px;}
.ycc{bottom:685.116300px;}
.y32{bottom:689.113350px;}
.y178{bottom:693.421350px;}
.y117{bottom:695.674050px;}
.y196{bottom:697.039350px;}
.ycb{bottom:699.516300px;}
.ya3{bottom:703.186200px;}
.y31{bottom:705.610350px;}
.y195{bottom:711.439350px;}
.y177{bottom:711.496350px;}
.y116{bottom:713.674050px;}
.yca{bottom:713.916300px;}
.ya2{bottom:721.456200px;}
.y30{bottom:722.107350px;}
.y194{bottom:725.839350px;}
.yc9{bottom:728.316300px;}
.y176{bottom:729.571350px;}
.y115{bottom:731.674050px;}
.y2f{bottom:738.604350px;}
.ya1{bottom:739.726200px;}
.y193{bottom:740.239350px;}
.yc8{bottom:742.716300px;}
.y175{bottom:747.646350px;}
.y114{bottom:749.674050px;}
.y192{bottom:754.639350px;}
.y2e{bottom:755.101350px;}
.yc7{bottom:757.116300px;}
.ya0{bottom:757.996200px;}
.y174{bottom:765.721350px;}
.y113{bottom:767.674050px;}
.yc6{bottom:771.516300px;}
.y2d{bottom:771.598350px;}
.y9f{bottom:776.266200px;}
.y173{bottom:783.796350px;}
.y112{bottom:785.674050px;}
.yc5{bottom:785.916300px;}
.y9e{bottom:794.536200px;}
.y2c{bottom:800.854200px;}
.y172{bottom:801.871350px;}
.y111{bottom:803.674050px;}
.y9d{bottom:812.806200px;}
.y171{bottom:819.946350px;}
.y110{bottom:821.674050px;}
.y9c{bottom:831.076200px;}
.y56{bottom:836.390850px;}
.y170{bottom:838.021350px;}
.y10f{bottom:839.674050px;}
.y9b{bottom:849.346200px;}
.y55{bottom:850.792050px;}
.y16f{bottom:856.096350px;}
.y10e{bottom:857.674050px;}
.y54{bottom:865.193250px;}
.y9a{bottom:867.616200px;}
.y53{bottom:869.589000px;}
.y16e{bottom:874.171350px;}
.y10d{bottom:875.674050px;}
.y52{bottom:879.592050px;}
.y99{bottom:885.886200px;}
.y16d{bottom:892.246350px;}
.y10c{bottom:893.674050px;}
.y51{bottom:893.993250px;}
.y50{bottom:898.388850px;}
.y98{bottom:904.156200px;}
.y4f{bottom:908.392050px;}
.y16c{bottom:910.318500px;}
.y10b{bottom:911.674050px;}
.y97{bottom:922.426200px;}
.y4e{bottom:922.793250px;}
.y4d{bottom:927.188850px;}
.y16b{bottom:928.333650px;}
.y10a{bottom:929.674050px;}
.y4c{bottom:937.192050px;}
.y96{bottom:940.696200px;}
.y16a{bottom:946.408650px;}
.y109{bottom:947.674050px;}
.y4b{bottom:951.593250px;}
.y4a{bottom:955.988850px;}
.y169{bottom:964.483650px;}
.y108{bottom:965.674050px;}
.y95{bottom:977.234400px;}
.y168{bottom:982.558650px;}
.y107{bottom:983.674050px;}
.y49{bottom:984.253050px;}
.y167{bottom:1000.633650px;}
.y106{bottom:1001.674050px;}
.y48{bottom:1005.853050px;}
.y94{bottom:1013.767800px;}
.y166{bottom:1018.708650px;}
.y105{bottom:1019.674050px;}
.y93{bottom:1033.841700px;}
.y165{bottom:1036.783650px;}
.y104{bottom:1037.674050px;}
.y47{bottom:1043.312850px;}
.y164{bottom:1054.858650px;}
.y103{bottom:1055.674050px;}
.y92{bottom:1072.142250px;}
.y163{bottom:1072.933650px;}
.y102{bottom:1073.674050px;}
.y46{bottom:1082.570100px;}
.y91{bottom:1090.412250px;}
.y162{bottom:1091.008650px;}
.y101{bottom:1091.674050px;}
.y90{bottom:1108.682250px;}
.y161{bottom:1109.083650px;}
.y100{bottom:1109.674050px;}
.y45{bottom:1114.972800px;}
.y8f{bottom:1126.952250px;}
.y160{bottom:1127.158650px;}
.yff{bottom:1127.674050px;}
.y8e{bottom:1145.222250px;}
.y15f{bottom:1145.233650px;}
.yfe{bottom:1145.674050px;}
.y1{bottom:1193.182050px;}
.y57{bottom:1193.594850px;}
.yd4{bottom:1194.555150px;}
.y58{bottom:1194.696450px;}
.hd{height:23.026678px;}
.h12{height:36.093750px;}
.h13{height:36.187500px;}
.hf{height:39.084375px;}
.he{height:39.496875px;}
.h7{height:40.605469px;}
.h14{height:40.763672px;}
.h2{height:40.824000px;}
.h3{height:44.390625px;}
.h6{height:45.292969px;}
.ha{height:46.320000px;}
.h10{height:48.829688px;}
.h11{height:49.455825px;}
.hc{height:49.886719px;}
.h4{height:54.804492px;}
.hb{height:54.875391px;}
.h8{height:55.429688px;}
.h5{height:55.488281px;}
.h9{height:89.332031px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:63.779550px;}
.x22{left:65.758050px;}
.xb{left:73.866150px;}
.xe{left:77.931750px;}
.x3{left:84.664350px;}
.xd{left:136.937100px;}
.x17{left:188.207700px;}
.x18{left:191.014200px;}
.x7{left:219.125250px;}
.x11{left:255.368700px;}
.x12{left:258.175050px;}
.x14{left:267.049200px;}
.x15{left:269.855700px;}
.x1d{left:286.359150px;}
.x10{left:319.425150px;}
.x16{left:321.416580px;}
.x4{left:327.151350px;}
.x20{left:335.906550px;}
.x1e{left:348.667350px;}
.x1a{left:350.042850px;}
.x13{left:353.197770px;}
.xc{left:383.205150px;}
.x1b{left:390.817830px;}
.x1c{left:399.548550px;}
.x19{left:418.836360px;}
.xa{left:459.209850px;}
.x9{left:480.472350px;}
.x5{left:590.900850px;}
.x21{left:599.534550px;}
.x6{left:612.163350px;}
.x8{left:616.133100px;}
.xf{left:646.885050px;}
.x1{left:667.919550px;}
.x1f{left:811.520550px;}
@media print{
.v1{vertical-align:-4.522667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:4.502400pt;}
.v3{vertical-align:15.984000pt;}
.v2{vertical-align:17.582400pt;}
.ls16{letter-spacing:-1.600000pt;}
.ls15{letter-spacing:-1.066667pt;}
.ls17{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.906667pt;}
.lsa{letter-spacing:-0.677213pt;}
.ls13{letter-spacing:-0.533333pt;}
.ls14{letter-spacing:-0.426667pt;}
.ls6{letter-spacing:-0.213333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.004880pt;}
.ls3{letter-spacing:0.009632pt;}
.ls10{letter-spacing:0.140800pt;}
.lsf{letter-spacing:0.187733pt;}
.lsc{letter-spacing:0.234667pt;}
.lsd{letter-spacing:0.328533pt;}
.ls11{letter-spacing:0.375467pt;}
.ls9{letter-spacing:0.422400pt;}
.lse{letter-spacing:0.516267pt;}
.lsb{letter-spacing:0.528000pt;}
.ls1{letter-spacing:0.596934pt;}
.ls0{letter-spacing:0.762457pt;}
.ls12{letter-spacing:0.938667pt;}
.ls8{letter-spacing:1.795200pt;}
.ls7{letter-spacing:2.112000pt;}
.ws0{word-spacing:-17.746667pt;}
.wsc6{word-spacing:-12.480000pt;}
.ws8f{word-spacing:-12.426667pt;}
.ws2{word-spacing:-12.266667pt;}
.ws1{word-spacing:-11.573333pt;}
.ws6{word-spacing:-11.264000pt;}
.wsc7{word-spacing:-11.184000pt;}
.ws5{word-spacing:-11.076267pt;}
.ws4{word-spacing:-10.982400pt;}
.ws7{word-spacing:-10.935467pt;}
.ws8{word-spacing:-10.888533pt;}
.wsc8{word-spacing:-10.826667pt;}
.wsc5{word-spacing:-10.224000pt;}
.ws3{word-spacing:-6.525869pt;}
.wsd5{word-spacing:-2.453333pt;}
.ws66{word-spacing:-2.346667pt;}
.wsa5{word-spacing:-2.293333pt;}
.wsbc{word-spacing:-2.240000pt;}
.wsab{word-spacing:-2.186667pt;}
.ws99{word-spacing:-2.133333pt;}
.ws9b{word-spacing:-1.973333pt;}
.ws97{word-spacing:-1.920000pt;}
.wsb{word-spacing:-1.813333pt;}
.ws37{word-spacing:-1.776000pt;}
.ws78{word-spacing:-1.760000pt;}
.wsd0{word-spacing:-1.706667pt;}
.ws22{word-spacing:-1.600000pt;}
.wsca{word-spacing:-1.493333pt;}
.ws31{word-spacing:-1.440000pt;}
.ws69{word-spacing:-1.419733pt;}
.ws36{word-spacing:-1.392000pt;}
.ws9d{word-spacing:-1.333333pt;}
.ws7e{word-spacing:-1.173333pt;}
.ws62{word-spacing:-1.120000pt;}
.ws2f{word-spacing:-1.056000pt;}
.wsbe{word-spacing:-1.024000pt;}
.ws9a{word-spacing:-0.960000pt;}
.ws45{word-spacing:-0.906667pt;}
.wscf{word-spacing:-0.853333pt;}
.ws7c{word-spacing:-0.800000pt;}
.ws26{word-spacing:-0.746667pt;}
.ws39{word-spacing:-0.720000pt;}
.ws4c{word-spacing:-0.693333pt;}
.ws81{word-spacing:-0.640000pt;}
.ws4f{word-spacing:-0.586667pt;}
.ws3f{word-spacing:-0.528000pt;}
.ws87{word-spacing:-0.512000pt;}
.ws47{word-spacing:-0.480000pt;}
.ws34{word-spacing:-0.432000pt;}
.ws49{word-spacing:-0.426667pt;}
.ws3e{word-spacing:-0.422400pt;}
.ws40{word-spacing:-0.375467pt;}
.ws1c{word-spacing:-0.373333pt;}
.ws51{word-spacing:-0.266667pt;}
.ws35{word-spacing:-0.240000pt;}
.ws98{word-spacing:-0.160000pt;}
.ws8d{word-spacing:-0.128000pt;}
.wse2{word-spacing:-0.053333pt;}
.ws9{word-spacing:0.000000pt;}
.ws5a{word-spacing:0.053333pt;}
.ws93{word-spacing:0.160000pt;}
.ws3d{word-spacing:0.316800pt;}
.wsd6{word-spacing:0.320000pt;}
.wsc3{word-spacing:0.426667pt;}
.wse{word-spacing:0.480000pt;}
.ws1a{word-spacing:0.533333pt;}
.ws91{word-spacing:0.586667pt;}
.ws30{word-spacing:0.672000pt;}
.ws86{word-spacing:0.725333pt;}
.ws1f{word-spacing:0.746667pt;}
.ws38{word-spacing:0.864000pt;}
.ws9f{word-spacing:1.013333pt;}
.ws70{word-spacing:1.066667pt;}
.wsc0{word-spacing:1.109333pt;}
.ws7f{word-spacing:1.120000pt;}
.ws1d{word-spacing:1.333333pt;}
.wsa{word-spacing:1.386667pt;}
.ws68{word-spacing:1.493333pt;}
.wsa6{word-spacing:1.546667pt;}
.ws3a{word-spacing:1.584000pt;}
.ws79{word-spacing:1.600000pt;}
.ws3b{word-spacing:1.632000pt;}
.ws42{word-spacing:1.653333pt;}
.wsa0{word-spacing:1.760000pt;}
.ws64{word-spacing:1.813333pt;}
.wse9{word-spacing:1.920000pt;}
.wsde{word-spacing:1.973333pt;}
.ws92{word-spacing:2.026667pt;}
.wse1{word-spacing:2.133333pt;}
.wsbf{word-spacing:2.176000pt;}
.wsc1{word-spacing:2.218667pt;}
.wsb7{word-spacing:2.240000pt;}
.ws8e{word-spacing:2.304000pt;}
.wsb9{word-spacing:2.346667pt;}
.ws88{word-spacing:2.432000pt;}
.ws20{word-spacing:2.506667pt;}
.ws16{word-spacing:2.560000pt;}
.ws59{word-spacing:2.613333pt;}
.ws89{word-spacing:2.645333pt;}
.ws24{word-spacing:2.666667pt;}
.ws33{word-spacing:2.736000pt;}
.wsd7{word-spacing:2.773333pt;}
.ws4b{word-spacing:2.826667pt;}
.wsa2{word-spacing:2.880000pt;}
.wsb6{word-spacing:3.093333pt;}
.ws90{word-spacing:3.146667pt;}
.ws50{word-spacing:3.200000pt;}
.wsa8{word-spacing:3.253333pt;}
.ws6f{word-spacing:3.413333pt;}
.wsc2{word-spacing:3.456000pt;}
.ws9e{word-spacing:3.520000pt;}
.ws29{word-spacing:3.573333pt;}
.ws19{word-spacing:3.626667pt;}
.ws57{word-spacing:3.733333pt;}
.wsb3{word-spacing:3.840000pt;}
.wsd2{word-spacing:3.893333pt;}
.wsad{word-spacing:4.000000pt;}
.ws23{word-spacing:4.160000pt;}
.ws61{word-spacing:4.266667pt;}
.ws21{word-spacing:4.373333pt;}
.ws32{word-spacing:4.464000pt;}
.ws17{word-spacing:4.480000pt;}
.wsdc{word-spacing:4.533333pt;}
.ws8b{word-spacing:4.693333pt;}
.wsba{word-spacing:4.800000pt;}
.wsb2{word-spacing:4.853333pt;}
.ws56{word-spacing:4.906667pt;}
.wsea{word-spacing:4.949333pt;}
.ws7d{word-spacing:4.960000pt;}
.ws82{word-spacing:5.120000pt;}
.wsaa{word-spacing:5.173333pt;}
.ws75{word-spacing:5.280000pt;}
.ws67{word-spacing:5.333333pt;}
.wsaf{word-spacing:5.386667pt;}
.ws8a{word-spacing:5.418667pt;}
.ws3c{word-spacing:5.424000pt;}
.ws8c{word-spacing:5.461333pt;}
.wsf{word-spacing:5.600000pt;}
.ws6e{word-spacing:5.653333pt;}
.ws14{word-spacing:5.706667pt;}
.ws10{word-spacing:5.760000pt;}
.ws2d{word-spacing:5.808000pt;}
.ws2e{word-spacing:5.856000pt;}
.wsac{word-spacing:5.866667pt;}
.ws5e{word-spacing:5.920000pt;}
.ws12{word-spacing:5.973333pt;}
.wsa3{word-spacing:6.026667pt;}
.ws94{word-spacing:6.133333pt;}
.ws77{word-spacing:6.186667pt;}
.wsb4{word-spacing:6.293333pt;}
.ws55{word-spacing:6.400000pt;}
.ws6d{word-spacing:6.453333pt;}
.ws63{word-spacing:6.613333pt;}
.wsce{word-spacing:6.666667pt;}
.ws44{word-spacing:6.773333pt;}
.ws76{word-spacing:6.826667pt;}
.ws5c{word-spacing:6.880000pt;}
.ws7a{word-spacing:6.933333pt;}
.ws11{word-spacing:6.986667pt;}
.ws1b{word-spacing:7.093333pt;}
.ws60{word-spacing:7.200000pt;}
.wsbb{word-spacing:7.253333pt;}
.ws2b{word-spacing:7.296000pt;}
.ws95{word-spacing:7.306667pt;}
.wsa4{word-spacing:7.360000pt;}
.wsd9{word-spacing:7.466667pt;}
.wsb5{word-spacing:7.573333pt;}
.ws52{word-spacing:7.626667pt;}
.ws5f{word-spacing:7.680000pt;}
.ws80{word-spacing:7.733333pt;}
.ws72{word-spacing:7.946667pt;}
.wsc{word-spacing:8.000000pt;}
.ws6c{word-spacing:8.053333pt;}
.ws4a{word-spacing:8.160000pt;}
.wsae{word-spacing:8.266667pt;}
.ws13{word-spacing:8.373333pt;}
.ws53{word-spacing:8.426667pt;}
.ws96{word-spacing:8.586667pt;}
.wsa9{word-spacing:8.640000pt;}
.ws43{word-spacing:8.800000pt;}
.wse3{word-spacing:8.853333pt;}
.ws71{word-spacing:9.386667pt;}
.wsb8{word-spacing:9.440000pt;}
.wsa7{word-spacing:9.493333pt;}
.ws7b{word-spacing:9.760000pt;}
.ws2c{word-spacing:9.792000pt;}
.wsda{word-spacing:10.240000pt;}
.wscd{word-spacing:10.293333pt;}
.ws65{word-spacing:10.346667pt;}
.ws4d{word-spacing:10.400000pt;}
.ws58{word-spacing:10.506667pt;}
.ws15{word-spacing:10.560000pt;}
.ws6b{word-spacing:10.666667pt;}
.ws46{word-spacing:10.720000pt;}
.wsd{word-spacing:10.826667pt;}
.wsc9{word-spacing:10.880000pt;}
.wse0{word-spacing:10.986667pt;}
.wse6{word-spacing:11.093333pt;}
.wsd8{word-spacing:11.200000pt;}
.ws25{word-spacing:11.253333pt;}
.ws2a{word-spacing:11.328000pt;}
.wsb0{word-spacing:11.360000pt;}
.ws4e{word-spacing:11.573333pt;}
.ws73{word-spacing:12.000000pt;}
.wsdf{word-spacing:12.160000pt;}
.ws1e{word-spacing:12.266667pt;}
.ws85{word-spacing:12.373333pt;}
.ws6a{word-spacing:12.640000pt;}
.wscc{word-spacing:13.066667pt;}
.wscb{word-spacing:13.120000pt;}
.ws83{word-spacing:13.333333pt;}
.wsa1{word-spacing:13.493333pt;}
.ws54{word-spacing:13.600000pt;}
.ws27{word-spacing:13.653333pt;}
.wsd4{word-spacing:13.760000pt;}
.ws9c{word-spacing:14.560000pt;}
.ws18{word-spacing:14.666667pt;}
.ws48{word-spacing:14.986667pt;}
.wse5{word-spacing:15.040000pt;}
.wsb1{word-spacing:15.946667pt;}
.ws74{word-spacing:16.266667pt;}
.ws28{word-spacing:16.480000pt;}
.wsd3{word-spacing:16.960000pt;}
.ws84{word-spacing:17.600000pt;}
.wsd1{word-spacing:17.760000pt;}
.ws5b{word-spacing:17.813333pt;}
.wsbd{word-spacing:18.720000pt;}
.ws5d{word-spacing:24.640000pt;}
.wsdb{word-spacing:26.026667pt;}
.wse7{word-spacing:26.826667pt;}
.wse8{word-spacing:26.933333pt;}
.wsdd{word-spacing:28.480000pt;}
.wse4{word-spacing:29.813333pt;}
.ws41{word-spacing:1451.433600pt;}
.wsc4{word-spacing:1457.790933pt;}
._1a{margin-left:-12.104533pt;}
._19{margin-left:-9.326507pt;}
._e{margin-left:-8.110080pt;}
._15{margin-left:-5.498667pt;}
._f{margin-left:-4.390400pt;}
._4{margin-left:-3.354667pt;}
._b{margin-left:-2.352000pt;}
._0{margin-left:-1.392000pt;}
._1{width:1.250133pt;}
._3{width:2.784000pt;}
._c{width:3.881067pt;}
._d{width:5.272533pt;}
._13{width:6.282667pt;}
._12{width:7.312000pt;}
._14{width:8.992000pt;}
._16{width:10.058667pt;}
._5{width:11.152000pt;}
._10{width:14.373333pt;}
._17{width:15.658667pt;}
._18{width:16.981333pt;}
._11{width:18.853333pt;}
._8{width:52.992000pt;}
._2{width:96.027733pt;}
._9{width:180.768000pt;}
._a{width:1102.800000pt;}
._6{width:1282.704000pt;}
._7{width:1397.424000pt;}
.fs8{font-size:27.362133pt;}
.fs7{font-size:27.984000pt;}
.fs6{font-size:30.782400pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:46.933333pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:52.800000pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:64.533333pt;}
.fs4{font-size:105.600000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:21.456667pt;}
.y2{bottom:22.215333pt;}
.yd5{bottom:22.587333pt;}
.y1b{bottom:56.608800pt;}
.ye{bottom:56.648800pt;}
.y8d{bottom:56.668667pt;}
.yc4{bottom:56.684933pt;}
.yfd{bottom:56.696933pt;}
.y138{bottom:56.711467pt;}
.yea{bottom:56.733067pt;}
.y73{bottom:56.868667pt;}
.y137{bottom:72.711467pt;}
.y8c{bottom:72.735333pt;}
.yfc{bottom:72.830267pt;}
.ye9{bottom:72.866400pt;}
.y72{bottom:72.868667pt;}
.yc3{bottom:72.924933pt;}
.y27{bottom:73.342133pt;}
.yd{bottom:73.368800pt;}
.y1a{bottom:73.382133pt;}
.y136{bottom:88.711467pt;}
.y8b{bottom:88.802000pt;}
.y71{bottom:88.868667pt;}
.yfb{bottom:88.963600pt;}
.ye8{bottom:88.999733pt;}
.yc2{bottom:89.164933pt;}
.y26{bottom:90.035467pt;}
.yc{bottom:90.088800pt;}
.y19{bottom:90.155467pt;}
.y135{bottom:104.711467pt;}
.y70{bottom:104.868667pt;}
.ye7{bottom:105.133067pt;}
.yc1{bottom:105.404933pt;}
.y25{bottom:106.728800pt;}
.yb{bottom:106.808800pt;}
.y18{bottom:106.928800pt;}
.y134{bottom:120.711467pt;}
.y6f{bottom:120.868667pt;}
.y8a{bottom:120.935333pt;}
.yfa{bottom:121.234267pt;}
.ye6{bottom:121.266400pt;}
.yc0{bottom:121.644933pt;}
.y24{bottom:123.422133pt;}
.ya{bottom:123.528800pt;}
.y17{bottom:123.702133pt;}
.y133{bottom:136.711467pt;}
.y6e{bottom:136.868667pt;}
.y89{bottom:137.002000pt;}
.ye5{bottom:137.399733pt;}
.ybf{bottom:137.884933pt;}
.y23{bottom:140.115467pt;}
.y9{bottom:140.248800pt;}
.y16{bottom:140.475467pt;}
.y132{bottom:152.711467pt;}
.y6d{bottom:152.868667pt;}
.y88{bottom:153.068667pt;}
.ye4{bottom:153.533067pt;}
.yf9{bottom:153.573067pt;}
.ybe{bottom:154.124933pt;}
.y22{bottom:156.808800pt;}
.y8{bottom:156.968800pt;}
.y15{bottom:157.248800pt;}
.y131{bottom:168.711467pt;}
.y6c{bottom:168.868667pt;}
.y87{bottom:169.135333pt;}
.ye3{bottom:169.666400pt;}
.yf8{bottom:169.706400pt;}
.ybd{bottom:170.364933pt;}
.y21{bottom:173.502133pt;}
.y7{bottom:173.688800pt;}
.y14{bottom:174.022133pt;}
.y130{bottom:184.711467pt;}
.y86{bottom:185.202000pt;}
.ye2{bottom:185.799733pt;}
.yf7{bottom:185.839733pt;}
.ybc{bottom:186.604933pt;}
.y20{bottom:190.195467pt;}
.y6{bottom:190.408800pt;}
.y13{bottom:190.795467pt;}
.y12f{bottom:200.711467pt;}
.y6b{bottom:200.868667pt;}
.y85{bottom:201.268667pt;}
.ye1{bottom:201.933067pt;}
.yf6{bottom:201.973067pt;}
.ybb{bottom:202.844933pt;}
.y1f{bottom:206.888800pt;}
.y5{bottom:207.128800pt;}
.y12{bottom:207.568800pt;}
.y15e{bottom:216.385467pt;}
.y150{bottom:216.393067pt;}
.y191{bottom:216.399600pt;}
.y12e{bottom:216.711467pt;}
.y84{bottom:217.335333pt;}
.ye0{bottom:218.066400pt;}
.yf5{bottom:218.106400pt;}
.yba{bottom:219.084933pt;}
.y1e{bottom:223.582133pt;}
.y4{bottom:223.848800pt;}
.y11{bottom:224.342133pt;}
.y190{bottom:230.810267pt;}
.y15d{bottom:232.438800pt;}
.y14f{bottom:232.486400pt;}
.y12d{bottom:232.711467pt;}
.y83{bottom:233.402000pt;}
.ydf{bottom:234.199733pt;}
.yf4{bottom:234.239733pt;}
.y6a{bottom:234.468667pt;}
.y1d{bottom:240.275467pt;}
.y10{bottom:241.115467pt;}
.y18f{bottom:246.876933pt;}
.y15c{bottom:248.492133pt;}
.y14e{bottom:248.579733pt;}
.y12c{bottom:248.711467pt;}
.y82{bottom:249.468667pt;}
.yde{bottom:250.333067pt;}
.yf3{bottom:250.373067pt;}
.y69{bottom:250.468667pt;}
.yb9{bottom:251.563333pt;}
.y1c{bottom:256.968800pt;}
.y3{bottom:257.280000pt;}
.yf{bottom:257.888800pt;}
.y18e{bottom:262.943600pt;}
.y15b{bottom:264.545467pt;}
.y14d{bottom:264.673067pt;}
.y12b{bottom:264.711467pt;}
.y81{bottom:265.535333pt;}
.ydd{bottom:266.466400pt;}
.y68{bottom:266.468667pt;}
.yf2{bottom:266.506400pt;}
.y18d{bottom:279.010267pt;}
.y15a{bottom:280.598800pt;}
.y12a{bottom:280.711467pt;}
.y14c{bottom:280.766400pt;}
.y80{bottom:281.602000pt;}
.y67{bottom:282.468667pt;}
.ydc{bottom:282.599733pt;}
.yf1{bottom:282.639733pt;}
.yb8{bottom:284.014400pt;}
.y2b{bottom:286.855333pt;}
.y18c{bottom:295.076933pt;}
.y159{bottom:296.652133pt;}
.y7f{bottom:297.668667pt;}
.y66{bottom:298.468667pt;}
.ydb{bottom:298.733067pt;}
.yf0{bottom:298.773067pt;}
.yb7{bottom:300.254400pt;}
.y2a{bottom:301.255333pt;}
.y18b{bottom:311.143600pt;}
.y158{bottom:312.705467pt;}
.y129{bottom:312.714133pt;}
.y14b{bottom:312.949867pt;}
.y7e{bottom:313.735333pt;}
.y65{bottom:314.468667pt;}
.yda{bottom:314.866400pt;}
.yef{bottom:314.906400pt;}
.y29{bottom:315.655333pt;}
.yb6{bottom:316.494400pt;}
.y18a{bottom:327.210267pt;}
.y7d{bottom:329.802000pt;}
.y28{bottom:330.055333pt;}
.y64{bottom:330.468667pt;}
.yd9{bottom:330.999733pt;}
.yee{bottom:331.039733pt;}
.yb5{bottom:332.734400pt;}
.y189{bottom:343.276933pt;}
.y157{bottom:344.807467pt;}
.y7c{bottom:345.868667pt;}
.y128{bottom:346.376933pt;}
.y63{bottom:346.468667pt;}
.y14a{bottom:346.720267pt;}
.yd8{bottom:347.133067pt;}
.yed{bottom:347.173067pt;}
.yb4{bottom:348.974400pt;}
.y188{bottom:359.343600pt;}
.y7b{bottom:361.935333pt;}
.y127{bottom:362.376933pt;}
.y62{bottom:362.468667pt;}
.y44{bottom:362.801200pt;}
.y149{bottom:362.813600pt;}
.yd7{bottom:363.266400pt;}
.yec{bottom:363.306400pt;}
.yb3{bottom:365.214400pt;}
.y187{bottom:375.410267pt;}
.y43{bottom:377.465200pt;}
.y7a{bottom:378.002000pt;}
.y126{bottom:378.376933pt;}
.y61{bottom:378.468667pt;}
.y156{bottom:378.500000pt;}
.y148{bottom:378.906933pt;}
.yd6{bottom:379.399733pt;}
.yeb{bottom:379.439733pt;}
.yb2{bottom:381.454400pt;}
.y186{bottom:391.476933pt;}
.y40{bottom:392.129200pt;}
.y79{bottom:394.068667pt;}
.y125{bottom:394.376933pt;}
.y60{bottom:394.468667pt;}
.y155{bottom:394.553333pt;}
.y147{bottom:395.000267pt;}
.yb1{bottom:397.694400pt;}
.y3f{bottom:406.793200pt;}
.y42{bottom:407.249200pt;}
.y185{bottom:407.543600pt;}
.y141{bottom:408.323467pt;}
.y78{bottom:410.135333pt;}
.y124{bottom:410.376933pt;}
.y5f{bottom:410.468667pt;}
.y154{bottom:410.606667pt;}
.y146{bottom:411.093600pt;}
.yb0{bottom:413.934400pt;}
.y140{bottom:421.123467pt;}
.y41{bottom:421.913200pt;}
.y184{bottom:423.610267pt;}
.y77{bottom:426.202000pt;}
.y123{bottom:426.376933pt;}
.y5e{bottom:426.468667pt;}
.y153{bottom:426.660000pt;}
.y145{bottom:427.186933pt;}
.yaf{bottom:430.174400pt;}
.y13f{bottom:433.923467pt;}
.y3e{bottom:436.577200pt;}
.y183{bottom:439.676933pt;}
.y76{bottom:442.268667pt;}
.y122{bottom:442.376933pt;}
.y5d{bottom:442.468667pt;}
.y152{bottom:442.713333pt;}
.y144{bottom:443.280267pt;}
.yae{bottom:446.414400pt;}
.y13e{bottom:446.723467pt;}
.y3d{bottom:451.241200pt;}
.y182{bottom:455.743600pt;}
.y75{bottom:458.335333pt;}
.y121{bottom:458.376933pt;}
.y5c{bottom:458.468667pt;}
.y143{bottom:459.373600pt;}
.y13d{bottom:459.523467pt;}
.yad{bottom:462.654400pt;}
.y3c{bottom:465.905200pt;}
.y181{bottom:471.810267pt;}
.y13c{bottom:472.323467pt;}
.y120{bottom:474.376933pt;}
.y74{bottom:474.402000pt;}
.y5b{bottom:474.468667pt;}
.y151{bottom:474.815333pt;}
.y142{bottom:475.466933pt;}
.yac{bottom:478.894400pt;}
.y3b{bottom:480.569200pt;}
.y13b{bottom:485.123467pt;}
.y180{bottom:487.876933pt;}
.y11f{bottom:490.376933pt;}
.y5a{bottom:490.468667pt;}
.yab{bottom:495.134400pt;}
.y3a{bottom:495.233200pt;}
.y13a{bottom:497.923467pt;}
.y17f{bottom:503.943600pt;}
.y19f{bottom:504.390533pt;}
.y11e{bottom:506.376933pt;}
.y39{bottom:509.897200pt;}
.y139{bottom:510.723467pt;}
.yaa{bottom:511.374400pt;}
.y19e{bottom:517.190533pt;}
.yd3{bottom:519.392267pt;}
.y17e{bottom:520.010267pt;}
.y11d{bottom:522.376933pt;}
.y38{bottom:524.561200pt;}
.ya9{bottom:527.614400pt;}
.y19d{bottom:529.990533pt;}
.yd2{bottom:532.192267pt;}
.y17d{bottom:536.076933pt;}
.y11c{bottom:538.376933pt;}
.y37{bottom:539.225200pt;}
.y19c{bottom:542.790533pt;}
.ya8{bottom:543.854400pt;}
.yd1{bottom:544.992267pt;}
.y17c{bottom:552.143600pt;}
.y36{bottom:553.889200pt;}
.y11b{bottom:554.376933pt;}
.y19b{bottom:555.590533pt;}
.yd0{bottom:557.792267pt;}
.ya7{bottom:560.094400pt;}
.y17b{bottom:568.210267pt;}
.y19a{bottom:568.390533pt;}
.y35{bottom:568.553200pt;}
.y11a{bottom:570.376933pt;}
.ycf{bottom:570.592267pt;}
.ya6{bottom:576.334400pt;}
.y199{bottom:581.190533pt;}
.y34{bottom:583.217200pt;}
.yce{bottom:583.392267pt;}
.y17a{bottom:584.274400pt;}
.y119{bottom:586.376933pt;}
.ya5{bottom:592.574400pt;}
.y198{bottom:593.990533pt;}
.ycd{bottom:596.192267pt;}
.y33{bottom:597.881200pt;}
.y179{bottom:600.307867pt;}
.y118{bottom:602.376933pt;}
.y197{bottom:606.790533pt;}
.ya4{bottom:608.814400pt;}
.ycc{bottom:608.992267pt;}
.y32{bottom:612.545200pt;}
.y178{bottom:616.374533pt;}
.y117{bottom:618.376933pt;}
.y196{bottom:619.590533pt;}
.ycb{bottom:621.792267pt;}
.ya3{bottom:625.054400pt;}
.y31{bottom:627.209200pt;}
.y195{bottom:632.390533pt;}
.y177{bottom:632.441200pt;}
.y116{bottom:634.376933pt;}
.yca{bottom:634.592267pt;}
.ya2{bottom:641.294400pt;}
.y30{bottom:641.873200pt;}
.y194{bottom:645.190533pt;}
.yc9{bottom:647.392267pt;}
.y176{bottom:648.507867pt;}
.y115{bottom:650.376933pt;}
.y2f{bottom:656.537200pt;}
.ya1{bottom:657.534400pt;}
.y193{bottom:657.990533pt;}
.yc8{bottom:660.192267pt;}
.y175{bottom:664.574533pt;}
.y114{bottom:666.376933pt;}
.y192{bottom:670.790533pt;}
.y2e{bottom:671.201200pt;}
.yc7{bottom:672.992267pt;}
.ya0{bottom:673.774400pt;}
.y174{bottom:680.641200pt;}
.y113{bottom:682.376933pt;}
.yc6{bottom:685.792267pt;}
.y2d{bottom:685.865200pt;}
.y9f{bottom:690.014400pt;}
.y173{bottom:696.707867pt;}
.y112{bottom:698.376933pt;}
.yc5{bottom:698.592267pt;}
.y9e{bottom:706.254400pt;}
.y2c{bottom:711.870400pt;}
.y172{bottom:712.774533pt;}
.y111{bottom:714.376933pt;}
.y9d{bottom:722.494400pt;}
.y171{bottom:728.841200pt;}
.y110{bottom:730.376933pt;}
.y9c{bottom:738.734400pt;}
.y56{bottom:743.458533pt;}
.y170{bottom:744.907867pt;}
.y10f{bottom:746.376933pt;}
.y9b{bottom:754.974400pt;}
.y55{bottom:756.259600pt;}
.y16f{bottom:760.974533pt;}
.y10e{bottom:762.376933pt;}
.y54{bottom:769.060667pt;}
.y9a{bottom:771.214400pt;}
.y53{bottom:772.968000pt;}
.y16e{bottom:777.041200pt;}
.y10d{bottom:778.376933pt;}
.y52{bottom:781.859600pt;}
.y99{bottom:787.454400pt;}
.y16d{bottom:793.107867pt;}
.y10c{bottom:794.376933pt;}
.y51{bottom:794.660667pt;}
.y50{bottom:798.567867pt;}
.y98{bottom:803.694400pt;}
.y4f{bottom:807.459600pt;}
.y16c{bottom:809.172000pt;}
.y10b{bottom:810.376933pt;}
.y97{bottom:819.934400pt;}
.y4e{bottom:820.260667pt;}
.y4d{bottom:824.167867pt;}
.y16b{bottom:825.185467pt;}
.y10a{bottom:826.376933pt;}
.y4c{bottom:833.059600pt;}
.y96{bottom:836.174400pt;}
.y16a{bottom:841.252133pt;}
.y109{bottom:842.376933pt;}
.y4b{bottom:845.860667pt;}
.y4a{bottom:849.767867pt;}
.y169{bottom:857.318800pt;}
.y108{bottom:858.376933pt;}
.y95{bottom:868.652800pt;}
.y168{bottom:873.385467pt;}
.y107{bottom:874.376933pt;}
.y49{bottom:874.891600pt;}
.y167{bottom:889.452133pt;}
.y106{bottom:890.376933pt;}
.y48{bottom:894.091600pt;}
.y94{bottom:901.126933pt;}
.y166{bottom:905.518800pt;}
.y105{bottom:906.376933pt;}
.y93{bottom:918.970400pt;}
.y165{bottom:921.585467pt;}
.y104{bottom:922.376933pt;}
.y47{bottom:927.389200pt;}
.y164{bottom:937.652133pt;}
.y103{bottom:938.376933pt;}
.y92{bottom:953.015333pt;}
.y163{bottom:953.718800pt;}
.y102{bottom:954.376933pt;}
.y46{bottom:962.284533pt;}
.y91{bottom:969.255333pt;}
.y162{bottom:969.785467pt;}
.y101{bottom:970.376933pt;}
.y90{bottom:985.495333pt;}
.y161{bottom:985.852133pt;}
.y100{bottom:986.376933pt;}
.y45{bottom:991.086933pt;}
.y8f{bottom:1001.735333pt;}
.y160{bottom:1001.918800pt;}
.yff{bottom:1002.376933pt;}
.y8e{bottom:1017.975333pt;}
.y15f{bottom:1017.985467pt;}
.yfe{bottom:1018.376933pt;}
.y1{bottom:1060.606267pt;}
.y57{bottom:1060.973200pt;}
.yd4{bottom:1061.826800pt;}
.y58{bottom:1061.952400pt;}
.hd{height:20.468158pt;}
.h12{height:32.083333pt;}
.h13{height:32.166667pt;}
.hf{height:34.741667pt;}
.he{height:35.108333pt;}
.h7{height:36.093750pt;}
.h14{height:36.234375pt;}
.h2{height:36.288000pt;}
.h3{height:39.458333pt;}
.h6{height:40.260417pt;}
.ha{height:41.173333pt;}
.h10{height:43.404167pt;}
.h11{height:43.960733pt;}
.hc{height:44.343750pt;}
.h4{height:48.715104pt;}
.hb{height:48.778125pt;}
.h8{height:49.270833pt;}
.h5{height:49.322917pt;}
.h9{height:79.406250pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:56.692933pt;}
.x22{left:58.451600pt;}
.xb{left:65.658800pt;}
.xe{left:69.272667pt;}
.x3{left:75.257200pt;}
.xd{left:121.721867pt;}
.x17{left:167.295733pt;}
.x18{left:169.790400pt;}
.x7{left:194.778000pt;}
.x11{left:226.994400pt;}
.x12{left:229.488933pt;}
.x14{left:237.377067pt;}
.x15{left:239.871733pt;}
.x1d{left:254.541467pt;}
.x10{left:283.933467pt;}
.x16{left:285.703627pt;}
.x4{left:290.801200pt;}
.x20{left:298.583600pt;}
.x1e{left:309.926533pt;}
.x1a{left:311.149200pt;}
.x13{left:313.953573pt;}
.xc{left:340.626800pt;}
.x1b{left:347.393627pt;}
.x1c{left:355.154267pt;}
.x19{left:372.298987pt;}
.xa{left:408.186533pt;}
.x9{left:427.086533pt;}
.x5{left:525.245200pt;}
.x21{left:532.919600pt;}
.x6{left:544.145200pt;}
.x8{left:547.673867pt;}
.xf{left:575.008933pt;}
.x1{left:593.706267pt;}
.x1f{left:721.351600pt;}
}




    .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; }
  