
    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_2180f6ef87a66628b06dd4ba.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167667;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_0a2141a1736355d3af06aafb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938000;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_3b84d17f94727a039cb0344a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.700000;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_cad068e55f3e7ff60e37a3a6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.122000;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_0a2141a1736355d3af06aafb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938000;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_71d13a232f6ef218c26b9650.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951000;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_bb5b911efd867842aeab165a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938000;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_3b84d17f94727a039cb0344a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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_f60a2ce4d8b43ad2e886e4f4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.994000;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_b75d333e6ac3935425e0b119.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.030000;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_e01c59881beb54f3943b7f4e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.996000;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_82c75dd7867b8306bad65921.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.167667;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_39f43189812a61b55b2c3987.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.030000;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_82c75dd7867b8306bad65921.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.167667;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_39f43189812a61b55b2c3987.woff2')format("woff");}.fff{font-family:fff;line-height:1.030000;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_2180f6ef87a66628b06dd4ba.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.167667;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_2180f6ef87a66628b06dd4ba.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.167667;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_39f43189812a61b55b2c3987.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.030000;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_2180f6ef87a66628b06dd4ba.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.167667;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_39f43189812a61b55b2c3987.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.030000;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_2180f6ef87a66628b06dd4ba.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.167667;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_78cd5b1060cc292717f823be.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.030000;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_cbb50005861d5a232164e155.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.994000;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_4be97f4a7f7f5ac5796fc27b.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.015625;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:ff19;src:url('chunks/assets/font_f9191e1b8fbf88ccf26be852.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.024902;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);}
