
    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_90adf982d26d12d7c815c75d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_d40c08256f227d5630322a66.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_d708da6553f71ed8bc5d832c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_da7f31b1e37b9834e41e6b0f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.922000;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_9487c7db29d2edd597a35c1f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.732000;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_543e41445b188a209ff5c981.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939453;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_2c4364466863377abed5077f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.860000;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_da7f31b1e37b9834e41e6b0f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.922000;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_3063f7b6363087f2ce5881c6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_82f00ca923ec84e88161f17b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.943359;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_e36ab1faa994bc3e73e8f234.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.939453;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_50e701dfd07001f7e8300445.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.860000;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_da7f31b1e37b9834e41e6b0f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.922000;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_543e41445b188a209ff5c981.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.939453;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_41a33938eeef62dab3657d6f.woff2')format("woff");}.fff{font-family:fff;line-height:0.919434;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_a8d0e9d47890946551a19bf2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.955566;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_e36ab1faa994bc3e73e8f234.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.939453;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_50e701dfd07001f7e8300445.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.860000;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_da7f31b1e37b9834e41e6b0f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.922000;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_543e41445b188a209ff5c981.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.939453;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_50e701dfd07001f7e8300445.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.860000;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_d708da6553f71ed8bc5d832c.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.939453;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_da7f31b1e37b9834e41e6b0f.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.922000;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_543e41445b188a209ff5c981.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.939453;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_2c4364466863377abed5077f.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.860000;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:ff1a;src:url('chunks/assets/font_50e701dfd07001f7e8300445.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.860000;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:ff1b;src:url('chunks/assets/font_d708da6553f71ed8bc5d832c.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.939453;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:ff1c;src:url('chunks/assets/font_da7f31b1e37b9834e41e6b0f.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.922000;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:ff1d;src:url('chunks/assets/font_54ca0e5dc8caedcf085b397d.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.963379;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:ff1e;src:url('chunks/assets/font_37fb51e8b2b836af1d30ade0.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.690918;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-44.092800px;}
.v3{vertical-align:-1.344600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:43.335000px;}
.ls8{letter-spacing:-3.996000px;}
.ls9{letter-spacing:-1.320000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:1.200000px;}
.ls4{letter-spacing:13.200000px;}
.ls5{letter-spacing:14.400000px;}
.ls1{letter-spacing:21.060000px;}
.ls7{letter-spacing:439.338600px;}
.ls6{letter-spacing:473.058600px;}
.ls2{letter-spacing:2384.608200px;}
.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:-51.741527px;}
.ws25{word-spacing:-30.240000px;}
.ws1{word-spacing:-30.024000px;}
.wsd{word-spacing:-21.060000px;}
.ws8f{word-spacing:-20.016000px;}
.ws24{word-spacing:-16.680000px;}
.ws5{word-spacing:-15.012000px;}
.wsc{word-spacing:-14.520000px;}
.ws10{word-spacing:-13.728000px;}
.ws65{word-spacing:-13.200000px;}
.ws19{word-spacing:-13.002000px;}
.ws1c{word-spacing:-12.936000px;}
.ws22{word-spacing:-12.408000px;}
.ws6{word-spacing:-12.168000px;}
.ws21{word-spacing:-11.946000px;}
.ws1e{word-spacing:-11.352000px;}
.ws75{word-spacing:-11.016000px;}
.ws14{word-spacing:-10.560000px;}
.ws1d{word-spacing:-9.900000px;}
.wsf{word-spacing:-9.372000px;}
.ws15{word-spacing:-8.976000px;}
.ws7f{word-spacing:-8.820000px;}
.ws20{word-spacing:-8.712000px;}
.ws1a{word-spacing:-8.448000px;}
.ws4e{word-spacing:-7.440000px;}
.ws17{word-spacing:-7.194000px;}
.ws16{word-spacing:-6.534000px;}
.ws2a{word-spacing:-6.264000px;}
.ws11{word-spacing:-5.610000px;}
.ws13{word-spacing:-5.346000px;}
.ws1b{word-spacing:-5.280000px;}
.ws1f{word-spacing:-4.686000px;}
.ws31{word-spacing:-4.380000px;}
.ws60{word-spacing:-4.260000px;}
.ws18{word-spacing:-4.224000px;}
.ws37{word-spacing:-4.200000px;}
.ws6f{word-spacing:-4.020000px;}
.ws4f{word-spacing:-3.960000px;}
.ws47{word-spacing:-3.660000px;}
.ws2b{word-spacing:-3.510000px;}
.ws46{word-spacing:-3.420000px;}
.ws64{word-spacing:-3.300000px;}
.ws3e{word-spacing:-3.240000px;}
.ws81{word-spacing:-3.120000px;}
.ws40{word-spacing:-2.760000px;}
.ws8e{word-spacing:-2.268000px;}
.ws52{word-spacing:-2.100000px;}
.ws8{word-spacing:-1.998000px;}
.ws3d{word-spacing:-1.980000px;}
.ws2e{word-spacing:-1.944000px;}
.wse{word-spacing:-1.914000px;}
.ws83{word-spacing:-1.800000px;}
.ws12{word-spacing:-1.776000px;}
.ws4{word-spacing:-1.638000px;}
.ws42{word-spacing:-1.560000px;}
.ws7{word-spacing:-1.200000px;}
.ws5e{word-spacing:-1.080000px;}
.ws3{word-spacing:-1.034880px;}
.ws62{word-spacing:-1.020000px;}
.wsa{word-spacing:-0.972000px;}
.ws5f{word-spacing:-0.960000px;}
.ws3a{word-spacing:-0.720000px;}
.ws2f{word-spacing:-0.594000px;}
.ws55{word-spacing:-0.540000px;}
.ws4a{word-spacing:-0.180000px;}
.ws2{word-spacing:0.000000px;}
.ws5c{word-spacing:0.300000px;}
.ws7c{word-spacing:0.420000px;}
.ws34{word-spacing:0.540000px;}
.ws49{word-spacing:0.660000px;}
.ws28{word-spacing:0.756000px;}
.ws36{word-spacing:0.840000px;}
.ws45{word-spacing:0.900000px;}
.ws8b{word-spacing:1.140000px;}
.ws87{word-spacing:1.200000px;}
.ws80{word-spacing:1.260000px;}
.ws5b{word-spacing:1.380000px;}
.ws38{word-spacing:1.440000px;}
.ws6b{word-spacing:1.560000px;}
.ws8a{word-spacing:1.860000px;}
.ws6d{word-spacing:2.040000px;}
.ws56{word-spacing:2.160000px;}
.ws6c{word-spacing:2.580000px;}
.ws32{word-spacing:2.700000px;}
.ws70{word-spacing:2.760000px;}
.ws29{word-spacing:2.970000px;}
.ws58{word-spacing:3.420000px;}
.ws7e{word-spacing:3.660000px;}
.ws50{word-spacing:3.720000px;}
.ws7b{word-spacing:3.960000px;}
.ws88{word-spacing:4.140000px;}
.ws5a{word-spacing:4.200000px;}
.ws7d{word-spacing:4.260000px;}
.ws8d{word-spacing:4.266000px;}
.ws39{word-spacing:4.320000px;}
.ws2d{word-spacing:4.374000px;}
.ws53{word-spacing:4.680000px;}
.ws3f{word-spacing:4.740000px;}
.ws43{word-spacing:4.800000px;}
.ws71{word-spacing:4.920000px;}
.ws85{word-spacing:5.040000px;}
.ws4d{word-spacing:5.400000px;}
.ws63{word-spacing:5.520000px;}
.ws79{word-spacing:5.580000px;}
.ws7a{word-spacing:5.640000px;}
.ws6a{word-spacing:6.060000px;}
.ws86{word-spacing:6.180000px;}
.ws51{word-spacing:6.420000px;}
.ws27{word-spacing:6.426000px;}
.ws68{word-spacing:6.660000px;}
.ws67{word-spacing:7.440000px;}
.ws30{word-spacing:7.506000px;}
.ws90{word-spacing:7.656000px;}
.ws48{word-spacing:7.860000px;}
.ws89{word-spacing:8.100000px;}
.ws82{word-spacing:8.220000px;}
.ws44{word-spacing:8.520000px;}
.ws57{word-spacing:8.760000px;}
.ws2c{word-spacing:8.802000px;}
.ws61{word-spacing:8.880000px;}
.ws6e{word-spacing:9.000000px;}
.ws84{word-spacing:9.120000px;}
.ws66{word-spacing:9.300000px;}
.ws59{word-spacing:10.020000px;}
.ws4c{word-spacing:10.980000px;}
.ws54{word-spacing:12.000000px;}
.ws8c{word-spacing:12.150000px;}
.ws4b{word-spacing:12.840000px;}
.ws26{word-spacing:12.852000px;}
.ws33{word-spacing:14.640000px;}
.ws5d{word-spacing:14.760000px;}
.ws69{word-spacing:14.940000px;}
.ws41{word-spacing:16.080000px;}
.ws3c{word-spacing:17.220000px;}
.ws3b{word-spacing:21.120000px;}
.ws9{word-spacing:23.382000px;}
.ws23{word-spacing:111.146400px;}
.wsb{word-spacing:139.945800px;}
.ws76{word-spacing:148.277400px;}
.ws77{word-spacing:188.263200px;}
.ws73{word-spacing:530.434800px;}
.ws74{word-spacing:532.438800px;}
.ws72{word-spacing:580.006800px;}
.ws78{word-spacing:590.892000px;}
.ws35{word-spacing:2355.748200px;}
._9{margin-left:-2909.152800px;}
._20{margin-left:-22.260000px;}
._2{margin-left:-11.544000px;}
._d{margin-left:-8.703000px;}
._0{margin-left:-7.385400px;}
._1{margin-left:-5.717400px;}
._7{margin-left:-4.006800px;}
._3{margin-left:-2.698800px;}
._8{margin-left:-1.031400px;}
._6{width:1.976400px;}
._a{width:3.345600px;}
._e{width:4.475400px;}
._5{width:5.584800px;}
._b{width:6.935400px;}
._4{width:8.502000px;}
._11{width:10.746000px;}
._13{width:11.988000px;}
._14{width:13.002000px;}
._12{width:14.010000px;}
._f{width:19.773600px;}
._10{width:20.822400px;}
._21{width:59.007000px;}
._18{width:175.108200px;}
._17{width:439.338600px;}
._c{width:478.408800px;}
._1a{width:577.884000px;}
._16{width:596.443200px;}
._15{width:597.880800px;}
._19{width:600.927600px;}
._1c{width:602.931600px;}
._1d{width:605.911200px;}
._1b{width:607.915200px;}
._1f{width:635.936400px;}
._1e{width:750.997800px;}
.fc8{color:rgb(47,92,179);}
.fc7{color:rgb(5,99,193);}
.fc6{color:transparent;}
.fc5{color:rgb(210,32,39);}
.fc3{color:rgb(42,62,146);}
.fc2{color:rgb(203,197,228);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(15,52,88);}
.fsd{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fsa{font-size:60.000000px;}
.fsb{font-size:66.000000px;}
.fsf{font-size:72.000000px;}
.fs5{font-size:73.920000px;}
.fs7{font-size:78.000000px;}
.fs4{font-size:84.120000px;}
.fs6{font-size:108.000000px;}
.fs10{font-size:126.000000px;}
.fs3{font-size:138.000000px;}
.fse{font-size:144.000000px;}
.fs8{font-size:156.000000px;}
.fs1{font-size:166.179000px;}
.fs0{font-size:186.120600px;}
.fsc{font-size:216.000000px;}
.fs2{font-size:232.650600px;}
.y0{bottom:0.000000px;}
.yc{bottom:62.251350px;}
.y4c{bottom:73.085100px;}
.yb{bottom:73.274550px;}
.y45{bottom:116.929200px;}
.ye5{bottom:131.943900px;}
.y7f{bottom:132.153450px;}
.y44{bottom:133.129200px;}
.yb9{bottom:133.530000px;}
.y131{bottom:135.640650px;}
.y14d{bottom:139.488900px;}
.y119{bottom:143.430450px;}
.y7e{bottom:146.553450px;}
.y43{bottom:149.329200px;}
.yb8{bottom:151.530000px;}
.y14c{bottom:157.488900px;}
.y118{bottom:162.480450px;}
.y42{bottom:165.529200px;}
.y28{bottom:166.281900px;}
.y7d{bottom:166.353450px;}
.ya{bottom:167.067600px;}
.yb7{bottom:169.530000px;}
.y14b{bottom:175.488900px;}
.y117{bottom:181.530450px;}
.y41{bottom:181.729200px;}
.y27{bottom:182.481900px;}
.yb6{bottom:187.530000px;}
.y7c{bottom:190.405500px;}
.y40{bottom:197.929200px;}
.y26{bottom:198.681900px;}
.y116{bottom:200.580450px;}
.y14a{bottom:201.992850px;}
.y7b{bottom:204.805350px;}
.yb5{bottom:214.033950px;}
.y3f{bottom:214.129200px;}
.y115{bottom:219.630450px;}
.y7a{bottom:224.605350px;}
.y3e{bottom:230.329200px;}
.y114{bottom:238.680450px;}
.y149{bottom:241.592850px;}
.y3d{bottom:246.529200px;}
.y79{bottom:248.657400px;}
.yb4{bottom:257.698200px;}
.y113{bottom:257.730450px;}
.y25{bottom:257.884800px;}
.y9{bottom:258.102900px;}
.y148{bottom:259.592850px;}
.y3c{bottom:262.729200px;}
.y78{bottom:263.057400px;}
.yb3{bottom:273.898200px;}
.y24{bottom:274.084800px;}
.y112{bottom:276.780450px;}
.y147{bottom:277.592850px;}
.y3b{bottom:278.929200px;}
.y8{bottom:281.502900px;}
.y77{bottom:282.857400px;}
.y146{bottom:295.592850px;}
.y111{bottom:295.830450px;}
.yb2{bottom:298.602150px;}
.y7{bottom:304.902900px;}
.y76{bottom:306.909450px;}
.y145{bottom:313.592850px;}
.yb1{bottom:314.802150px;}
.y110{bottom:314.880450px;}
.y75{bottom:321.309300px;}
.yb0{bottom:331.002150px;}
.y144{bottom:331.592850px;}
.y10f{bottom:333.930450px;}
.y6{bottom:339.102900px;}
.y74{bottom:341.109300px;}
.y23{bottom:341.942400px;}
.yaf{bottom:347.202000px;}
.y143{bottom:349.592850px;}
.y49{bottom:352.975050px;}
.y10e{bottom:352.980450px;}
.y22{bottom:358.142400px;}
.yae{bottom:363.402150px;}
.y73{bottom:365.161350px;}
.y142{bottom:367.592850px;}
.y10d{bottom:372.030450px;}
.y72{bottom:379.561350px;}
.yad{bottom:379.602150px;}
.y48{bottom:385.375050px;}
.y141{bottom:385.592850px;}
.y10c{bottom:391.080450px;}
.yac{bottom:395.802000px;}
.ye4{bottom:398.118900px;}
.y71{bottom:399.361350px;}
.y10b{bottom:410.130450px;}
.yab{bottom:412.002150px;}
.ye3{bottom:416.118900px;}
.y47{bottom:417.775050px;}
.y70{bottom:423.413250px;}
.y140{bottom:423.809700px;}
.y21{bottom:425.389650px;}
.y10a{bottom:429.180450px;}
.ye2{bottom:434.118900px;}
.y6f{bottom:437.813250px;}
.yaa{bottom:441.436500px;}
.y20{bottom:441.589650px;}
.y109{bottom:448.230450px;}
.y13f{bottom:449.321550px;}
.y46{bottom:450.175050px;}
.ye1{bottom:452.118900px;}
.y6e{bottom:457.613250px;}
.ya9{bottom:457.636500px;}
.y173{bottom:467.093100px;}
.y108{bottom:467.280450px;}
.ye0{bottom:470.118900px;}
.y13e{bottom:474.833250px;}
.y5{bottom:479.762700px;}
.y6d{bottom:481.665300px;}
.ya8{bottom:482.340450px;}
.y172{bottom:485.093100px;}
.y107{bottom:486.330450px;}
.ydf{bottom:488.118900px;}
.y6c{bottom:496.065300px;}
.ya7{bottom:498.540450px;}
.y13d{bottom:500.345100px;}
.y17{bottom:500.736900px;}
.y106{bottom:505.380450px;}
.yde{bottom:506.118900px;}
.y4{bottom:509.618700px;}
.ya6{bottom:514.740450px;}
.y6b{bottom:515.865300px;}
.y16{bottom:516.936900px;}
.y4b{bottom:520.600350px;}
.ydd{bottom:524.118900px;}
.y13c{bottom:524.390250px;}
.y105{bottom:524.430450px;}
.y171{bottom:525.919050px;}
.ya5{bottom:530.940450px;}
.y183{bottom:531.116250px;}
.y15{bottom:533.136900px;}
.y3{bottom:533.618700px;}
.y6a{bottom:539.917200px;}
.ydc{bottom:542.118900px;}
.y170{bottom:542.119050px;}
.y104{bottom:543.480450px;}
.ya4{bottom:547.140450px;}
.y3a{bottom:548.520900px;}
.y182{bottom:550.916400px;}
.y69{bottom:554.317200px;}
.y16f{bottom:558.318900px;}
.ydb{bottom:560.118900px;}
.y13b{bottom:561.179550px;}
.ya3{bottom:563.340450px;}
.y39{bottom:564.721050px;}
.y181{bottom:570.716250px;}
.y103{bottom:571.034400px;}
.y16e{bottom:574.519050px;}
.yda{bottom:578.118900px;}
.y68{bottom:578.369250px;}
.ya2{bottom:579.540450px;}
.y130{bottom:579.860400px;}
.y38{bottom:580.920900px;}
.y1c{bottom:584.184150px;}
.y13a{bottom:584.290950px;}
.y180{bottom:590.516400px;}
.y16d{bottom:590.719050px;}
.y67{bottom:592.769250px;}
.yd9{bottom:596.118900px;}
.y37{bottom:597.120900px;}
.y12f{bottom:597.860400px;}
.y1b{bottom:600.384150px;}
.y16c{bottom:606.919050px;}
.y139{bottom:607.402350px;}
.ya1{bottom:607.408050px;}
.y102{bottom:609.134400px;}
.y66{bottom:612.569250px;}
.y36{bottom:613.320900px;}
.yd8{bottom:614.118900px;}
.y12e{bottom:615.860400px;}
.y1a{bottom:616.584150px;}
.y16b{bottom:623.119050px;}
.y101{bottom:628.184400px;}
.y35{bottom:629.520900px;}
.y138{bottom:630.059550px;}
.ya0{bottom:632.112000px;}
.yd7{bottom:632.118900px;}
.y12d{bottom:633.860400px;}
.y65{bottom:636.621150px;}
.y17d{bottom:637.631700px;}
.y16a{bottom:639.318900px;}
.y34{bottom:645.721050px;}
.y100{bottom:647.234400px;}
.y9f{bottom:648.311850px;}
.yd6{bottom:650.118900px;}
.y64{bottom:651.021150px;}
.y12c{bottom:651.860400px;}
.y137{bottom:652.716750px;}
.y169{bottom:655.519050px;}
.y17c{bottom:657.431700px;}
.y33{bottom:661.920900px;}
.y9e{bottom:664.512000px;}
.yff{bottom:666.284400px;}
.y12{bottom:667.631400px;}
.yd5{bottom:668.118900px;}
.y12b{bottom:669.860400px;}
.y63{bottom:670.821150px;}
.y168{bottom:671.719050px;}
.y136{bottom:675.828150px;}
.y17b{bottom:677.231700px;}
.y9d{bottom:680.712000px;}
.y11{bottom:683.831400px;}
.yfe{bottom:685.334400px;}
.yd4{bottom:686.118900px;}
.y12a{bottom:687.860400px;}
.y167{bottom:687.919050px;}
.y2{bottom:694.402200px;}
.y62{bottom:694.873200px;}
.y9c{bottom:696.912000px;}
.y135{bottom:698.939550px;}
.y10{bottom:700.031400px;}
.yd3{bottom:704.118900px;}
.yfd{bottom:704.384400px;}
.y129{bottom:705.860400px;}
.y61{bottom:709.273200px;}
.y9b{bottom:713.112000px;}
.y134{bottom:721.596750px;}
.yd2{bottom:722.118900px;}
.y166{bottom:722.119050px;}
.yfc{bottom:723.434400px;}
.y128{bottom:723.860400px;}
.y17f{bottom:725.087700px;}
.y60{bottom:729.073200px;}
.yd1{bottom:740.118900px;}
.y165{bottom:740.119050px;}
.y127{bottom:741.860400px;}
.yfb{bottom:742.484400px;}
.y133{bottom:744.214350px;}
.y17e{bottom:744.887700px;}
.y1f{bottom:751.078650px;}
.y32{bottom:752.166900px;}
.y5f{bottom:753.125100px;}
.yd0{bottom:758.118900px;}
.y164{bottom:758.119050px;}
.y1{bottom:760.180350px;}
.yfa{bottom:761.534400px;}
.y1e{bottom:767.278650px;}
.y5e{bottom:767.525100px;}
.y31{bottom:768.366900px;}
.y9a{bottom:773.437500px;}
.ycf{bottom:776.118900px;}
.y163{bottom:776.119050px;}
.y132{bottom:780.214350px;}
.yf9{bottom:780.584400px;}
.y1d{bottom:783.478800px;}
.y30{bottom:784.566900px;}
.y5d{bottom:787.325100px;}
.y99{bottom:793.237500px;}
.yce{bottom:794.118900px;}
.y162{bottom:794.119050px;}
.yf8{bottom:799.634400px;}
.y17a{bottom:805.079550px;}
.y5c{bottom:811.377150px;}
.ycd{bottom:812.118900px;}
.y161{bottom:812.119050px;}
.y98{bottom:813.037500px;}
.y2f{bottom:816.966900px;}
.yf7{bottom:818.684400px;}
.y179{bottom:824.879550px;}
.y5b{bottom:825.777150px;}
.ycc{bottom:830.118900px;}
.y160{bottom:830.119050px;}
.y97{bottom:832.837500px;}
.y2e{bottom:833.166900px;}
.yf6{bottom:837.734400px;}
.y126{bottom:838.235400px;}
.y14{bottom:842.626050px;}
.y178{bottom:844.679550px;}
.y5a{bottom:845.577150px;}
.ycb{bottom:848.118900px;}
.y15f{bottom:848.119050px;}
.y2d{bottom:849.366900px;}
.y96{bottom:852.637500px;}
.y125{bottom:856.235400px;}
.yf5{bottom:856.784400px;}
.y13{bottom:858.826050px;}
.y177{bottom:864.479550px;}
.y59{bottom:865.377150px;}
.yca{bottom:866.118900px;}
.y15e{bottom:866.119050px;}
.y124{bottom:874.235400px;}
.yf4{bottom:875.834400px;}
.y2c{bottom:881.766900px;}
.yc9{bottom:884.118900px;}
.y15d{bottom:884.119050px;}
.y58{bottom:889.429050px;}
.y123{bottom:892.235400px;}
.y95{bottom:892.237500px;}
.y174{bottom:893.690400px;}
.yf3{bottom:894.884400px;}
.y2b{bottom:897.966900px;}
.yc8{bottom:902.118900px;}
.y15c{bottom:902.119050px;}
.y57{bottom:903.829050px;}
.y8d{bottom:904.797150px;}
.y122{bottom:910.235400px;}
.y94{bottom:912.037500px;}
.yf2{bottom:913.934400px;}
.y8c{bottom:919.197300px;}
.yc7{bottom:920.118900px;}
.y15b{bottom:920.119050px;}
.y56{bottom:923.629050px;}
.y19{bottom:926.073150px;}
.y93{bottom:931.837500px;}
.yf1{bottom:932.984400px;}
.y121{bottom:936.739350px;}
.yc6{bottom:938.118900px;}
.y15a{bottom:938.119050px;}
.y8b{bottom:938.997300px;}
.y18{bottom:942.273150px;}
.y55{bottom:947.681100px;}
.y92{bottom:951.637500px;}
.yf0{bottom:952.034400px;}
.yc5{bottom:956.118900px;}
.y159{bottom:956.119050px;}
.y54{bottom:962.081100px;}
.y176{bottom:962.658900px;}
.y8a{bottom:963.049200px;}
.yef{bottom:971.084400px;}
.yc4{bottom:974.118900px;}
.y158{bottom:974.119050px;}
.y120{bottom:976.339350px;}
.y89{bottom:977.449200px;}
.y53{bottom:981.881100px;}
.yee{bottom:990.134400px;}
.yc3{bottom:992.118900px;}
.y157{bottom:992.119050px;}
.y175{bottom:992.762850px;}
.y11f{bottom:994.339350px;}
.y88{bottom:997.249200px;}
.y52{bottom:1005.933150px;}
.y91{bottom:1007.437350px;}
.yed{bottom:1009.184400px;}
.yf{bottom:1009.520250px;}
.yc2{bottom:1010.118900px;}
.y156{bottom:1010.119050px;}
.y11e{bottom:1012.339350px;}
.y51{bottom:1020.333000px;}
.y87{bottom:1021.301100px;}
.ye{bottom:1025.720250px;}
.yc1{bottom:1028.118900px;}
.y155{bottom:1028.119050px;}
.yec{bottom:1028.234400px;}
.y11d{bottom:1030.339350px;}
.y86{bottom:1035.701100px;}
.y50{bottom:1044.385050px;}
.yc0{bottom:1046.118900px;}
.y154{bottom:1046.119050px;}
.yeb{bottom:1047.284400px;}
.y11c{bottom:1048.339350px;}
.y90{bottom:1050.637500px;}
.y4f{bottom:1058.785050px;}
.y85{bottom:1059.753150px;}
.ybf{bottom:1064.118900px;}
.y153{bottom:1064.119050px;}
.yea{bottom:1066.334400px;}
.y11b{bottom:1066.339350px;}
.y4a{bottom:1069.320300px;}
.y84{bottom:1074.153150px;}
.y4e{bottom:1078.585050px;}
.ybe{bottom:1082.118900px;}
.y152{bottom:1082.119050px;}
.y11a{bottom:1084.339350px;}
.ye9{bottom:1085.384550px;}
.y8f{bottom:1093.837500px;}
.y83{bottom:1093.953150px;}
.ybd{bottom:1100.118900px;}
.y151{bottom:1100.119050px;}
.ye8{bottom:1104.434550px;}
.y82{bottom:1118.005050px;}
.ybc{bottom:1118.118900px;}
.y150{bottom:1118.119050px;}
.ye7{bottom:1123.484550px;}
.y4d{bottom:1125.725850px;}
.y81{bottom:1132.405050px;}
.ybb{bottom:1136.118900px;}
.y14f{bottom:1136.119050px;}
.y8e{bottom:1137.037500px;}
.y2a{bottom:1139.010900px;}
.ye6{bottom:1151.038350px;}
.y80{bottom:1152.205050px;}
.yba{bottom:1154.118900px;}
.y14e{bottom:1154.119050px;}
.y29{bottom:1155.210900px;}
.yd{bottom:1190.258550px;}
.h12{height:34.945312px;}
.hc{height:39.313477px;}
.hd{height:39.366211px;}
.h9{height:39.474000px;}
.he{height:39.577148px;}
.h19{height:42.070312px;}
.h1b{height:42.873173px;}
.h17{height:43.740234px;}
.hb{height:43.800000px;}
.h16{height:43.974609px;}
.h1a{height:44.501953px;}
.h11{height:46.277344px;}
.hf{height:48.049805px;}
.h1e{height:48.114258px;}
.h1f{height:48.372070px;}
.h13{height:48.952148px;}
.h18{height:50.484375px;}
.h1d{height:52.488281px;}
.h5{height:53.887969px;}
.h7{height:56.862305px;}
.h4{height:61.241660px;}
.h6{height:78.626953px;}
.ha{height:82.701211px;}
.h1c{height:85.148438px;}
.h3{height:100.602539px;}
.h14{height:100.968750px;}
.h15{height:106.804688px;}
.h8{height:113.724609px;}
.h10{height:157.464844px;}
.h2{height:169.375998px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:66.167400px;}
.x19{left:68.031450px;}
.x17{left:70.370100px;}
.x31{left:72.047250px;}
.x28{left:74.031450px;}
.x34{left:77.844000px;}
.x32{left:79.833900px;}
.x2c{left:89.743650px;}
.x36{left:92.636400px;}
.x11{left:97.795200px;}
.x12{left:101.014950px;}
.xc{left:105.451200px;}
.x1a{left:110.551200px;}
.x2b{left:111.940050px;}
.x35{left:118.356750px;}
.x29{left:127.559100px;}
.x37{left:132.588750px;}
.x1b{left:140.314950px;}
.xb{left:148.393650px;}
.x1d{left:174.663000px;}
.x33{left:176.300100px;}
.x30{left:178.582650px;}
.x2{left:212.977950px;}
.x38{left:232.974600px;}
.x2d{left:234.253050px;}
.x15{left:250.729650px;}
.x1c{left:260.040000px;}
.x18{left:284.456700px;}
.x1e{left:295.881750px;}
.x1f{left:317.467650px;}
.x2f{left:356.685450px;}
.x2e{left:397.385400px;}
.x21{left:423.274800px;}
.x22{left:477.730350px;}
.x25{left:490.262100px;}
.x27{left:491.426700px;}
.x24{left:501.751650px;}
.xe{left:508.435050px;}
.x13{left:538.265850px;}
.x10{left:551.407800px;}
.xf{left:561.915150px;}
.x26{left:563.335950px;}
.x20{left:595.240950px;}
.x16{left:610.464750px;}
.x23{left:634.827600px;}
.x1{left:644.665350px;}
.x2a{left:683.906850px;}
.x8{left:700.021800px;}
.x5{left:702.425100px;}
.x3{left:705.924000px;}
.x7{left:727.285200px;}
.x6{left:734.093100px;}
.x9{left:738.663450px;}
.x4{left:743.316900px;}
.xd{left:761.987400px;}
.x14{left:848.529600px;}
@media print{
.v2{vertical-align:-39.193600pt;}
.v3{vertical-align:-1.195200pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:38.520000pt;}
.ls8{letter-spacing:-3.552000pt;}
.ls9{letter-spacing:-1.173333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:1.066667pt;}
.ls4{letter-spacing:11.733333pt;}
.ls5{letter-spacing:12.800000pt;}
.ls1{letter-spacing:18.720000pt;}
.ls7{letter-spacing:390.523200pt;}
.ls6{letter-spacing:420.496533pt;}
.ls2{letter-spacing:2119.651733pt;}
.ws0{word-spacing:-45.992468pt;}
.ws25{word-spacing:-26.880000pt;}
.ws1{word-spacing:-26.688000pt;}
.wsd{word-spacing:-18.720000pt;}
.ws8f{word-spacing:-17.792000pt;}
.ws24{word-spacing:-14.826667pt;}
.ws5{word-spacing:-13.344000pt;}
.wsc{word-spacing:-12.906667pt;}
.ws10{word-spacing:-12.202667pt;}
.ws65{word-spacing:-11.733333pt;}
.ws19{word-spacing:-11.557333pt;}
.ws1c{word-spacing:-11.498667pt;}
.ws22{word-spacing:-11.029333pt;}
.ws6{word-spacing:-10.816000pt;}
.ws21{word-spacing:-10.618667pt;}
.ws1e{word-spacing:-10.090667pt;}
.ws75{word-spacing:-9.792000pt;}
.ws14{word-spacing:-9.386667pt;}
.ws1d{word-spacing:-8.800000pt;}
.wsf{word-spacing:-8.330667pt;}
.ws15{word-spacing:-7.978667pt;}
.ws7f{word-spacing:-7.840000pt;}
.ws20{word-spacing:-7.744000pt;}
.ws1a{word-spacing:-7.509333pt;}
.ws4e{word-spacing:-6.613333pt;}
.ws17{word-spacing:-6.394667pt;}
.ws16{word-spacing:-5.808000pt;}
.ws2a{word-spacing:-5.568000pt;}
.ws11{word-spacing:-4.986667pt;}
.ws13{word-spacing:-4.752000pt;}
.ws1b{word-spacing:-4.693333pt;}
.ws1f{word-spacing:-4.165333pt;}
.ws31{word-spacing:-3.893333pt;}
.ws60{word-spacing:-3.786667pt;}
.ws18{word-spacing:-3.754667pt;}
.ws37{word-spacing:-3.733333pt;}
.ws6f{word-spacing:-3.573333pt;}
.ws4f{word-spacing:-3.520000pt;}
.ws47{word-spacing:-3.253333pt;}
.ws2b{word-spacing:-3.120000pt;}
.ws46{word-spacing:-3.040000pt;}
.ws64{word-spacing:-2.933333pt;}
.ws3e{word-spacing:-2.880000pt;}
.ws81{word-spacing:-2.773333pt;}
.ws40{word-spacing:-2.453333pt;}
.ws8e{word-spacing:-2.016000pt;}
.ws52{word-spacing:-1.866667pt;}
.ws8{word-spacing:-1.776000pt;}
.ws3d{word-spacing:-1.760000pt;}
.ws2e{word-spacing:-1.728000pt;}
.wse{word-spacing:-1.701333pt;}
.ws83{word-spacing:-1.600000pt;}
.ws12{word-spacing:-1.578667pt;}
.ws4{word-spacing:-1.456000pt;}
.ws42{word-spacing:-1.386667pt;}
.ws7{word-spacing:-1.066667pt;}
.ws5e{word-spacing:-0.960000pt;}
.ws3{word-spacing:-0.919893pt;}
.ws62{word-spacing:-0.906667pt;}
.wsa{word-spacing:-0.864000pt;}
.ws5f{word-spacing:-0.853333pt;}
.ws3a{word-spacing:-0.640000pt;}
.ws2f{word-spacing:-0.528000pt;}
.ws55{word-spacing:-0.480000pt;}
.ws4a{word-spacing:-0.160000pt;}
.ws2{word-spacing:0.000000pt;}
.ws5c{word-spacing:0.266667pt;}
.ws7c{word-spacing:0.373333pt;}
.ws34{word-spacing:0.480000pt;}
.ws49{word-spacing:0.586667pt;}
.ws28{word-spacing:0.672000pt;}
.ws36{word-spacing:0.746667pt;}
.ws45{word-spacing:0.800000pt;}
.ws8b{word-spacing:1.013333pt;}
.ws87{word-spacing:1.066667pt;}
.ws80{word-spacing:1.120000pt;}
.ws5b{word-spacing:1.226667pt;}
.ws38{word-spacing:1.280000pt;}
.ws6b{word-spacing:1.386667pt;}
.ws8a{word-spacing:1.653333pt;}
.ws6d{word-spacing:1.813333pt;}
.ws56{word-spacing:1.920000pt;}
.ws6c{word-spacing:2.293333pt;}
.ws32{word-spacing:2.400000pt;}
.ws70{word-spacing:2.453333pt;}
.ws29{word-spacing:2.640000pt;}
.ws58{word-spacing:3.040000pt;}
.ws7e{word-spacing:3.253333pt;}
.ws50{word-spacing:3.306667pt;}
.ws7b{word-spacing:3.520000pt;}
.ws88{word-spacing:3.680000pt;}
.ws5a{word-spacing:3.733333pt;}
.ws7d{word-spacing:3.786667pt;}
.ws8d{word-spacing:3.792000pt;}
.ws39{word-spacing:3.840000pt;}
.ws2d{word-spacing:3.888000pt;}
.ws53{word-spacing:4.160000pt;}
.ws3f{word-spacing:4.213333pt;}
.ws43{word-spacing:4.266667pt;}
.ws71{word-spacing:4.373333pt;}
.ws85{word-spacing:4.480000pt;}
.ws4d{word-spacing:4.800000pt;}
.ws63{word-spacing:4.906667pt;}
.ws79{word-spacing:4.960000pt;}
.ws7a{word-spacing:5.013333pt;}
.ws6a{word-spacing:5.386667pt;}
.ws86{word-spacing:5.493333pt;}
.ws51{word-spacing:5.706667pt;}
.ws27{word-spacing:5.712000pt;}
.ws68{word-spacing:5.920000pt;}
.ws67{word-spacing:6.613333pt;}
.ws30{word-spacing:6.672000pt;}
.ws90{word-spacing:6.805333pt;}
.ws48{word-spacing:6.986667pt;}
.ws89{word-spacing:7.200000pt;}
.ws82{word-spacing:7.306667pt;}
.ws44{word-spacing:7.573333pt;}
.ws57{word-spacing:7.786667pt;}
.ws2c{word-spacing:7.824000pt;}
.ws61{word-spacing:7.893333pt;}
.ws6e{word-spacing:8.000000pt;}
.ws84{word-spacing:8.106667pt;}
.ws66{word-spacing:8.266667pt;}
.ws59{word-spacing:8.906667pt;}
.ws4c{word-spacing:9.760000pt;}
.ws54{word-spacing:10.666667pt;}
.ws8c{word-spacing:10.800000pt;}
.ws4b{word-spacing:11.413333pt;}
.ws26{word-spacing:11.424000pt;}
.ws33{word-spacing:13.013333pt;}
.ws5d{word-spacing:13.120000pt;}
.ws69{word-spacing:13.280000pt;}
.ws41{word-spacing:14.293333pt;}
.ws3c{word-spacing:15.306667pt;}
.ws3b{word-spacing:18.773333pt;}
.ws9{word-spacing:20.784000pt;}
.ws23{word-spacing:98.796800pt;}
.wsb{word-spacing:124.396267pt;}
.ws76{word-spacing:131.802133pt;}
.ws77{word-spacing:167.345067pt;}
.ws73{word-spacing:471.497600pt;}
.ws74{word-spacing:473.278933pt;}
.ws72{word-spacing:515.561600pt;}
.ws78{word-spacing:525.237333pt;}
.ws35{word-spacing:2093.998400pt;}
._9{margin-left:-2585.913600pt;}
._20{margin-left:-19.786667pt;}
._2{margin-left:-10.261333pt;}
._d{margin-left:-7.736000pt;}
._0{margin-left:-6.564800pt;}
._1{margin-left:-5.082133pt;}
._7{margin-left:-3.561600pt;}
._3{margin-left:-2.398933pt;}
._8{margin-left:-0.916800pt;}
._6{width:1.756800pt;}
._a{width:2.973867pt;}
._e{width:3.978133pt;}
._5{width:4.964267pt;}
._b{width:6.164800pt;}
._4{width:7.557333pt;}
._11{width:9.552000pt;}
._13{width:10.656000pt;}
._14{width:11.557333pt;}
._12{width:12.453333pt;}
._f{width:17.576533pt;}
._10{width:18.508800pt;}
._21{width:52.450667pt;}
._18{width:155.651733pt;}
._17{width:390.523200pt;}
._c{width:425.252267pt;}
._1a{width:513.674667pt;}
._16{width:530.171733pt;}
._15{width:531.449600pt;}
._19{width:534.157867pt;}
._1c{width:535.939200pt;}
._1d{width:538.587733pt;}
._1b{width:540.369067pt;}
._1f{width:565.276800pt;}
._1e{width:667.553600pt;}
.fsd{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fsa{font-size:53.333333pt;}
.fsb{font-size:58.666667pt;}
.fsf{font-size:64.000000pt;}
.fs5{font-size:65.706667pt;}
.fs7{font-size:69.333333pt;}
.fs4{font-size:74.773333pt;}
.fs6{font-size:96.000000pt;}
.fs10{font-size:112.000000pt;}
.fs3{font-size:122.666667pt;}
.fse{font-size:128.000000pt;}
.fs8{font-size:138.666667pt;}
.fs1{font-size:147.714667pt;}
.fs0{font-size:165.440533pt;}
.fsc{font-size:192.000000pt;}
.fs2{font-size:206.800533pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:55.334533pt;}
.y4c{bottom:64.964533pt;}
.yb{bottom:65.132933pt;}
.y45{bottom:103.937067pt;}
.ye5{bottom:117.283467pt;}
.y7f{bottom:117.469733pt;}
.y44{bottom:118.337067pt;}
.yb9{bottom:118.693333pt;}
.y131{bottom:120.569467pt;}
.y14d{bottom:123.990133pt;}
.y119{bottom:127.493733pt;}
.y7e{bottom:130.269733pt;}
.y43{bottom:132.737067pt;}
.yb8{bottom:134.693333pt;}
.y14c{bottom:139.990133pt;}
.y118{bottom:144.427067pt;}
.y42{bottom:147.137067pt;}
.y28{bottom:147.806133pt;}
.y7d{bottom:147.869733pt;}
.ya{bottom:148.504533pt;}
.yb7{bottom:150.693333pt;}
.y14b{bottom:155.990133pt;}
.y117{bottom:161.360400pt;}
.y41{bottom:161.537067pt;}
.y27{bottom:162.206133pt;}
.yb6{bottom:166.693333pt;}
.y7c{bottom:169.249333pt;}
.y40{bottom:175.937067pt;}
.y26{bottom:176.606133pt;}
.y116{bottom:178.293733pt;}
.y14a{bottom:179.549200pt;}
.y7b{bottom:182.049200pt;}
.yb5{bottom:190.252400pt;}
.y3f{bottom:190.337067pt;}
.y115{bottom:195.227067pt;}
.y7a{bottom:199.649200pt;}
.y3e{bottom:204.737067pt;}
.y114{bottom:212.160400pt;}
.y149{bottom:214.749200pt;}
.y3d{bottom:219.137067pt;}
.y79{bottom:221.028800pt;}
.yb4{bottom:229.065067pt;}
.y113{bottom:229.093733pt;}
.y25{bottom:229.230933pt;}
.y9{bottom:229.424800pt;}
.y148{bottom:230.749200pt;}
.y3c{bottom:233.537067pt;}
.y78{bottom:233.828800pt;}
.yb3{bottom:243.465067pt;}
.y24{bottom:243.630933pt;}
.y112{bottom:246.027067pt;}
.y147{bottom:246.749200pt;}
.y3b{bottom:247.937067pt;}
.y8{bottom:250.224800pt;}
.y77{bottom:251.428800pt;}
.y146{bottom:262.749200pt;}
.y111{bottom:262.960400pt;}
.yb2{bottom:265.424133pt;}
.y7{bottom:271.024800pt;}
.y76{bottom:272.808400pt;}
.y145{bottom:278.749200pt;}
.yb1{bottom:279.824133pt;}
.y110{bottom:279.893733pt;}
.y75{bottom:285.608267pt;}
.yb0{bottom:294.224133pt;}
.y144{bottom:294.749200pt;}
.y10f{bottom:296.827067pt;}
.y6{bottom:301.424800pt;}
.y74{bottom:303.208267pt;}
.y23{bottom:303.948800pt;}
.yaf{bottom:308.624000pt;}
.y143{bottom:310.749200pt;}
.y49{bottom:313.755600pt;}
.y10e{bottom:313.760400pt;}
.y22{bottom:318.348800pt;}
.yae{bottom:323.024133pt;}
.y73{bottom:324.587867pt;}
.y142{bottom:326.749200pt;}
.y10d{bottom:330.693733pt;}
.y72{bottom:337.387867pt;}
.yad{bottom:337.424133pt;}
.y48{bottom:342.555600pt;}
.y141{bottom:342.749200pt;}
.y10c{bottom:347.627067pt;}
.yac{bottom:351.824000pt;}
.ye4{bottom:353.883467pt;}
.y71{bottom:354.987867pt;}
.y10b{bottom:364.560400pt;}
.yab{bottom:366.224133pt;}
.ye3{bottom:369.883467pt;}
.y47{bottom:371.355600pt;}
.y70{bottom:376.367333pt;}
.y140{bottom:376.719733pt;}
.y21{bottom:378.124133pt;}
.y10a{bottom:381.493733pt;}
.ye2{bottom:385.883467pt;}
.y6f{bottom:389.167333pt;}
.yaa{bottom:392.388000pt;}
.y20{bottom:392.524133pt;}
.y109{bottom:398.427067pt;}
.y13f{bottom:399.396933pt;}
.y46{bottom:400.155600pt;}
.ye1{bottom:401.883467pt;}
.y6e{bottom:406.767333pt;}
.ya9{bottom:406.788000pt;}
.y173{bottom:415.193867pt;}
.y108{bottom:415.360400pt;}
.ye0{bottom:417.883467pt;}
.y13e{bottom:422.074000pt;}
.y5{bottom:426.455733pt;}
.y6d{bottom:428.146933pt;}
.ya8{bottom:428.747067pt;}
.y172{bottom:431.193867pt;}
.y107{bottom:432.293733pt;}
.ydf{bottom:433.883467pt;}
.y6c{bottom:440.946933pt;}
.ya7{bottom:443.147067pt;}
.y13d{bottom:444.751200pt;}
.y17{bottom:445.099467pt;}
.y106{bottom:449.227067pt;}
.yde{bottom:449.883467pt;}
.y4{bottom:452.994400pt;}
.ya6{bottom:457.547067pt;}
.y6b{bottom:458.546933pt;}
.y16{bottom:459.499467pt;}
.y4b{bottom:462.755867pt;}
.ydd{bottom:465.883467pt;}
.y13c{bottom:466.124667pt;}
.y105{bottom:466.160400pt;}
.y171{bottom:467.483600pt;}
.ya5{bottom:471.947067pt;}
.y183{bottom:472.103333pt;}
.y15{bottom:473.899467pt;}
.y3{bottom:474.327733pt;}
.y6a{bottom:479.926400pt;}
.ydc{bottom:481.883467pt;}
.y170{bottom:481.883600pt;}
.y104{bottom:483.093733pt;}
.ya4{bottom:486.347067pt;}
.y3a{bottom:487.574133pt;}
.y182{bottom:489.703467pt;}
.y69{bottom:492.726400pt;}
.y16f{bottom:496.283467pt;}
.ydb{bottom:497.883467pt;}
.y13b{bottom:498.826267pt;}
.ya3{bottom:500.747067pt;}
.y39{bottom:501.974267pt;}
.y181{bottom:507.303333pt;}
.y103{bottom:507.586133pt;}
.y16e{bottom:510.683600pt;}
.yda{bottom:513.883467pt;}
.y68{bottom:514.106000pt;}
.ya2{bottom:515.147067pt;}
.y130{bottom:515.431467pt;}
.y38{bottom:516.374133pt;}
.y1c{bottom:519.274800pt;}
.y13a{bottom:519.369733pt;}
.y180{bottom:524.903467pt;}
.y16d{bottom:525.083600pt;}
.y67{bottom:526.906000pt;}
.yd9{bottom:529.883467pt;}
.y37{bottom:530.774133pt;}
.y12f{bottom:531.431467pt;}
.y1b{bottom:533.674800pt;}
.y16c{bottom:539.483600pt;}
.y139{bottom:539.913200pt;}
.ya1{bottom:539.918267pt;}
.y102{bottom:541.452800pt;}
.y66{bottom:544.506000pt;}
.y36{bottom:545.174133pt;}
.yd8{bottom:545.883467pt;}
.y12e{bottom:547.431467pt;}
.y1a{bottom:548.074800pt;}
.y16b{bottom:553.883600pt;}
.y101{bottom:558.386133pt;}
.y35{bottom:559.574133pt;}
.y138{bottom:560.052933pt;}
.ya0{bottom:561.877333pt;}
.yd7{bottom:561.883467pt;}
.y12d{bottom:563.431467pt;}
.y65{bottom:565.885467pt;}
.y17d{bottom:566.783733pt;}
.y16a{bottom:568.283467pt;}
.y34{bottom:573.974267pt;}
.y100{bottom:575.319467pt;}
.y9f{bottom:576.277200pt;}
.yd6{bottom:577.883467pt;}
.y64{bottom:578.685467pt;}
.y12c{bottom:579.431467pt;}
.y137{bottom:580.192667pt;}
.y169{bottom:582.683600pt;}
.y17c{bottom:584.383733pt;}
.y33{bottom:588.374133pt;}
.y9e{bottom:590.677333pt;}
.yff{bottom:592.252800pt;}
.y12{bottom:593.450133pt;}
.yd5{bottom:593.883467pt;}
.y12b{bottom:595.431467pt;}
.y63{bottom:596.285467pt;}
.y168{bottom:597.083600pt;}
.y136{bottom:600.736133pt;}
.y17b{bottom:601.983733pt;}
.y9d{bottom:605.077333pt;}
.y11{bottom:607.850133pt;}
.yfe{bottom:609.186133pt;}
.yd4{bottom:609.883467pt;}
.y12a{bottom:611.431467pt;}
.y167{bottom:611.483600pt;}
.y2{bottom:617.246400pt;}
.y62{bottom:617.665067pt;}
.y9c{bottom:619.477333pt;}
.y135{bottom:621.279600pt;}
.y10{bottom:622.250133pt;}
.yd3{bottom:625.883467pt;}
.yfd{bottom:626.119467pt;}
.y129{bottom:627.431467pt;}
.y61{bottom:630.465067pt;}
.y9b{bottom:633.877333pt;}
.y134{bottom:641.419333pt;}
.yd2{bottom:641.883467pt;}
.y166{bottom:641.883600pt;}
.yfc{bottom:643.052800pt;}
.y128{bottom:643.431467pt;}
.y17f{bottom:644.522400pt;}
.y60{bottom:648.065067pt;}
.yd1{bottom:657.883467pt;}
.y165{bottom:657.883600pt;}
.y127{bottom:659.431467pt;}
.yfb{bottom:659.986133pt;}
.y133{bottom:661.523867pt;}
.y17e{bottom:662.122400pt;}
.y1f{bottom:667.625467pt;}
.y32{bottom:668.592800pt;}
.y5f{bottom:669.444533pt;}
.yd0{bottom:673.883467pt;}
.y164{bottom:673.883600pt;}
.y1{bottom:675.715867pt;}
.yfa{bottom:676.919467pt;}
.y1e{bottom:682.025467pt;}
.y5e{bottom:682.244533pt;}
.y31{bottom:682.992800pt;}
.y9a{bottom:687.500000pt;}
.ycf{bottom:689.883467pt;}
.y163{bottom:689.883600pt;}
.y132{bottom:693.523867pt;}
.yf9{bottom:693.852800pt;}
.y1d{bottom:696.425600pt;}
.y30{bottom:697.392800pt;}
.y5d{bottom:699.844533pt;}
.y99{bottom:705.100000pt;}
.yce{bottom:705.883467pt;}
.y162{bottom:705.883600pt;}
.yf8{bottom:710.786133pt;}
.y17a{bottom:715.626267pt;}
.y5c{bottom:721.224133pt;}
.ycd{bottom:721.883467pt;}
.y161{bottom:721.883600pt;}
.y98{bottom:722.700000pt;}
.y2f{bottom:726.192800pt;}
.yf7{bottom:727.719467pt;}
.y179{bottom:733.226267pt;}
.y5b{bottom:734.024133pt;}
.ycc{bottom:737.883467pt;}
.y160{bottom:737.883600pt;}
.y97{bottom:740.300000pt;}
.y2e{bottom:740.592800pt;}
.yf6{bottom:744.652800pt;}
.y126{bottom:745.098133pt;}
.y14{bottom:749.000933pt;}
.y178{bottom:750.826267pt;}
.y5a{bottom:751.624133pt;}
.ycb{bottom:753.883467pt;}
.y15f{bottom:753.883600pt;}
.y2d{bottom:754.992800pt;}
.y96{bottom:757.900000pt;}
.y125{bottom:761.098133pt;}
.yf5{bottom:761.586133pt;}
.y13{bottom:763.400933pt;}
.y177{bottom:768.426267pt;}
.y59{bottom:769.224133pt;}
.yca{bottom:769.883467pt;}
.y15e{bottom:769.883600pt;}
.y124{bottom:777.098133pt;}
.yf4{bottom:778.519467pt;}
.y2c{bottom:783.792800pt;}
.yc9{bottom:785.883467pt;}
.y15d{bottom:785.883600pt;}
.y58{bottom:790.603600pt;}
.y123{bottom:793.098133pt;}
.y95{bottom:793.100000pt;}
.y174{bottom:794.391467pt;}
.yf3{bottom:795.452800pt;}
.y2b{bottom:798.192800pt;}
.yc8{bottom:801.883467pt;}
.y15c{bottom:801.883600pt;}
.y57{bottom:803.403600pt;}
.y8d{bottom:804.264133pt;}
.y122{bottom:809.098133pt;}
.y94{bottom:810.700000pt;}
.yf2{bottom:812.386133pt;}
.y8c{bottom:817.064267pt;}
.yc7{bottom:817.883467pt;}
.y15b{bottom:817.883600pt;}
.y56{bottom:821.003600pt;}
.y19{bottom:823.176133pt;}
.y93{bottom:828.300000pt;}
.yf1{bottom:829.319467pt;}
.y121{bottom:832.657200pt;}
.yc6{bottom:833.883467pt;}
.y15a{bottom:833.883600pt;}
.y8b{bottom:834.664267pt;}
.y18{bottom:837.576133pt;}
.y55{bottom:842.383200pt;}
.y92{bottom:845.900000pt;}
.yf0{bottom:846.252800pt;}
.yc5{bottom:849.883467pt;}
.y159{bottom:849.883600pt;}
.y54{bottom:855.183200pt;}
.y176{bottom:855.696800pt;}
.y8a{bottom:856.043733pt;}
.yef{bottom:863.186133pt;}
.yc4{bottom:865.883467pt;}
.y158{bottom:865.883600pt;}
.y120{bottom:867.857200pt;}
.y89{bottom:868.843733pt;}
.y53{bottom:872.783200pt;}
.yee{bottom:880.119467pt;}
.yc3{bottom:881.883467pt;}
.y157{bottom:881.883600pt;}
.y175{bottom:882.455867pt;}
.y11f{bottom:883.857200pt;}
.y88{bottom:886.443733pt;}
.y52{bottom:894.162800pt;}
.y91{bottom:895.499867pt;}
.yed{bottom:897.052800pt;}
.yf{bottom:897.351333pt;}
.yc2{bottom:897.883467pt;}
.y156{bottom:897.883600pt;}
.y11e{bottom:899.857200pt;}
.y51{bottom:906.962667pt;}
.y87{bottom:907.823200pt;}
.ye{bottom:911.751333pt;}
.yc1{bottom:913.883467pt;}
.y155{bottom:913.883600pt;}
.yec{bottom:913.986133pt;}
.y11d{bottom:915.857200pt;}
.y86{bottom:920.623200pt;}
.y50{bottom:928.342267pt;}
.yc0{bottom:929.883467pt;}
.y154{bottom:929.883600pt;}
.yeb{bottom:930.919467pt;}
.y11c{bottom:931.857200pt;}
.y90{bottom:933.900000pt;}
.y4f{bottom:941.142267pt;}
.y85{bottom:942.002800pt;}
.ybf{bottom:945.883467pt;}
.y153{bottom:945.883600pt;}
.yea{bottom:947.852800pt;}
.y11b{bottom:947.857200pt;}
.y4a{bottom:950.506933pt;}
.y84{bottom:954.802800pt;}
.y4e{bottom:958.742267pt;}
.ybe{bottom:961.883467pt;}
.y152{bottom:961.883600pt;}
.y11a{bottom:963.857200pt;}
.ye9{bottom:964.786267pt;}
.y8f{bottom:972.300000pt;}
.y83{bottom:972.402800pt;}
.ybd{bottom:977.883467pt;}
.y151{bottom:977.883600pt;}
.ye8{bottom:981.719600pt;}
.y82{bottom:993.782267pt;}
.ybc{bottom:993.883467pt;}
.y150{bottom:993.883600pt;}
.ye7{bottom:998.652933pt;}
.y4d{bottom:1000.645200pt;}
.y81{bottom:1006.582267pt;}
.ybb{bottom:1009.883467pt;}
.y14f{bottom:1009.883600pt;}
.y8e{bottom:1010.700000pt;}
.y2a{bottom:1012.454133pt;}
.ye6{bottom:1023.145200pt;}
.y80{bottom:1024.182267pt;}
.yba{bottom:1025.883467pt;}
.y14e{bottom:1025.883600pt;}
.y29{bottom:1026.854133pt;}
.yd{bottom:1058.007600pt;}
.h12{height:31.062500pt;}
.hc{height:34.945312pt;}
.hd{height:34.992188pt;}
.h9{height:35.088000pt;}
.he{height:35.179688pt;}
.h19{height:37.395833pt;}
.h1b{height:38.109487pt;}
.h17{height:38.880208pt;}
.hb{height:38.933333pt;}
.h16{height:39.088542pt;}
.h1a{height:39.557292pt;}
.h11{height:41.135417pt;}
.hf{height:42.710938pt;}
.h1e{height:42.768229pt;}
.h1f{height:42.997396pt;}
.h13{height:43.513021pt;}
.h18{height:44.875000pt;}
.h1d{height:46.656250pt;}
.h5{height:47.900417pt;}
.h7{height:50.544271pt;}
.h4{height:54.437031pt;}
.h6{height:69.890625pt;}
.ha{height:73.512188pt;}
.h1c{height:75.687500pt;}
.h3{height:89.424479pt;}
.h14{height:89.750000pt;}
.h15{height:94.937500pt;}
.h8{height:101.088542pt;}
.h10{height:139.968750pt;}
.h2{height:150.556443pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:58.815467pt;}
.x19{left:60.472400pt;}
.x17{left:62.551200pt;}
.x31{left:64.042000pt;}
.x28{left:65.805733pt;}
.x34{left:69.194667pt;}
.x32{left:70.963467pt;}
.x2c{left:79.772133pt;}
.x36{left:82.343467pt;}
.x11{left:86.929067pt;}
.x12{left:89.791067pt;}
.xc{left:93.734400pt;}
.x1a{left:98.267733pt;}
.x2b{left:99.502267pt;}
.x35{left:105.206000pt;}
.x29{left:113.385867pt;}
.x37{left:117.856667pt;}
.x1b{left:124.724400pt;}
.xb{left:131.905467pt;}
.x1d{left:155.256000pt;}
.x33{left:156.711200pt;}
.x30{left:158.740133pt;}
.x2{left:189.313733pt;}
.x38{left:207.088533pt;}
.x2d{left:208.224933pt;}
.x15{left:222.870800pt;}
.x1c{left:231.146667pt;}
.x18{left:252.850400pt;}
.x1e{left:263.006000pt;}
.x1f{left:282.193467pt;}
.x2f{left:317.053733pt;}
.x2e{left:353.231467pt;}
.x21{left:376.244267pt;}
.x22{left:424.649200pt;}
.x25{left:435.788533pt;}
.x27{left:436.823733pt;}
.x24{left:446.001467pt;}
.xe{left:451.942267pt;}
.x13{left:478.458533pt;}
.x10{left:490.140267pt;}
.xf{left:499.480133pt;}
.x26{left:500.743067pt;}
.x20{left:529.103067pt;}
.x16{left:542.635333pt;}
.x23{left:564.291200pt;}
.x1{left:573.035867pt;}
.x2a{left:607.917200pt;}
.x8{left:622.241600pt;}
.x5{left:624.377867pt;}
.x3{left:627.488000pt;}
.x7{left:646.475733pt;}
.x6{left:652.527200pt;}
.x9{left:656.589733pt;}
.x4{left:660.726133pt;}
.xd{left:677.322133pt;}
.x14{left:754.248533pt;}
}




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