.m2{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);}
.m3{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);}
.v2{vertical-align:-16.200000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:16.176000px;}
.v1{vertical-align:19.324200px;}
.lsa{letter-spacing:-1.290000px;}
.ls1a{letter-spacing:-1.161000px;}
.ls9{letter-spacing:-0.645000px;}
.lsb{letter-spacing:-0.580500px;}
.lsc{letter-spacing:-0.451500px;}
.ls14{letter-spacing:-0.419250px;}
.ls8{letter-spacing:-0.408000px;}
.ls15{letter-spacing:-0.387000px;}
.ls4{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.007200px;}
.ls19{letter-spacing:0.014400px;}
.ls18{letter-spacing:0.015600px;}
.ls13{letter-spacing:0.129000px;}
.lsd{letter-spacing:0.193500px;}
.lse{letter-spacing:0.322500px;}
.ls12{letter-spacing:0.354750px;}
.ls11{letter-spacing:0.419250px;}
.ls3{letter-spacing:0.480000px;}
.ls10{letter-spacing:0.645000px;}
.ls5{letter-spacing:0.960000px;}
.ls1{letter-spacing:2.640000px;}
.lsf{letter-spacing:3.658125px;}
.ls17{letter-spacing:5.688000px;}
.ls2{letter-spacing:9.990000px;}
.ls7{letter-spacing:2052.644400px;}
.ls6{letter-spacing:2294.229000px;}
.ls0{letter-spacing:2815.845000px;}
.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;}
}
.ws73{word-spacing:-13.480500px;}
.ws12{word-spacing:-13.134000px;}
.ws87{word-spacing:-13.029000px;}
.ws81{word-spacing:-12.835500px;}
.ws88{word-spacing:-11.545500px;}
.ws89{word-spacing:-10.773000px;}
.ws4a{word-spacing:-10.746000px;}
.ws13{word-spacing:-10.149000px;}
.ws0{word-spacing:-9.744000px;}
.ws37{word-spacing:-9.741000px;}
.ws74{word-spacing:-8.762325px;}
.ws14{word-spacing:-8.343075px;}
.ws80{word-spacing:-7.923825px;}
.ws15{word-spacing:-6.984900px;}
.ws6{word-spacing:-0.960000px;}
.ws7d{word-spacing:-0.645000px;}
.ws8a{word-spacing:-0.193500px;}
.ws1{word-spacing:0.000000px;}
.ws11{word-spacing:0.048000px;}
.ws23{word-spacing:0.064500px;}
.ws63{word-spacing:0.129000px;}
.wsf{word-spacing:0.192000px;}
.ws2f{word-spacing:0.193500px;}
.ws1a{word-spacing:0.258000px;}
.ws2e{word-spacing:0.322500px;}
.ws10{word-spacing:0.384000px;}
.ws8b{word-spacing:0.387000px;}
.ws72{word-spacing:0.451500px;}
.ws3a{word-spacing:0.516000px;}
.ws83{word-spacing:0.540000px;}
.wsb{word-spacing:0.576000px;}
.ws40{word-spacing:0.580500px;}
.ws32{word-spacing:0.594000px;}
.wsd{word-spacing:0.624000px;}
.ws30{word-spacing:0.645000px;}
.ws8e{word-spacing:0.672000px;}
.ws5e{word-spacing:0.702000px;}
.ws1f{word-spacing:0.709500px;}
.ws6d{word-spacing:0.774000px;}
.ws6b{word-spacing:0.838500px;}
.ws5d{word-spacing:0.864000px;}
.ws4c{word-spacing:0.903000px;}
.ws3b{word-spacing:0.967500px;}
.ws6c{word-spacing:0.972000px;}
.ws21{word-spacing:1.032000px;}
.ws3c{word-spacing:1.096500px;}
.wse{word-spacing:1.152000px;}
.ws76{word-spacing:1.161000px;}
.ws4f{word-spacing:1.225500px;}
.ws20{word-spacing:1.290000px;}
.ws31{word-spacing:1.296000px;}
.ws70{word-spacing:1.354500px;}
.ws6f{word-spacing:1.419000px;}
.ws84{word-spacing:1.458000px;}
.ws62{word-spacing:1.483500px;}
.ws3f{word-spacing:1.548000px;}
.ws34{word-spacing:1.674000px;}
.ws25{word-spacing:1.741500px;}
.ws35{word-spacing:1.782000px;}
.ws41{word-spacing:1.806000px;}
.ws79{word-spacing:1.870500px;}
.ws69{word-spacing:1.935000px;}
.ws86{word-spacing:1.999500px;}
.ws4{word-spacing:2.016000px;}
.ws1b{word-spacing:2.064000px;}
.ws18{word-spacing:2.128500px;}
.ws8c{word-spacing:2.160000px;}
.ws57{word-spacing:2.193000px;}
.ws47{word-spacing:2.257500px;}
.ws22{word-spacing:2.322000px;}
.ws82{word-spacing:2.386500px;}
.ws7c{word-spacing:2.451000px;}
.ws8{word-spacing:2.496000px;}
.ws64{word-spacing:2.515500px;}
.ws17{word-spacing:2.580000px;}
.ws8d{word-spacing:2.640000px;}
.ws1c{word-spacing:2.644500px;}
.wsa{word-spacing:2.688000px;}
.ws1e{word-spacing:2.709000px;}
.ws4e{word-spacing:2.773500px;}
.ws48{word-spacing:2.838000px;}
.wsc{word-spacing:2.880000px;}
.ws46{word-spacing:2.902500px;}
.ws42{word-spacing:2.967000px;}
.ws36{word-spacing:3.024000px;}
.ws53{word-spacing:3.031500px;}
.ws85{word-spacing:3.078000px;}
.ws7{word-spacing:3.096000px;}
.ws28{word-spacing:3.160500px;}
.ws43{word-spacing:3.225000px;}
.ws9{word-spacing:3.264000px;}
.ws44{word-spacing:3.289500px;}
.ws49{word-spacing:3.354000px;}
.ws2c{word-spacing:3.418500px;}
.ws78{word-spacing:3.483000px;}
.ws71{word-spacing:3.547500px;}
.ws33{word-spacing:3.564000px;}
.ws55{word-spacing:3.612000px;}
.ws2b{word-spacing:3.676500px;}
.ws5a{word-spacing:3.741000px;}
.ws52{word-spacing:3.805500px;}
.ws6a{word-spacing:3.870000px;}
.ws50{word-spacing:3.934500px;}
.ws19{word-spacing:3.999000px;}
.ws26{word-spacing:4.063500px;}
.ws4d{word-spacing:4.128000px;}
.ws27{word-spacing:4.192500px;}
.ws2d{word-spacing:4.257000px;}
.ws5b{word-spacing:4.321500px;}
.ws8f{word-spacing:4.368000px;}
.ws5f{word-spacing:4.374000px;}
.ws7f{word-spacing:4.386000px;}
.ws38{word-spacing:4.450500px;}
.ws4b{word-spacing:4.515000px;}
.ws67{word-spacing:4.579500px;}
.ws65{word-spacing:4.644000px;}
.ws66{word-spacing:4.708500px;}
.ws39{word-spacing:4.773000px;}
.ws75{word-spacing:4.837500px;}
.ws29{word-spacing:4.902000px;}
.ws7a{word-spacing:4.966500px;}
.ws7b{word-spacing:5.031000px;}
.ws59{word-spacing:5.095500px;}
.ws1d{word-spacing:5.160000px;}
.ws68{word-spacing:5.224500px;}
.ws60{word-spacing:5.289000px;}
.ws6e{word-spacing:5.353500px;}
.ws51{word-spacing:5.418000px;}
.ws24{word-spacing:5.482500px;}
.ws3e{word-spacing:5.547000px;}
.ws5{word-spacing:5.568000px;}
.ws2a{word-spacing:5.611500px;}
.ws58{word-spacing:5.676000px;}
.ws54{word-spacing:5.740500px;}
.ws56{word-spacing:5.805000px;}
.ws5c{word-spacing:5.869500px;}
.ws61{word-spacing:5.934000px;}
.ws3d{word-spacing:6.063000px;}
.ws77{word-spacing:6.256500px;}
.ws7e{word-spacing:6.385500px;}
.ws45{word-spacing:6.450000px;}
.ws3{word-spacing:10.656000px;}
.ws2{word-spacing:13.344000px;}
.ws16{word-spacing:23.478000px;}
._3{margin-left:-19.488000px;}
._0{margin-left:-13.348800px;}
._4{margin-left:-3.120000px;}
._6{margin-left:-1.003200px;}
._9{width:1.290000px;}
._b{width:3.575400px;}
._e{width:6.450000px;}
._2{width:7.680000px;}
._1{width:11.328000px;}
._5{width:13.344000px;}
._c{width:23.478000px;}
._d{width:40.175400px;}
._8{width:53.675400px;}
._7{width:55.943400px;}
._a{width:57.240000px;}
.fc2{color:rgb(95,116,144);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:31.500000px;}
.fsc{font-size:35.100000px;}
.fs10{font-size:36.000000px;}
.fsb{font-size:41.925000px;}
.fse{font-size:42.000000px;}
.fs4{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fsd{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs7{font-size:64.500000px;}
.fs1{font-size:66.000000px;}
.fsa{font-size:78.000000px;}
.fs6{font-size:84.000000px;}
.fs3{font-size:90.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.039350px;}
.yaa{bottom:138.195000px;}
.y61{bottom:138.201000px;}
.y199{bottom:138.312825px;}
.y133{bottom:138.328350px;}
.yd{bottom:140.314950px;}
.y89{bottom:142.239000px;}
.yc{bottom:152.314950px;}
.y60{bottom:155.791500px;}
.y198{bottom:159.097950px;}
.y132{bottom:159.597225px;}
.ya9{bottom:159.835500px;}
.y1bc{bottom:168.743400px;}
.yb{bottom:170.699700px;}
.y5f{bottom:173.382000px;}
.ya8{bottom:173.394000px;}
.y158{bottom:173.400000px;}
.y131{bottom:180.866100px;}
.y1bb{bottom:183.131400px;}
.ya{bottom:187.739700px;}
.y5e{bottom:190.984500px;}
.y157{bottom:190.990500px;}
.y176{bottom:195.577575px;}
.y1ba{bottom:197.519400px;}
.y130{bottom:202.134975px;}
.y88{bottom:202.509375px;}
.y197{bottom:205.160850px;}
.y156{bottom:208.581000px;}
.y9{bottom:209.327700px;}
.y5d{bottom:212.625000px;}
.y109{bottom:212.749500px;}
.y175{bottom:216.362700px;}
.y1b9{bottom:217.518600px;}
.y8{bottom:222.119700px;}
.yd1{bottom:223.167300px;}
.y87{bottom:223.294500px;}
.yee{bottom:223.299075px;}
.y12f{bottom:223.403850px;}
.y5c{bottom:226.183500px;}
.ya7{bottom:230.221500px;}
.y1b8{bottom:231.906600px;}
.y108{bottom:233.534625px;}
.y174{bottom:237.147825px;}
.y7{bottom:241.295700px;}
.y5b{bottom:243.774000px;}
.yd0{bottom:243.952425px;}
.y86{bottom:244.079625px;}
.yed{bottom:244.084125px;}
.y12e{bottom:244.672725px;}
.y1b7{bottom:246.294600px;}
.y6{bottom:254.087700px;}
.y107{bottom:254.319750px;}
.y173{bottom:257.932950px;}
.y196{bottom:260.515350px;}
.y85{bottom:264.864750px;}
.yec{bottom:264.869250px;}
.y5a{bottom:265.414500px;}
.y12d{bottom:265.941600px;}
.y106{bottom:275.104875px;}
.ycf{bottom:275.138175px;}
.y172{bottom:278.718075px;}
.y195{bottom:281.300475px;}
.y155{bottom:285.494175px;}
.ya6{bottom:285.503325px;}
.y84{bottom:285.649875px;}
.y1b6{bottom:295.812300px;}
.y105{bottom:295.890000px;}
.yce{bottom:295.923300px;}
.yeb{bottom:296.055075px;}
.y12c{bottom:297.611100px;}
.y171{bottom:299.503200px;}
.y194{bottom:302.087475px;}
.y154{bottom:306.279300px;}
.ya5{bottom:306.288450px;}
.y83{bottom:306.435000px;}
.y1b5{bottom:316.597425px;}
.y104{bottom:316.675125px;}
.ycd{bottom:316.708425px;}
.yea{bottom:316.840200px;}
.y12b{bottom:318.879975px;}
.y170{bottom:320.288325px;}
.y2f{bottom:321.769350px;}
.y193{bottom:322.872600px;}
.y153{bottom:327.064425px;}
.y59{bottom:330.528300px;}
.y1b4{bottom:337.382550px;}
.y103{bottom:337.460250px;}
.ya4{bottom:337.474200px;}
.ycc{bottom:337.493550px;}
.ye9{bottom:337.625325px;}
.y82{bottom:337.638225px;}
.y2e{bottom:339.364350px;}
.y12a{bottom:340.148850px;}
.y16f{bottom:341.073450px;}
.y152{bottom:347.867025px;}
.y58{bottom:351.313425px;}
.y2d{bottom:356.959350px;}
.y102{bottom:358.245375px;}
.ya3{bottom:358.259325px;}
.ycb{bottom:358.278675px;}
.ye8{bottom:358.410450px;}
.y81{bottom:358.423350px;}
.y129{bottom:361.417725px;}
.y1b3{bottom:368.568300px;}
.y151{bottom:368.652150px;}
.y192{bottom:368.935350px;}
.y57{bottom:372.098550px;}
.y2c{bottom:374.554350px;}
.ya2{bottom:379.044450px;}
.y101{bottom:379.065675px;}
.ye7{bottom:379.195575px;}
.y80{bottom:379.208475px;}
.y128{bottom:382.686600px;}
.y16e{bottom:387.136200px;}
.y150{bottom:389.437275px;}
.yca{bottom:389.464425px;}
.y2b{bottom:392.149350px;}
.y56{bottom:392.883675px;}
.y1b2{bottom:399.753975px;}
.ya1{bottom:399.829575px;}
.y100{bottom:399.850800px;}
.ye6{bottom:399.980700px;}
.y7f{bottom:399.993600px;}
.y127{bottom:403.955475px;}
.y2a{bottom:409.744350px;}
.yc9{bottom:410.249550px;}
.y55{bottom:413.690025px;}
.y35{bottom:417.557250px;}
.y1b1{bottom:420.539175px;}
.ya0{bottom:420.614700px;}
.y14f{bottom:420.623025px;}
.ye5{bottom:420.765825px;}
.y7e{bottom:420.778725px;}
.y191{bottom:424.344675px;}
.y126{bottom:425.224350px;}
.y29{bottom:427.339350px;}
.yc8{bottom:431.034675px;}
.yff{bottom:431.036550px;}
.y34{bottom:431.945250px;}
.y54{bottom:434.475150px;}
.y9f{bottom:441.399825px;}
.y14e{bottom:441.408150px;}
.ye4{bottom:441.550950px;}
.y7d{bottom:441.563850px;}
.y28{bottom:444.934350px;}
.y190{bottom:445.129800px;}
.y33{bottom:446.333250px;}
.y125{bottom:446.493225px;}
.y1b0{bottom:451.724925px;}
.yc7{bottom:451.819800px;}
.yfe{bottom:451.821675px;}
.y53{bottom:455.260275px;}
.y16d{bottom:455.263350px;}
.y32{bottom:460.721250px;}
.y9e{bottom:462.184950px;}
.y14d{bottom:462.193275px;}
.y7c{bottom:462.348975px;}
.y27{bottom:462.529350px;}
.y18f{bottom:465.914925px;}
.y124{bottom:467.762100px;}
.y1af{bottom:472.510050px;}
.yc6{bottom:472.604925px;}
.yfd{bottom:472.606800px;}
.y31{bottom:475.109250px;}
.y52{bottom:476.045400px;}
.y16c{bottom:476.048475px;}
.y9d{bottom:482.970075px;}
.y14c{bottom:482.978400px;}
.y18e{bottom:486.700050px;}
.y26{bottom:487.322250px;}
.ye3{bottom:487.613850px;}
.y123{bottom:489.030975px;}
.y30{bottom:489.497250px;}
.yc5{bottom:493.390050px;}
.yfc{bottom:493.391925px;}
.y7b{bottom:493.534725px;}
.y51{bottom:496.830525px;}
.y16b{bottom:496.833600px;}
.y1ae{bottom:503.695800px;}
.y14b{bottom:503.763525px;}
.y122{bottom:510.299850px;}
.y9c{bottom:514.155825px;}
.yc4{bottom:514.175175px;}
.yfb{bottom:514.177050px;}
.y7a{bottom:514.319850px;}
.y50{bottom:517.615650px;}
.y16a{bottom:517.618725px;}
.y18d{bottom:517.885800px;}
.y14a{bottom:524.548650px;}
.y1f{bottom:527.972850px;}
.y121{bottom:531.568725px;}
.y1ad{bottom:534.881550px;}
.y9b{bottom:534.940950px;}
.yc3{bottom:534.960300px;}
.yfa{bottom:534.962175px;}
.y79{bottom:535.104975px;}
.y4f{bottom:538.400775px;}
.y169{bottom:538.403850px;}
.y18c{bottom:538.670925px;}
.y149{bottom:545.333775px;}
.y1e{bottom:545.567850px;}
.y120{bottom:552.837600px;}
.y9a{bottom:555.726075px;}
.ye2{bottom:555.730650px;}
.yc2{bottom:555.745425px;}
.yf9{bottom:555.747300px;}
.y78{bottom:555.890100px;}
.y168{bottom:559.188975px;}
.y18b{bottom:559.456050px;}
.y1d{bottom:563.162850px;}
.y1ac{bottom:566.067300px;}
.y148{bottom:566.118900px;}
.y4e{bottom:569.586525px;}
.y99{bottom:576.511200px;}
.ye1{bottom:576.515775px;}
.yc1{bottom:576.530550px;}
.yf8{bottom:576.532425px;}
.y167{bottom:579.974100px;}
.y18a{bottom:580.241175px;}
.y1c{bottom:580.757850px;}
.y11f{bottom:584.507100px;}
.y147{bottom:586.904100px;}
.y77{bottom:587.075850px;}
.y4d{bottom:590.371650px;}
.y1ab{bottom:597.253050px;}
.y98{bottom:597.296325px;}
.ye0{bottom:597.300825px;}
.yf7{bottom:597.317550px;}
.y1b{bottom:598.352850px;}
.y189{bottom:601.026300px;}
.y11e{bottom:605.775975px;}
.yc0{bottom:607.716300px;}
.y76{bottom:607.860975px;}
.y4c{bottom:611.156775px;}
.y166{bottom:611.159850px;}
.y1a{bottom:615.947850px;}
.ydf{bottom:618.085950px;}
.y146{bottom:618.089775px;}
.y97{bottom:618.090600px;}
.yf6{bottom:618.102675px;}
.y188{bottom:621.811425px;}
.y25{bottom:623.760750px;}
.y11d{bottom:627.044850px;}
.y1aa{bottom:628.438800px;}
.ybf{bottom:628.501425px;}
.y75{bottom:628.646100px;}
.y4b{bottom:631.941900px;}
.y165{bottom:631.944975px;}
.y19{bottom:633.542850px;}
.y24{bottom:638.148750px;}
.y145{bottom:638.874975px;}
.y96{bottom:638.875725px;}
.y187{bottom:642.596550px;}
.y11c{bottom:648.313725px;}
.y1a9{bottom:649.223925px;}
.yde{bottom:649.271775px;}
.ybe{bottom:649.286550px;}
.yf5{bottom:649.288425px;}
.y74{bottom:649.431225px;}
.y18{bottom:651.137850px;}
.y23{bottom:652.536750px;}
.y164{bottom:652.730100px;}
.y144{bottom:659.660025px;}
.y95{bottom:659.660850px;}
.y4a{bottom:663.127650px;}
.y22{bottom:666.924750px;}
.y17{bottom:668.732850px;}
.y1a8{bottom:670.009050px;}
.ydd{bottom:670.056900px;}
.ybd{bottom:670.071675px;}
.yf4{bottom:670.073550px;}
.y73{bottom:670.216350px;}
.y163{bottom:673.515225px;}
.y186{bottom:673.782300px;}
.y143{bottom:680.445150px;}
.y94{bottom:680.445975px;}
.y21{bottom:681.312750px;}
.y49{bottom:683.912775px;}
.y11b{bottom:690.367725px;}
.ydc{bottom:690.842025px;}
.ybc{bottom:690.856800px;}
.yf3{bottom:690.858675px;}
.y72{bottom:691.001475px;}
.y16{bottom:693.525900px;}
.y162{bottom:694.300350px;}
.y185{bottom:694.567425px;}
.y20{bottom:695.700750px;}
.y1a7{bottom:701.194800px;}
.y142{bottom:701.230275px;}
.y93{bottom:701.231100px;}
.y48{bottom:704.697900px;}
.y11a{bottom:708.443850px;}
.ydb{bottom:711.627150px;}
.ybb{bottom:711.641925px;}
.yf2{bottom:711.643800px;}
.y71{bottom:711.786600px;}
.y161{bottom:715.085475px;}
.y184{bottom:715.352550px;}
.y1a6{bottom:721.979850px;}
.y141{bottom:722.015400px;}
.y92{bottom:722.016225px;}
.y47{bottom:725.483025px;}
.y119{bottom:726.519975px;}
.yda{bottom:732.412275px;}
.yf1{bottom:732.428925px;}
.y70{bottom:732.571725px;}
.y160{bottom:735.870600px;}
.y140{bottom:742.800525px;}
.yba{bottom:742.827675px;}
.y118{bottom:744.596100px;}
.y46{bottom:746.268150px;}
.y1a5{bottom:753.165600px;}
.yd9{bottom:753.199275px;}
.y91{bottom:753.201975px;}
.yf0{bottom:753.214050px;}
.y6f{bottom:753.356850px;}
.y183{bottom:755.036175px;}
.y15f{bottom:756.655800px;}
.y117{bottom:762.672225px;}
.y13f{bottom:763.585650px;}
.yb9{bottom:763.612800px;}
.y15{bottom:769.315425px;}
.y182{bottom:772.628550px;}
.y90{bottom:773.987100px;}
.yd8{bottom:773.999175px;}
.y45{bottom:777.453900px;}
.y116{bottom:780.748350px;}
.y1a4{bottom:784.351425px;}
.yb8{bottom:784.397925px;}
.y15e{bottom:787.841475px;}
.y181{bottom:790.220925px;}
.y8f{bottom:794.772225px;}
.y13e{bottom:794.783475px;}
.yd7{bottom:794.784300px;}
.y44{bottom:798.239025px;}
.y115{bottom:798.824475px;}
.y6e{bottom:799.419600px;}
.y1a3{bottom:805.136550px;}
.yb7{bottom:805.183050px;}
.yef{bottom:805.184925px;}
.y14{bottom:807.692925px;}
.y180{bottom:807.813300px;}
.y15d{bottom:808.626600px;}
.y8e{bottom:815.557350px;}
.y13d{bottom:815.568600px;}
.y114{bottom:816.900600px;}
.y43{bottom:819.024150px;}
.y13{bottom:825.285300px;}
.y17f{bottom:825.405675px;}
.yb6{bottom:825.968175px;}
.yd6{bottom:825.970050px;}
.y15c{bottom:829.411725px;}
.y1a2{bottom:836.322300px;}
.y8d{bottom:836.342475px;}
.y13c{bottom:836.353725px;}
.y42{bottom:839.809275px;}
.y17e{bottom:842.998050px;}
.yb5{bottom:846.753300px;}
.yd5{bottom:846.755175px;}
.y15b{bottom:850.200225px;}
.y113{bottom:855.761850px;}
.y1a1{bottom:857.107350px;}
.y8c{bottom:857.127600px;}
.y13b{bottom:857.138850px;}
.y17d{bottom:860.590425px;}
.y41{bottom:860.594400px;}
.yb4{bottom:867.538425px;}
.y6d{bottom:867.540300px;}
.y112{bottom:877.030725px;}
.y13a{bottom:877.923975px;}
.y40{bottom:881.379525px;}
.y15a{bottom:881.385975px;}
.y17c{bottom:886.696800px;}
.y1a0{bottom:888.293175px;}
.yb3{bottom:888.323550px;}
.y6c{bottom:888.325425px;}
.y111{bottom:898.299600px;}
.y139{bottom:898.709100px;}
.y3f{bottom:902.171100px;}
.y17b{bottom:904.289175px;}
.y19f{bottom:909.078300px;}
.yb2{bottom:909.108675px;}
.y6b{bottom:909.110550px;}
.y110{bottom:919.568475px;}
.y17a{bottom:921.881550px;}
.y3e{bottom:922.956225px;}
.yb1{bottom:929.893800px;}
.y138{bottom:929.894850px;}
.y6a{bottom:929.895675px;}
.y12{bottom:935.951175px;}
.y179{bottom:939.473925px;}
.y19e{bottom:940.264050px;}
.y3d{bottom:943.741350px;}
.yb0{bottom:950.678925px;}
.y137{bottom:950.679975px;}
.y69{bottom:950.680800px;}
.y10f{bottom:951.237975px;}
.y11{bottom:956.736300px;}
.y178{bottom:957.066300px;}
.y3c{bottom:964.526400px;}
.y19d{bottom:971.449800px;}
.y136{bottom:971.465100px;}
.y68{bottom:971.465925px;}
.y10e{bottom:972.506850px;}
.y177{bottom:974.658675px;}
.y159{bottom:974.927100px;}
.y10{bottom:977.514150px;}
.yaf{bottom:981.864675px;}
.yd4{bottom:981.866550px;}
.y135{bottom:992.250225px;}
.y67{bottom:992.251050px;}
.y10d{bottom:993.775725px;}
.y3b{bottom:995.712225px;}
.y19c{bottom:1002.635550px;}
.yae{bottom:1002.649800px;}
.yd3{bottom:1002.651675px;}
.y134{bottom:1013.035350px;}
.y66{bottom:1013.036175px;}
.y10c{bottom:1015.044600px;}
.y3a{bottom:1016.497350px;}
.yf{bottom:1021.908150px;}
.yad{bottom:1023.434925px;}
.yd2{bottom:1023.436800px;}
.y65{bottom:1033.821300px;}
.y19b{bottom:1033.821375px;}
.y10b{bottom:1036.313475px;}
.y39{bottom:1037.282475px;}
.yac{bottom:1044.220050px;}
.y8b{bottom:1044.221925px;}
.y64{bottom:1054.606425px;}
.y19a{bottom:1054.606500px;}
.y10a{bottom:1057.582350px;}
.y38{bottom:1058.067600px;}
.yab{bottom:1065.005175px;}
.y8a{bottom:1065.007050px;}
.ye{bottom:1066.293000px;}
.y63{bottom:1085.792175px;}
.y37{bottom:1104.130500px;}
.y62{bottom:1106.577300px;}
.y2{bottom:1143.595500px;}
.y3{bottom:1163.957400px;}
.y36{bottom:1172.803650px;}
.y5{bottom:1193.874900px;}
.y4{bottom:1207.374900px;}
.h12{height:29.191500px;}
.h5{height:35.232000px;}
.h3{height:35.664000px;}
.h24{height:39.281250px;}
.hc{height:39.920000px;}
.h23{height:42.020508px;}
.hd{height:42.415000px;}
.ha{height:43.320000px;}
.h13{height:44.910000px;}
.h14{height:45.367500px;}
.h15{height:45.391500px;}
.hb{height:49.900000px;}
.h9{height:53.642500px;}
.hf{height:53.642800px;}
.h1e{height:54.076925px;}
.h16{height:54.128525px;}
.h11{height:54.132725px;}
.h21{height:54.147725px;}
.h1b{height:54.158525px;}
.h18{height:54.168725px;}
.h20{height:54.169325px;}
.h1d{height:54.176825px;}
.h19{height:54.181025px;}
.h10{height:54.191825px;}
.h1f{height:54.194525px;}
.h22{height:54.203525px;}
.h1a{height:54.209525px;}
.h1c{height:54.210125px;}
.h17{height:54.217625px;}
.h2{height:54.890000px;}
.he{height:57.096000px;}
.h7{height:61.488000px;}
.h8{height:69.860000px;}
.h4{height:77.400000px;}
.h6{height:77.976000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x4{left:90.100800px;}
.xe{left:93.543300px;}
.x11{left:106.115550px;}
.x5{left:110.548800px;}
.x12{left:136.058850px;}
.x6{left:145.195650px;}
.x7{left:150.820650px;}
.xc{left:153.072450px;}
.xf{left:263.682000px;}
.xd{left:341.347950px;}
.xb{left:558.084075px;}
.x2{left:630.635850px;}
.x3{left:681.492300px;}
.xa{left:685.165200px;}
.x8{left:705.032550px;}
.x9{left:737.064150px;}
.x10{left:750.168750px;}
@media print{
.v2{vertical-align:-14.400000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.378667pt;}
.v1{vertical-align:17.177067pt;}
.lsa{letter-spacing:-1.146667pt;}
.ls1a{letter-spacing:-1.032000pt;}
.ls9{letter-spacing:-0.573333pt;}
.lsb{letter-spacing:-0.516000pt;}
.lsc{letter-spacing:-0.401333pt;}
.ls14{letter-spacing:-0.372667pt;}
.ls8{letter-spacing:-0.362667pt;}
.ls15{letter-spacing:-0.344000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.006400pt;}
.ls19{letter-spacing:0.012800pt;}
.ls18{letter-spacing:0.013867pt;}
.ls13{letter-spacing:0.114667pt;}
.lsd{letter-spacing:0.172000pt;}
.lse{letter-spacing:0.286667pt;}
.ls12{letter-spacing:0.315333pt;}
.ls11{letter-spacing:0.372667pt;}
.ls3{letter-spacing:0.426667pt;}
.ls10{letter-spacing:0.573333pt;}
.ls5{letter-spacing:0.853333pt;}
.ls1{letter-spacing:2.346667pt;}
.lsf{letter-spacing:3.251667pt;}
.ls17{letter-spacing:5.056000pt;}
.ls2{letter-spacing:8.880000pt;}
.ls7{letter-spacing:1824.572800pt;}
.ls6{letter-spacing:2039.314667pt;}
.ls0{letter-spacing:2502.973333pt;}
.ws73{word-spacing:-11.982667pt;}
.ws12{word-spacing:-11.674667pt;}
.ws87{word-spacing:-11.581333pt;}
.ws81{word-spacing:-11.409333pt;}
.ws88{word-spacing:-10.262667pt;}
.ws89{word-spacing:-9.576000pt;}
.ws4a{word-spacing:-9.552000pt;}
.ws13{word-spacing:-9.021333pt;}
.ws0{word-spacing:-8.661333pt;}
.ws37{word-spacing:-8.658667pt;}
.ws74{word-spacing:-7.788733pt;}
.ws14{word-spacing:-7.416067pt;}
.ws80{word-spacing:-7.043400pt;}
.ws15{word-spacing:-6.208800pt;}
.ws6{word-spacing:-0.853333pt;}
.ws7d{word-spacing:-0.573333pt;}
.ws8a{word-spacing:-0.172000pt;}
.ws1{word-spacing:0.000000pt;}
.ws11{word-spacing:0.042667pt;}
.ws23{word-spacing:0.057333pt;}
.ws63{word-spacing:0.114667pt;}
.wsf{word-spacing:0.170667pt;}
.ws2f{word-spacing:0.172000pt;}
.ws1a{word-spacing:0.229333pt;}
.ws2e{word-spacing:0.286667pt;}
.ws10{word-spacing:0.341333pt;}
.ws8b{word-spacing:0.344000pt;}
.ws72{word-spacing:0.401333pt;}
.ws3a{word-spacing:0.458667pt;}
.ws83{word-spacing:0.480000pt;}
.wsb{word-spacing:0.512000pt;}
.ws40{word-spacing:0.516000pt;}
.ws32{word-spacing:0.528000pt;}
.wsd{word-spacing:0.554667pt;}
.ws30{word-spacing:0.573333pt;}
.ws8e{word-spacing:0.597333pt;}
.ws5e{word-spacing:0.624000pt;}
.ws1f{word-spacing:0.630667pt;}
.ws6d{word-spacing:0.688000pt;}
.ws6b{word-spacing:0.745333pt;}
.ws5d{word-spacing:0.768000pt;}
.ws4c{word-spacing:0.802667pt;}
.ws3b{word-spacing:0.860000pt;}
.ws6c{word-spacing:0.864000pt;}
.ws21{word-spacing:0.917333pt;}
.ws3c{word-spacing:0.974667pt;}
.wse{word-spacing:1.024000pt;}
.ws76{word-spacing:1.032000pt;}
.ws4f{word-spacing:1.089333pt;}
.ws20{word-spacing:1.146667pt;}
.ws31{word-spacing:1.152000pt;}
.ws70{word-spacing:1.204000pt;}
.ws6f{word-spacing:1.261333pt;}
.ws84{word-spacing:1.296000pt;}
.ws62{word-spacing:1.318667pt;}
.ws3f{word-spacing:1.376000pt;}
.ws34{word-spacing:1.488000pt;}
.ws25{word-spacing:1.548000pt;}
.ws35{word-spacing:1.584000pt;}
.ws41{word-spacing:1.605333pt;}
.ws79{word-spacing:1.662667pt;}
.ws69{word-spacing:1.720000pt;}
.ws86{word-spacing:1.777333pt;}
.ws4{word-spacing:1.792000pt;}
.ws1b{word-spacing:1.834667pt;}
.ws18{word-spacing:1.892000pt;}
.ws8c{word-spacing:1.920000pt;}
.ws57{word-spacing:1.949333pt;}
.ws47{word-spacing:2.006667pt;}
.ws22{word-spacing:2.064000pt;}
.ws82{word-spacing:2.121333pt;}
.ws7c{word-spacing:2.178667pt;}
.ws8{word-spacing:2.218667pt;}
.ws64{word-spacing:2.236000pt;}
.ws17{word-spacing:2.293333pt;}
.ws8d{word-spacing:2.346667pt;}
.ws1c{word-spacing:2.350667pt;}
.wsa{word-spacing:2.389333pt;}
.ws1e{word-spacing:2.408000pt;}
.ws4e{word-spacing:2.465333pt;}
.ws48{word-spacing:2.522667pt;}
.wsc{word-spacing:2.560000pt;}
.ws46{word-spacing:2.580000pt;}
.ws42{word-spacing:2.637333pt;}
.ws36{word-spacing:2.688000pt;}
.ws53{word-spacing:2.694667pt;}
.ws85{word-spacing:2.736000pt;}
.ws7{word-spacing:2.752000pt;}
.ws28{word-spacing:2.809333pt;}
.ws43{word-spacing:2.866667pt;}
.ws9{word-spacing:2.901333pt;}
.ws44{word-spacing:2.924000pt;}
.ws49{word-spacing:2.981333pt;}
.ws2c{word-spacing:3.038667pt;}
.ws78{word-spacing:3.096000pt;}
.ws71{word-spacing:3.153333pt;}
.ws33{word-spacing:3.168000pt;}
.ws55{word-spacing:3.210667pt;}
.ws2b{word-spacing:3.268000pt;}
.ws5a{word-spacing:3.325333pt;}
.ws52{word-spacing:3.382667pt;}
.ws6a{word-spacing:3.440000pt;}
.ws50{word-spacing:3.497333pt;}
.ws19{word-spacing:3.554667pt;}
.ws26{word-spacing:3.612000pt;}
.ws4d{word-spacing:3.669333pt;}
.ws27{word-spacing:3.726667pt;}
.ws2d{word-spacing:3.784000pt;}
.ws5b{word-spacing:3.841333pt;}
.ws8f{word-spacing:3.882667pt;}
.ws5f{word-spacing:3.888000pt;}
.ws7f{word-spacing:3.898667pt;}
.ws38{word-spacing:3.956000pt;}
.ws4b{word-spacing:4.013333pt;}
.ws67{word-spacing:4.070667pt;}
.ws65{word-spacing:4.128000pt;}
.ws66{word-spacing:4.185333pt;}
.ws39{word-spacing:4.242667pt;}
.ws75{word-spacing:4.300000pt;}
.ws29{word-spacing:4.357333pt;}
.ws7a{word-spacing:4.414667pt;}
.ws7b{word-spacing:4.472000pt;}
.ws59{word-spacing:4.529333pt;}
.ws1d{word-spacing:4.586667pt;}
.ws68{word-spacing:4.644000pt;}
.ws60{word-spacing:4.701333pt;}
.ws6e{word-spacing:4.758667pt;}
.ws51{word-spacing:4.816000pt;}
.ws24{word-spacing:4.873333pt;}
.ws3e{word-spacing:4.930667pt;}
.ws5{word-spacing:4.949333pt;}
.ws2a{word-spacing:4.988000pt;}
.ws58{word-spacing:5.045333pt;}
.ws54{word-spacing:5.102667pt;}
.ws56{word-spacing:5.160000pt;}
.ws5c{word-spacing:5.217333pt;}
.ws61{word-spacing:5.274667pt;}
.ws3d{word-spacing:5.389333pt;}
.ws77{word-spacing:5.561333pt;}
.ws7e{word-spacing:5.676000pt;}
.ws45{word-spacing:5.733333pt;}
.ws3{word-spacing:9.472000pt;}
.ws2{word-spacing:11.861333pt;}
.ws16{word-spacing:20.869333pt;}
._3{margin-left:-17.322667pt;}
._0{margin-left:-11.865600pt;}
._4{margin-left:-2.773333pt;}
._6{margin-left:-0.891733pt;}
._9{width:1.146667pt;}
._b{width:3.178133pt;}
._e{width:5.733333pt;}
._2{width:6.826667pt;}
._1{width:10.069333pt;}
._5{width:11.861333pt;}
._c{width:20.869333pt;}
._d{width:35.711467pt;}
._8{width:47.711467pt;}
._7{width:49.727467pt;}
._a{width:50.880000pt;}
.fsf{font-size:28.000000pt;}
.fsc{font-size:31.200000pt;}
.fs10{font-size:32.000000pt;}
.fsb{font-size:37.266667pt;}
.fse{font-size:37.333333pt;}
.fs4{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fsd{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs7{font-size:57.333333pt;}
.fs1{font-size:58.666667pt;}
.fsa{font-size:69.333333pt;}
.fs6{font-size:74.666667pt;}
.fs3{font-size:80.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.590533pt;}
.yaa{bottom:122.840000pt;}
.y61{bottom:122.845333pt;}
.y199{bottom:122.944733pt;}
.y133{bottom:122.958533pt;}
.yd{bottom:124.724400pt;}
.y89{bottom:126.434667pt;}
.yc{bottom:135.391067pt;}
.y60{bottom:138.481333pt;}
.y198{bottom:141.420400pt;}
.y132{bottom:141.864200pt;}
.ya9{bottom:142.076000pt;}
.y1bc{bottom:149.994133pt;}
.yb{bottom:151.733067pt;}
.y5f{bottom:154.117333pt;}
.ya8{bottom:154.128000pt;}
.y158{bottom:154.133333pt;}
.y131{bottom:160.769867pt;}
.y1bb{bottom:162.783467pt;}
.ya{bottom:166.879733pt;}
.y5e{bottom:169.764000pt;}
.y157{bottom:169.769333pt;}
.y176{bottom:173.846733pt;}
.y1ba{bottom:175.572800pt;}
.y130{bottom:179.675533pt;}
.y88{bottom:180.008333pt;}
.y197{bottom:182.365200pt;}
.y156{bottom:185.405333pt;}
.y9{bottom:186.069067pt;}
.y5d{bottom:189.000000pt;}
.y109{bottom:189.110667pt;}
.y175{bottom:192.322400pt;}
.y1b9{bottom:193.349867pt;}
.y8{bottom:197.439733pt;}
.yd1{bottom:198.370933pt;}
.y87{bottom:198.484000pt;}
.yee{bottom:198.488067pt;}
.y12f{bottom:198.581200pt;}
.y5c{bottom:201.052000pt;}
.ya7{bottom:204.641333pt;}
.y1b8{bottom:206.139200pt;}
.y108{bottom:207.586333pt;}
.y174{bottom:210.798067pt;}
.y7{bottom:214.485067pt;}
.y5b{bottom:216.688000pt;}
.yd0{bottom:216.846600pt;}
.y86{bottom:216.959667pt;}
.yed{bottom:216.963667pt;}
.y12e{bottom:217.486867pt;}
.y1b7{bottom:218.928533pt;}
.y6{bottom:225.855733pt;}
.y107{bottom:226.062000pt;}
.y173{bottom:229.273733pt;}
.y196{bottom:231.569200pt;}
.y85{bottom:235.435333pt;}
.yec{bottom:235.439333pt;}
.y5a{bottom:235.924000pt;}
.y12d{bottom:236.392533pt;}
.y106{bottom:244.537667pt;}
.ycf{bottom:244.567267pt;}
.y172{bottom:247.749400pt;}
.y195{bottom:250.044867pt;}
.y155{bottom:253.772600pt;}
.ya6{bottom:253.780733pt;}
.y84{bottom:253.911000pt;}
.y1b6{bottom:262.944267pt;}
.y105{bottom:263.013333pt;}
.yce{bottom:263.042933pt;}
.yeb{bottom:263.160067pt;}
.y12c{bottom:264.543200pt;}
.y171{bottom:266.225067pt;}
.y194{bottom:268.522200pt;}
.y154{bottom:272.248267pt;}
.ya5{bottom:272.256400pt;}
.y83{bottom:272.386667pt;}
.y1b5{bottom:281.419933pt;}
.y104{bottom:281.489000pt;}
.ycd{bottom:281.518600pt;}
.yea{bottom:281.635733pt;}
.y12b{bottom:283.448867pt;}
.y170{bottom:284.700733pt;}
.y2f{bottom:286.017200pt;}
.y193{bottom:286.997867pt;}
.y153{bottom:290.723933pt;}
.y59{bottom:293.802933pt;}
.y1b4{bottom:299.895600pt;}
.y103{bottom:299.964667pt;}
.ya4{bottom:299.977067pt;}
.ycc{bottom:299.994267pt;}
.ye9{bottom:300.111400pt;}
.y82{bottom:300.122867pt;}
.y2e{bottom:301.657200pt;}
.y12a{bottom:302.354533pt;}
.y16f{bottom:303.176400pt;}
.y152{bottom:309.215133pt;}
.y58{bottom:312.278600pt;}
.y2d{bottom:317.297200pt;}
.y102{bottom:318.440333pt;}
.ya3{bottom:318.452733pt;}
.ycb{bottom:318.469933pt;}
.ye8{bottom:318.587067pt;}
.y81{bottom:318.598533pt;}
.y129{bottom:321.260200pt;}
.y1b3{bottom:327.616267pt;}
.y151{bottom:327.690800pt;}
.y192{bottom:327.942533pt;}
.y57{bottom:330.754267pt;}
.y2c{bottom:332.937200pt;}
.ya2{bottom:336.928400pt;}
.y101{bottom:336.947267pt;}
.ye7{bottom:337.062733pt;}
.y80{bottom:337.074200pt;}
.y128{bottom:340.165867pt;}
.y16e{bottom:344.121067pt;}
.y150{bottom:346.166467pt;}
.yca{bottom:346.190600pt;}
.y2b{bottom:348.577200pt;}
.y56{bottom:349.229933pt;}
.y1b2{bottom:355.336867pt;}
.ya1{bottom:355.404067pt;}
.y100{bottom:355.422933pt;}
.ye6{bottom:355.538400pt;}
.y7f{bottom:355.549867pt;}
.y127{bottom:359.071533pt;}
.y2a{bottom:364.217200pt;}
.yc9{bottom:364.666267pt;}
.y55{bottom:367.724467pt;}
.y35{bottom:371.162000pt;}
.y1b1{bottom:373.812600pt;}
.ya0{bottom:373.879733pt;}
.y14f{bottom:373.887133pt;}
.ye5{bottom:374.014067pt;}
.y7e{bottom:374.025533pt;}
.y191{bottom:377.195267pt;}
.y126{bottom:377.977200pt;}
.y29{bottom:379.857200pt;}
.yc8{bottom:383.141933pt;}
.yff{bottom:383.143600pt;}
.y34{bottom:383.951333pt;}
.y54{bottom:386.200133pt;}
.y9f{bottom:392.355400pt;}
.y14e{bottom:392.362800pt;}
.ye4{bottom:392.489733pt;}
.y7d{bottom:392.501200pt;}
.y28{bottom:395.497200pt;}
.y190{bottom:395.670933pt;}
.y33{bottom:396.740667pt;}
.y125{bottom:396.882867pt;}
.y1b0{bottom:401.533267pt;}
.yc7{bottom:401.617600pt;}
.yfe{bottom:401.619267pt;}
.y53{bottom:404.675800pt;}
.y16d{bottom:404.678533pt;}
.y32{bottom:409.530000pt;}
.y9e{bottom:410.831067pt;}
.y14d{bottom:410.838467pt;}
.y7c{bottom:410.976867pt;}
.y27{bottom:411.137200pt;}
.y18f{bottom:414.146600pt;}
.y124{bottom:415.788533pt;}
.y1af{bottom:420.008933pt;}
.yc6{bottom:420.093267pt;}
.yfd{bottom:420.094933pt;}
.y31{bottom:422.319333pt;}
.y52{bottom:423.151467pt;}
.y16c{bottom:423.154200pt;}
.y9d{bottom:429.306733pt;}
.y14c{bottom:429.314133pt;}
.y18e{bottom:432.622267pt;}
.y26{bottom:433.175333pt;}
.ye3{bottom:433.434533pt;}
.y123{bottom:434.694200pt;}
.y30{bottom:435.108667pt;}
.yc5{bottom:438.568933pt;}
.yfc{bottom:438.570600pt;}
.y7b{bottom:438.697533pt;}
.y51{bottom:441.627133pt;}
.y16b{bottom:441.629867pt;}
.y1ae{bottom:447.729600pt;}
.y14b{bottom:447.789800pt;}
.y122{bottom:453.599867pt;}
.y9c{bottom:457.027400pt;}
.yc4{bottom:457.044600pt;}
.yfb{bottom:457.046267pt;}
.y7a{bottom:457.173200pt;}
.y50{bottom:460.102800pt;}
.y16a{bottom:460.105533pt;}
.y18d{bottom:460.342933pt;}
.y14a{bottom:466.265467pt;}
.y1f{bottom:469.309200pt;}
.y121{bottom:472.505533pt;}
.y1ad{bottom:475.450267pt;}
.y9b{bottom:475.503067pt;}
.yc3{bottom:475.520267pt;}
.yfa{bottom:475.521933pt;}
.y79{bottom:475.648867pt;}
.y4f{bottom:478.578467pt;}
.y169{bottom:478.581200pt;}
.y18c{bottom:478.818600pt;}
.y149{bottom:484.741133pt;}
.y1e{bottom:484.949200pt;}
.y120{bottom:491.411200pt;}
.y9a{bottom:493.978733pt;}
.ye2{bottom:493.982800pt;}
.yc2{bottom:493.995933pt;}
.yf9{bottom:493.997600pt;}
.y78{bottom:494.124533pt;}
.y168{bottom:497.056867pt;}
.y18b{bottom:497.294267pt;}
.y1d{bottom:500.589200pt;}
.y1ac{bottom:503.170933pt;}
.y148{bottom:503.216800pt;}
.y4e{bottom:506.299133pt;}
.y99{bottom:512.454400pt;}
.ye1{bottom:512.458467pt;}
.yc1{bottom:512.471600pt;}
.yf8{bottom:512.473267pt;}
.y167{bottom:515.532533pt;}
.y18a{bottom:515.769933pt;}
.y1c{bottom:516.229200pt;}
.y11f{bottom:519.561867pt;}
.y147{bottom:521.692533pt;}
.y77{bottom:521.845200pt;}
.y4d{bottom:524.774800pt;}
.y1ab{bottom:530.891600pt;}
.y98{bottom:530.930067pt;}
.ye0{bottom:530.934067pt;}
.yf7{bottom:530.948933pt;}
.y1b{bottom:531.869200pt;}
.y189{bottom:534.245600pt;}
.y11e{bottom:538.467533pt;}
.yc0{bottom:540.192267pt;}
.y76{bottom:540.320867pt;}
.y4c{bottom:543.250467pt;}
.y166{bottom:543.253200pt;}
.y1a{bottom:547.509200pt;}
.ydf{bottom:549.409733pt;}
.y146{bottom:549.413133pt;}
.y97{bottom:549.413867pt;}
.yf6{bottom:549.424600pt;}
.y188{bottom:552.721267pt;}
.y25{bottom:554.454000pt;}
.y11d{bottom:557.373200pt;}
.y1aa{bottom:558.612267pt;}
.ybf{bottom:558.667933pt;}
.y75{bottom:558.796533pt;}
.y4b{bottom:561.726133pt;}
.y165{bottom:561.728867pt;}
.y19{bottom:563.149200pt;}
.y24{bottom:567.243333pt;}
.y145{bottom:567.888867pt;}
.y96{bottom:567.889533pt;}
.y187{bottom:571.196933pt;}
.y11c{bottom:576.278867pt;}
.y1a9{bottom:577.087933pt;}
.yde{bottom:577.130467pt;}
.ybe{bottom:577.143600pt;}
.yf5{bottom:577.145267pt;}
.y74{bottom:577.272200pt;}
.y18{bottom:578.789200pt;}
.y23{bottom:580.032667pt;}
.y164{bottom:580.204533pt;}
.y144{bottom:586.364467pt;}
.y95{bottom:586.365200pt;}
.y4a{bottom:589.446800pt;}
.y22{bottom:592.822000pt;}
.y17{bottom:594.429200pt;}
.y1a8{bottom:595.563600pt;}
.ydd{bottom:595.606133pt;}
.ybd{bottom:595.619267pt;}
.yf4{bottom:595.620933pt;}
.y73{bottom:595.747867pt;}
.y163{bottom:598.680200pt;}
.y186{bottom:598.917600pt;}
.y143{bottom:604.840133pt;}
.y94{bottom:604.840867pt;}
.y21{bottom:605.611333pt;}
.y49{bottom:607.922467pt;}
.y11b{bottom:613.660200pt;}
.ydc{bottom:614.081800pt;}
.ybc{bottom:614.094933pt;}
.yf3{bottom:614.096600pt;}
.y72{bottom:614.223533pt;}
.y16{bottom:616.467467pt;}
.y162{bottom:617.155867pt;}
.y185{bottom:617.393267pt;}
.y20{bottom:618.400667pt;}
.y1a7{bottom:623.284267pt;}
.y142{bottom:623.315800pt;}
.y93{bottom:623.316533pt;}
.y48{bottom:626.398133pt;}
.y11a{bottom:629.727867pt;}
.ydb{bottom:632.557467pt;}
.ybb{bottom:632.570600pt;}
.yf2{bottom:632.572267pt;}
.y71{bottom:632.699200pt;}
.y161{bottom:635.631533pt;}
.y184{bottom:635.868933pt;}
.y1a6{bottom:641.759867pt;}
.y141{bottom:641.791467pt;}
.y92{bottom:641.792200pt;}
.y47{bottom:644.873800pt;}
.y119{bottom:645.795533pt;}
.yda{bottom:651.033133pt;}
.yf1{bottom:651.047933pt;}
.y70{bottom:651.174867pt;}
.y160{bottom:654.107200pt;}
.y140{bottom:660.267133pt;}
.yba{bottom:660.291267pt;}
.y118{bottom:661.863200pt;}
.y46{bottom:663.349467pt;}
.y1a5{bottom:669.480533pt;}
.yd9{bottom:669.510467pt;}
.y91{bottom:669.512867pt;}
.yf0{bottom:669.523600pt;}
.y6f{bottom:669.650533pt;}
.y183{bottom:671.143267pt;}
.y15f{bottom:672.582933pt;}
.y117{bottom:677.930867pt;}
.y13f{bottom:678.742800pt;}
.yb9{bottom:678.766933pt;}
.y15{bottom:683.835933pt;}
.y182{bottom:686.780933pt;}
.y90{bottom:687.988533pt;}
.yd8{bottom:687.999267pt;}
.y45{bottom:691.070133pt;}
.y116{bottom:693.998533pt;}
.y1a4{bottom:697.201267pt;}
.yb8{bottom:697.242600pt;}
.y15e{bottom:700.303533pt;}
.y181{bottom:702.418600pt;}
.y8f{bottom:706.464200pt;}
.y13e{bottom:706.474200pt;}
.yd7{bottom:706.474933pt;}
.y44{bottom:709.545800pt;}
.y115{bottom:710.066200pt;}
.y6e{bottom:710.595200pt;}
.y1a3{bottom:715.676933pt;}
.yb7{bottom:715.718267pt;}
.yef{bottom:715.719933pt;}
.y14{bottom:717.949267pt;}
.y180{bottom:718.056267pt;}
.y15d{bottom:718.779200pt;}
.y8e{bottom:724.939867pt;}
.y13d{bottom:724.949867pt;}
.y114{bottom:726.133867pt;}
.y43{bottom:728.021467pt;}
.y13{bottom:733.586933pt;}
.y17f{bottom:733.693933pt;}
.yb6{bottom:734.193933pt;}
.yd6{bottom:734.195600pt;}
.y15c{bottom:737.254867pt;}
.y1a2{bottom:743.397600pt;}
.y8d{bottom:743.415533pt;}
.y13c{bottom:743.425533pt;}
.y42{bottom:746.497133pt;}
.y17e{bottom:749.331600pt;}
.yb5{bottom:752.669600pt;}
.yd5{bottom:752.671267pt;}
.y15b{bottom:755.733533pt;}
.y113{bottom:760.677200pt;}
.y1a1{bottom:761.873200pt;}
.y8c{bottom:761.891200pt;}
.y13b{bottom:761.901200pt;}
.y17d{bottom:764.969267pt;}
.y41{bottom:764.972800pt;}
.yb4{bottom:771.145267pt;}
.y6d{bottom:771.146933pt;}
.y112{bottom:779.582867pt;}
.y13a{bottom:780.376867pt;}
.y40{bottom:783.448467pt;}
.y15a{bottom:783.454200pt;}
.y17c{bottom:788.174933pt;}
.y1a0{bottom:789.593933pt;}
.yb3{bottom:789.620933pt;}
.y6c{bottom:789.622600pt;}
.y111{bottom:798.488533pt;}
.y139{bottom:798.852533pt;}
.y3f{bottom:801.929867pt;}
.y17b{bottom:803.812600pt;}
.y19f{bottom:808.069600pt;}
.yb2{bottom:808.096600pt;}
.y6b{bottom:808.098267pt;}
.y110{bottom:817.394200pt;}
.y17a{bottom:819.450267pt;}
.y3e{bottom:820.405533pt;}
.yb1{bottom:826.572267pt;}
.y138{bottom:826.573200pt;}
.y6a{bottom:826.573933pt;}
.y12{bottom:831.956600pt;}
.y179{bottom:835.087933pt;}
.y19e{bottom:835.790267pt;}
.y3d{bottom:838.881200pt;}
.yb0{bottom:845.047933pt;}
.y137{bottom:845.048867pt;}
.y69{bottom:845.049600pt;}
.y10f{bottom:845.544867pt;}
.y11{bottom:850.432267pt;}
.y178{bottom:850.725600pt;}
.y3c{bottom:857.356800pt;}
.y19d{bottom:863.510933pt;}
.y136{bottom:863.524533pt;}
.y68{bottom:863.525267pt;}
.y10e{bottom:864.450533pt;}
.y177{bottom:866.363267pt;}
.y159{bottom:866.601867pt;}
.y10{bottom:868.901467pt;}
.yaf{bottom:872.768600pt;}
.yd4{bottom:872.770267pt;}
.y135{bottom:882.000200pt;}
.y67{bottom:882.000933pt;}
.y10d{bottom:883.356200pt;}
.y3b{bottom:885.077533pt;}
.y19c{bottom:891.231600pt;}
.yae{bottom:891.244267pt;}
.yd3{bottom:891.245933pt;}
.y134{bottom:900.475867pt;}
.y66{bottom:900.476600pt;}
.y10c{bottom:902.261867pt;}
.y3a{bottom:903.553200pt;}
.yf{bottom:908.362800pt;}
.yad{bottom:909.719933pt;}
.yd2{bottom:909.721600pt;}
.y65{bottom:918.952267pt;}
.y19b{bottom:918.952333pt;}
.y10b{bottom:921.167533pt;}
.y39{bottom:922.028867pt;}
.yac{bottom:928.195600pt;}
.y8b{bottom:928.197267pt;}
.y64{bottom:937.427933pt;}
.y19a{bottom:937.428000pt;}
.y10a{bottom:940.073200pt;}
.y38{bottom:940.504533pt;}
.yab{bottom:946.671267pt;}
.y8a{bottom:946.672933pt;}
.ye{bottom:947.816000pt;}
.y63{bottom:965.148600pt;}
.y37{bottom:981.449333pt;}
.y62{bottom:983.624267pt;}
.y2{bottom:1016.529333pt;}
.y3{bottom:1034.628800pt;}
.y36{bottom:1042.492133pt;}
.y5{bottom:1061.222133pt;}
.y4{bottom:1073.222133pt;}
.h12{height:25.948000pt;}
.h5{height:31.317333pt;}
.h3{height:31.701333pt;}
.h24{height:34.916667pt;}
.hc{height:35.484444pt;}
.h23{height:37.351562pt;}
.hd{height:37.702222pt;}
.ha{height:38.506667pt;}
.h13{height:39.920000pt;}
.h14{height:40.326667pt;}
.h15{height:40.348000pt;}
.hb{height:44.355556pt;}
.h9{height:47.682222pt;}
.hf{height:47.682489pt;}
.h1e{height:48.068378pt;}
.h16{height:48.114244pt;}
.h11{height:48.117978pt;}
.h21{height:48.131311pt;}
.h1b{height:48.140911pt;}
.h18{height:48.149978pt;}
.h20{height:48.150511pt;}
.h1d{height:48.157178pt;}
.h19{height:48.160911pt;}
.h10{height:48.170511pt;}
.h1f{height:48.172911pt;}
.h22{height:48.180911pt;}
.h1a{height:48.186244pt;}
.h1c{height:48.186778pt;}
.h17{height:48.193444pt;}
.h2{height:48.791111pt;}
.he{height:50.752000pt;}
.h7{height:54.656000pt;}
.h8{height:62.097778pt;}
.h4{height:68.800000pt;}
.h6{height:69.312000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x4{left:80.089600pt;}
.xe{left:83.149600pt;}
.x11{left:94.324933pt;}
.x5{left:98.265600pt;}
.x12{left:120.941200pt;}
.x6{left:129.062800pt;}
.x7{left:134.062800pt;}
.xc{left:136.064400pt;}
.xf{left:234.384000pt;}
.xd{left:303.420400pt;}
.xb{left:496.074733pt;}
.x2{left:560.565200pt;}
.x3{left:605.770933pt;}
.xa{left:609.035733pt;}
.x8{left:626.695600pt;}
.x9{left:655.168133pt;}
.x10{left:666.816667pt;}
}




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