
    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_8be6dbefa49624117b1fbe24.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.981445;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_eb09485face4583e6e6f60b1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.944000;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_4ce7ba4d21731a1b44e0d979.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0491ac9b537650f1f5ebe678.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.026367;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_b0cf13c2ad33e85acbe14956.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946000;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_8c11994b7c0c2f3f6d33ee77.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946000;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_ff8ce37f515d52d4891f1048.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.944000;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_d01a46805aea1b2ecb1eb99e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.027344;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_8c11994b7c0c2f3f6d33ee77.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946000;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_ff8ce37f515d52d4891f1048.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.944000;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_fdb5386e778660d210c10a58.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.976675;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_288222b826a0da12dccf6a89.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.840332;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_054ce732453d47315f5d93b4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.961914;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_cc888a8b7a2253a487155a36.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666992;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_d53d3ca9d7dd7b8bb0ff04a4.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5a1cfb45758a742900cd6850.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.729542;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_dac383258731ae47cc332df3.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.026000;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_dac383258731ae47cc332df3.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.026000;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_dac383258731ae47cc332df3.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.026000;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_dac383258731ae47cc332df3.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.026000;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_dac383258731ae47cc332df3.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.026000;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_f8f40089f5fdff54241519cd.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.944000;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_2330e6fe274a06c4a903ccf1.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.947000;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_57067f49ce93db997bcc6caa.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.026000;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_dac383258731ae47cc332df3.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.026000;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;}
.m2{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);}
.m1{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);}
.v3{vertical-align:-19.980000px;}
.v1{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.980000px;}
.v2{vertical-align:23.975400px;}
.v6{vertical-align:46.168800px;}
.v5{vertical-align:53.422800px;}
.lsf{letter-spacing:-0.600000px;}
.ls1e{letter-spacing:-0.336000px;}
.ls4{letter-spacing:-0.300000px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.002520px;}
.ls14{letter-spacing:0.004200px;}
.ls12{letter-spacing:0.004800px;}
.ls13{letter-spacing:0.005640px;}
.ls1a{letter-spacing:0.006240px;}
.lsc{letter-spacing:0.008400px;}
.ls1{letter-spacing:0.008784px;}
.lse{letter-spacing:0.009600px;}
.ls7{letter-spacing:0.010200px;}
.ls18{letter-spacing:0.011400px;}
.ls15{letter-spacing:0.012600px;}
.ls11{letter-spacing:0.013920px;}
.ls1b{letter-spacing:0.015840px;}
.ls9{letter-spacing:0.016440px;}
.lsa{letter-spacing:0.017040px;}
.ls16{letter-spacing:0.019800px;}
.lsb{letter-spacing:0.024000px;}
.ls8{letter-spacing:0.024600px;}
.ls6{letter-spacing:0.027000px;}
.ls1d{letter-spacing:1.848000px;}
.ls19{letter-spacing:2.455800px;}
.ls2{letter-spacing:37.753200px;}
.ls3{letter-spacing:73.375200px;}
.ls5{letter-spacing:120.643200px;}
.ls1c{letter-spacing:248.506200px;}
.ls1f{letter-spacing:918.288000px;}
.ls10{letter-spacing:2720.664600px;}
.lsd{letter-spacing:2727.234420px;}
.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;}
}
.ws59{word-spacing:-918.288000px;}
.ws20{word-spacing:-60.000000px;}
.ws5a{word-spacing:-18.864000px;}
.ws3c{word-spacing:-15.420000px;}
.ws1{word-spacing:-14.880000px;}
.ws1f{word-spacing:-14.460000px;}
.ws5b{word-spacing:-13.122000px;}
.ws44{word-spacing:-12.054000px;}
.ws41{word-spacing:-11.904000px;}
.ws2{word-spacing:-11.664000px;}
.ws55{word-spacing:-11.568000px;}
.ws11{word-spacing:-9.252000px;}
.ws1e{word-spacing:-8.430180px;}
.ws1d{word-spacing:-7.260000px;}
.ws3{word-spacing:-6.800112px;}
.ws1c{word-spacing:-6.660000px;}
.ws3b{word-spacing:-6.060000px;}
.ws21{word-spacing:-5.820000px;}
.ws1a{word-spacing:-5.340000px;}
.ws39{word-spacing:-5.280000px;}
.ws35{word-spacing:-5.220000px;}
.ws22{word-spacing:-4.860000px;}
.ws38{word-spacing:-4.500000px;}
.ws1b{word-spacing:-3.900000px;}
.ws24{word-spacing:-3.060000px;}
.ws3e{word-spacing:-2.940000px;}
.ws14{word-spacing:-2.460000px;}
.ws4{word-spacing:-2.340000px;}
.ws53{word-spacing:-2.160000px;}
.ws4e{word-spacing:-1.848000px;}
.ws3a{word-spacing:-1.800000px;}
.ws51{word-spacing:-1.500000px;}
.ws23{word-spacing:-1.140000px;}
.ws36{word-spacing:-0.720000px;}
.ws2b{word-spacing:-0.600000px;}
.ws50{word-spacing:-0.300000px;}
.ws29{word-spacing:-0.120000px;}
.ws2c{word-spacing:-0.060000px;}
.ws56{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws12{word-spacing:0.120000px;}
.ws5{word-spacing:0.300000px;}
.ws58{word-spacing:0.336000px;}
.ws17{word-spacing:0.360000px;}
.ws15{word-spacing:0.420000px;}
.ws2a{word-spacing:0.480000px;}
.ws19{word-spacing:0.780000px;}
.ws25{word-spacing:0.900000px;}
.ws30{word-spacing:1.380000px;}
.ws37{word-spacing:1.500000px;}
.ws18{word-spacing:1.800000px;}
.ws26{word-spacing:1.920000px;}
.ws54{word-spacing:1.980000px;}
.ws27{word-spacing:2.100000px;}
.ws32{word-spacing:2.280000px;}
.ws13{word-spacing:3.120000px;}
.ws28{word-spacing:3.360000px;}
.ws33{word-spacing:3.720000px;}
.ws34{word-spacing:3.780000px;}
.ws3d{word-spacing:4.500000px;}
.ws16{word-spacing:5.520000px;}
.wsc{word-spacing:50.280000px;}
.wsa{word-spacing:53.280000px;}
.wse{word-spacing:67.920000px;}
.ws8{word-spacing:71.400000px;}
.ws6{word-spacing:89.520000px;}
.ws46{word-spacing:93.792000px;}
.ws2f{word-spacing:124.951560px;}
.ws2e{word-spacing:221.291310px;}
.ws57{word-spacing:250.320000px;}
.ws2d{word-spacing:316.574280px;}
.ws52{word-spacing:345.456000px;}
.ws42{word-spacing:348.096000px;}
.ws4f{word-spacing:348.144000px;}
.ws43{word-spacing:351.312000px;}
.ws3f{word-spacing:420.672000px;}
.ws47{word-spacing:496.992000px;}
.ws40{word-spacing:577.392000px;}
.ws48{word-spacing:677.760000px;}
.ws45{word-spacing:852.144000px;}
.ws49{word-spacing:879.696000px;}
.ws4c{word-spacing:908.976000px;}
.ws4a{word-spacing:957.168000px;}
.ws4b{word-spacing:1037.088000px;}
.ws4d{word-spacing:1055.712000px;}
.ws9{word-spacing:2182.680000px;}
.wsf{word-spacing:2197.380000px;}
.ws7{word-spacing:2203.620000px;}
.ws10{word-spacing:2227.560000px;}
.wsd{word-spacing:2363.580000px;}
.wsb{word-spacing:2412.780000px;}
.ws31{word-spacing:2721.240000px;}
._41{margin-left:-971.472000px;}
._3f{margin-left:-819.936000px;}
._3a{margin-left:-632.898000px;}
._14{margin-left:-122.036340px;}
._a{margin-left:-43.657800px;}
._17{margin-left:-9.408000px;}
._5{margin-left:-7.932000px;}
._6{margin-left:-6.867600px;}
._4{margin-left:-5.728800px;}
._3{margin-left:-4.460400px;}
._1{margin-left:-3.250800px;}
._0{margin-left:-1.940400px;}
._2{width:1.050000px;}
._10{width:2.166000px;}
._d{width:3.238800px;}
._e{width:4.251600px;}
._11{width:5.306400px;}
._b{width:6.492000px;}
._c{width:7.573200px;}
._9{width:25.907136px;}
._8{width:49.649568px;}
._f{width:50.938152px;}
._7{width:61.344000px;}
._12{width:71.127600px;}
._1b{width:216.288000px;}
._16{width:293.482800px;}
._3c{width:358.704000px;}
._3b{width:359.808000px;}
._3d{width:362.976000px;}
._15{width:397.231800px;}
._2c{width:526.512000px;}
._18{width:549.476400px;}
._22{width:577.392000px;}
._27{width:590.256000px;}
._1a{width:603.984000px;}
._3e{width:607.200000px;}
._28{width:634.512000px;}
._2f{width:677.664000px;}
._2e{width:708.672000px;}
._2b{width:711.860400px;}
._31{width:729.504000px;}
._39{width:734.262000px;}
._38{width:745.200000px;}
._34{width:750.336000px;}
._32{width:776.036400px;}
._37{width:788.160000px;}
._35{width:800.208000px;}
._1e{width:814.512000px;}
._36{width:829.296000px;}
._29{width:832.182000px;}
._21{width:835.344000px;}
._1c{width:856.464000px;}
._25{width:859.488000px;}
._2d{width:877.728000px;}
._26{width:883.440000px;}
._1f{width:887.684400px;}
._23{width:898.128000px;}
._24{width:914.352000px;}
._30{width:919.296000px;}
._2a{width:954.274800px;}
._19{width:962.784000px;}
._40{width:964.128000px;}
._33{width:1005.552000px;}
._1d{width:1030.944000px;}
._13{width:1062.158400px;}
._20{width:1117.200000px;}
.fc6{color:rgb(62,75,168);}
.fc5{color:rgb(216,54,77);}
.fc3{color:rgb(24,65,147);}
.fc4{color:rgb(35,31,32);}
.fc2{color:rgb(57,53,54);}
.fc1{color:rgb(0,47,135);}
.fc0{color:rgb(145,143,143);}
.fs6{font-size:27.984000px;}
.fs5{font-size:34.980000px;}
.fsa{font-size:36.000000px;}
.fsc{font-size:41.976000px;}
.fse{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fsd{font-size:66.000000px;}
.fsb{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs2{font-size:114.000000px;}
.fs1{font-size:120.000000px;}
.fs0{font-size:132.000000px;}
.fs3{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y132{bottom:3.251100px;}
.yfd{bottom:3.251700px;}
.y10e{bottom:3.252150px;}
.y16f{bottom:3.252600px;}
.y179{bottom:3.253200px;}
.y13c{bottom:3.254700px;}
.y177{bottom:23.413200px;}
.y133{bottom:27.594600px;}
.y10f{bottom:27.595650px;}
.yfe{bottom:29.095200px;}
.y2c{bottom:48.018750px;}
.y12a{bottom:100.113600px;}
.y106{bottom:100.114650px;}
.yf5{bottom:101.615700px;}
.y118{bottom:110.562900px;}
.y8a{bottom:110.719650px;}
.yf2{bottom:111.625950px;}
.y6a{bottom:112.451550px;}
.yba{bottom:112.655700px;}
.y159{bottom:112.751550px;}
.yc9{bottom:113.031450px;}
.y24{bottom:113.673150px;}
.y4b{bottom:116.177100px;}
.y194{bottom:119.968950px;}
.y89{bottom:122.413950px;}
.y136{bottom:123.335400px;}
.y117{bottom:127.062900px;}
.yf1{bottom:128.125950px;}
.y15d{bottom:134.503950px;}
.y69{bottom:137.501550px;}
.yb9{bottom:137.705700px;}
.y158{bottom:137.801550px;}
.y193{bottom:137.968950px;}
.yc8{bottom:138.081450px;}
.y23{bottom:138.177150px;}
.y162{bottom:142.486350px;}
.y16a{bottom:146.593800px;}
.y15c{bottom:152.503950px;}
.y192{bottom:155.968950px;}
.y11a{bottom:158.074500px;}
.y22{bottom:158.673150px;}
.y171{bottom:158.847750px;}
.yf4{bottom:159.024000px;}
.y68{bottom:162.551550px;}
.yb8{bottom:162.755700px;}
.y157{bottom:162.851550px;}
.yc7{bottom:163.131450px;}
.y15b{bottom:170.503950px;}
.y191{bottom:173.968950px;}
.y121{bottom:187.171200px;}
.y21{bottom:187.173150px;}
.y67{bottom:187.601550px;}
.yb7{bottom:187.805700px;}
.y156{bottom:187.901550px;}
.y83{bottom:188.051550px;}
.yfc{bottom:188.120700px;}
.yc6{bottom:188.181450px;}
.y127{bottom:188.291400px;}
.y15a{bottom:188.503950px;}
.y4a{bottom:189.527850px;}
.y11b{bottom:202.445850px;}
.yf6{bottom:203.395200px;}
.y8c{bottom:212.651550px;}
.yc5{bottom:213.231450px;}
.y49{bottom:214.577700px;}
.y20{bottom:215.673150px;}
.y135{bottom:220.272000px;}
.y170{bottom:221.728500px;}
.y82{bottom:233.156550px;}
.y155{bottom:233.951550px;}
.y66{bottom:237.701550px;}
.yb6{bottom:237.905700px;}
.y88{bottom:238.234200px;}
.yc4{bottom:238.281450px;}
.y137{bottom:238.923900px;}
.y48{bottom:239.627850px;}
.y124{bottom:240.807000px;}
.y101{bottom:241.756500px;}
.y178{bottom:245.141700px;}
.y87{bottom:245.780400px;}
.y190{bottom:250.427700px;}
.y11c{bottom:252.365850px;}
.yf7{bottom:253.315200px;}
.y154{bottom:259.001550px;}
.y65{bottom:262.751550px;}
.yc3{bottom:263.331450px;}
.y47{bottom:264.677700px;}
.y18f{bottom:269.927700px;}
.y169{bottom:271.566900px;}
.y13b{bottom:272.894700px;}
.y172{bottom:273.754200px;}
.y153{bottom:284.051550px;}
.y64{bottom:287.801550px;}
.yb5{bottom:288.005700px;}
.y81{bottom:288.251550px;}
.yc2{bottom:288.381450px;}
.y130{bottom:297.236400px;}
.y10c{bottom:297.237600px;}
.yfb{bottom:298.738500px;}
.y120{bottom:298.738650px;}
.y138{bottom:300.483900px;}
.y11d{bottom:303.269850px;}
.yf8{bottom:304.219200px;}
.y18e{bottom:308.927700px;}
.y152{bottom:309.101550px;}
.y46{bottom:310.727850px;}
.y103{bottom:312.106350px;}
.y63{bottom:312.851550px;}
.y80{bottom:313.301550px;}
.yc1{bottom:313.431450px;}
.y18d{bottom:328.427700px;}
.y102{bottom:328.606350px;}
.y173{bottom:331.834200px;}
.y45{bottom:335.777850px;}
.y9b{bottom:337.411350px;}
.y62{bottom:337.901550px;}
.yb4{bottom:338.105700px;}
.y7f{bottom:338.351550px;}
.yc0{bottom:338.481450px;}
.y9c{bottom:342.406500px;}
.y85{bottom:347.508750px;}
.y11e{bottom:354.101850px;}
.yf9{bottom:355.051200px;}
.y151{bottom:355.151550px;}
.y105{bottom:356.653500px;}
.y44{bottom:360.827700px;}
.y1c{bottom:361.164600px;}
.y61{bottom:362.951550px;}
.yb3{bottom:363.155700px;}
.y139{bottom:365.439900px;}
.y18c{bottom:367.427700px;}
.y150{bottom:380.201550px;}
.y10d{bottom:384.249150px;}
.y43{bottom:385.877850px;}
.y1b{bottom:386.664600px;}
.y60{bottom:388.001550px;}
.y9a{bottom:388.009800px;}
.yb2{bottom:388.205700px;}
.y7e{bottom:388.451550px;}
.ybf{bottom:388.581450px;}
.y174{bottom:389.758200px;}
.y107{bottom:399.525300px;}
.y14f{bottom:405.251550px;}
.y18b{bottom:406.427700px;}
.y11f{bottom:406.949850px;}
.y98{bottom:407.461500px;}
.yfa{bottom:407.899200px;}
.y42{bottom:410.927700px;}
.y5f{bottom:413.051550px;}
.yb1{bottom:413.255700px;}
.y7d{bottom:413.501550px;}
.ybe{bottom:413.631450px;}
.y99{bottom:418.091400px;}
.y122{bottom:422.100000px;}
.yff{bottom:423.049500px;}
.y6{bottom:424.492950px;}
.y18a{bottom:425.927700px;}
.y13a{bottom:428.691900px;}
.y14e{bottom:430.301550px;}
.y41{bottom:435.977850px;}
.y110{bottom:436.387800px;}
.y123{bottom:437.073000px;}
.y1a{bottom:437.664600px;}
.y100{bottom:438.022500px;}
.y5e{bottom:438.101550px;}
.yb0{bottom:438.305700px;}
.y7c{bottom:438.551550px;}
.ybd{bottom:438.681450px;}
.y175{bottom:447.886200px;}
.y108{bottom:449.433300px;}
.y14d{bottom:455.351550px;}
.y13d{bottom:458.704800px;}
.y5{bottom:460.492950px;}
.y5d{bottom:463.151550px;}
.y19{bottom:463.164600px;}
.yaf{bottom:463.355700px;}
.y7b{bottom:463.601550px;}
.ybc{bottom:463.731450px;}
.y189{bottom:464.927700px;}
.y97{bottom:466.563900px;}
.y13e{bottom:473.677800px;}
.y14c{bottom:480.401550px;}
.y40{bottom:482.027850px;}
.y188{bottom:484.427700px;}
.yae{bottom:488.405700px;}
.y7a{bottom:488.651550px;}
.y18{bottom:488.664600px;}
.ybb{bottom:488.781450px;}
.y119{bottom:490.401450px;}
.yf3{bottom:491.464350px;}
.y4{bottom:496.492950px;}
.y86{bottom:496.540200px;}
.y109{bottom:500.337300px;}
.y14b{bottom:505.451550px;}
.y176{bottom:505.522200px;}
.y3f{bottom:507.077700px;}
.y96{bottom:507.807900px;}
.y5c{bottom:513.251550px;}
.y95{bottom:513.442950px;}
.yad{bottom:513.455700px;}
.y79{bottom:513.701550px;}
.y17{bottom:514.164600px;}
.y187{bottom:523.427700px;}
.y128{bottom:528.031350px;}
.y3e{bottom:532.127850px;}
.y3{bottom:532.492950px;}
.y5b{bottom:538.301550px;}
.y78{bottom:538.751550px;}
.y16{bottom:539.664600px;}
.y160{bottom:543.224400px;}
.y116{bottom:546.401550px;}
.y84{bottom:547.138650px;}
.y10a{bottom:551.169300px;}
.y14a{bottom:553.001550px;}
.y3d{bottom:557.177700px;}
.yde{bottom:559.139700px;}
.y186{bottom:562.427700px;}
.y5a{bottom:563.351550px;}
.yac{bottom:563.555700px;}
.y15{bottom:565.164600px;}
.y115{bottom:571.451550px;}
.yf0{bottom:572.031450px;}
.y15f{bottom:577.284450px;}
.ydd{bottom:577.889700px;}
.y126{bottom:581.043300px;}
.y185{bottom:581.927700px;}
.y3c{bottom:582.227850px;}
.y59{bottom:588.401550px;}
.yab{bottom:588.605700px;}
.y77{bottom:588.851550px;}
.y14{bottom:590.664600px;}
.y114{bottom:596.501550px;}
.y125{bottom:597.543300px;}
.y149{bottom:600.551550px;}
.y10b{bottom:604.017300px;}
.y3b{bottom:607.277850px;}
.yef{bottom:609.873900px;}
.y2{bottom:611.692950px;}
.ydc{bottom:613.139700px;}
.y58{bottom:613.451550px;}
.yaa{bottom:613.655700px;}
.y161{bottom:620.647500px;}
.y184{bottom:620.927700px;}
.y148{bottom:625.601550px;}
.yee{bottom:629.373900px;}
.y129{bottom:629.631000px;}
.ydb{bottom:631.889700px;}
.y57{bottom:638.501550px;}
.ya9{bottom:638.705700px;}
.y76{bottom:638.951550px;}
.y183{bottom:640.427700px;}
.y13{bottom:641.214600px;}
.y113{bottom:642.551550px;}
.y2b{bottom:642.881700px;}
.yed{bottom:648.873900px;}
.yda{bottom:649.889700px;}
.y147{bottom:650.651550px;}
.y163{bottom:652.803600px;}
.y131{bottom:657.225600px;}
.y3a{bottom:657.377850px;}
.y182{bottom:659.927700px;}
.y56{bottom:663.551550px;}
.ya8{bottom:663.755700px;}
.y75{bottom:664.001550px;}
.y112{bottom:667.601550px;}
.yd9{bottom:667.889700px;}
.yec{bottom:668.373900px;}
.y12b{bottom:672.501600px;}
.y146{bottom:675.701550px;}
.y1{bottom:677.692950px;}
.y39{bottom:682.427700px;}
.y16b{bottom:683.130600px;}
.yd8{bottom:685.889700px;}
.y104{bottom:687.692850px;}
.yeb{bottom:687.873900px;}
.y8b{bottom:688.601550px;}
.ya7{bottom:688.805700px;}
.y74{bottom:689.051550px;}
.y164{bottom:692.439600px;}
.y111{bottom:692.651550px;}
.y2a{bottom:693.881700px;}
.y181{bottom:698.927700px;}
.y145{bottom:700.751550px;}
.yd7{bottom:703.889700px;}
.yea{bottom:707.373900px;}
.y38{bottom:707.477850px;}
.y134{bottom:709.364100px;}
.ye{bottom:711.093300px;}
.y55{bottom:713.651550px;}
.ya6{bottom:713.855700px;}
.y73{bottom:714.101550px;}
.y180{bottom:718.427700px;}
.yd6{bottom:721.889700px;}
.y12c{bottom:722.409600px;}
.y144{bottom:725.801550px;}
.ye9{bottom:726.873900px;}
.y37{bottom:732.527850px;}
.y165{bottom:733.059600px;}
.yd{bottom:736.143300px;}
.y54{bottom:738.701550px;}
.ya5{bottom:738.905700px;}
.y72{bottom:739.151550px;}
.yd5{bottom:739.889700px;}
.y12{bottom:741.138300px;}
.y29{bottom:744.881700px;}
.y16c{bottom:745.218600px;}
.ye8{bottom:746.373900px;}
.y143{bottom:750.851550px;}
.y17f{bottom:757.427700px;}
.y36{bottom:757.577700px;}
.yd4{bottom:757.889700px;}
.yc{bottom:761.193300px;}
.y53{bottom:763.751550px;}
.ya4{bottom:763.955700px;}
.y71{bottom:764.201550px;}
.ye7{bottom:765.873900px;}
.y11{bottom:766.188300px;}
.y166{bottom:772.491600px;}
.y12d{bottom:773.313600px;}
.yd3{bottom:775.889700px;}
.y142{bottom:775.901550px;}
.y17e{bottom:776.927700px;}
.y35{bottom:782.627700px;}
.y9{bottom:784.226400px;}
.ye6{bottom:785.373900px;}
.yb{bottom:786.243300px;}
.y93{bottom:786.419250px;}
.y52{bottom:788.801550px;}
.ya3{bottom:789.005700px;}
.y70{bottom:789.251550px;}
.y10{bottom:791.238300px;}
.yd2{bottom:793.889700px;}
.y94{bottom:793.965600px;}
.y28{bottom:795.881700px;}
.ye5{bottom:804.873900px;}
.y16d{bottom:807.642600px;}
.y34{bottom:807.677700px;}
.ya{bottom:811.293300px;}
.yd1{bottom:811.889700px;}
.y167{bottom:812.127600px;}
.y51{bottom:813.851550px;}
.ya2{bottom:814.055700px;}
.y6f{bottom:814.301550px;}
.y17d{bottom:815.927700px;}
.yf{bottom:816.288300px;}
.y141{bottom:821.951550px;}
.y12e{bottom:824.145600px;}
.ye4{bottom:824.373900px;}
.yd0{bottom:829.889700px;}
.y33{bottom:832.727850px;}
.y17c{bottom:835.427700px;}
.y8{bottom:838.226400px;}
.y50{bottom:838.901550px;}
.ya1{bottom:839.105700px;}
.ye3{bottom:843.873900px;}
.y90{bottom:845.414400px;}
.y27{bottom:846.881700px;}
.ycf{bottom:847.889700px;}
.y168{bottom:852.423600px;}
.y32{bottom:857.777850px;}
.ye2{bottom:863.373900px;}
.y4f{bottom:863.951550px;}
.ya0{bottom:864.155700px;}
.y6e{bottom:864.401550px;}
.yce{bottom:865.889700px;}
.y140{bottom:868.001550px;}
.y16e{bottom:869.202600px;}
.y92{bottom:871.138800px;}
.y91{bottom:871.351350px;}
.y17b{bottom:874.427700px;}
.y12f{bottom:876.993600px;}
.y31{bottom:882.827850px;}
.ye1{bottom:882.873900px;}
.ycd{bottom:883.889700px;}
.y1f{bottom:885.423300px;}
.y9f{bottom:889.205700px;}
.y6d{bottom:889.451550px;}
.y7{bottom:892.226400px;}
.y13f{bottom:893.051550px;}
.y17a{bottom:893.927700px;}
.y26{bottom:897.881700px;}
.ye0{bottom:902.373900px;}
.y30{bottom:907.877700px;}
.y8e{bottom:911.427150px;}
.ycc{bottom:913.889700px;}
.y4e{bottom:914.051550px;}
.y9e{bottom:914.255700px;}
.y6c{bottom:914.351550px;}
.y8f{bottom:919.823850px;}
.y15e{bottom:921.693900px;}
.ydf{bottom:933.873900px;}
.y4d{bottom:939.101550px;}
.y6b{bottom:939.251550px;}
.y1e{bottom:939.423300px;}
.ycb{bottom:939.881700px;}
.y8d{bottom:954.054150px;}
.y25{bottom:955.073850px;}
.y2f{bottom:957.977850px;}
.yca{bottom:960.881700px;}
.y4c{bottom:964.151550px;}
.y9d{bottom:964.355700px;}
.y1d{bottom:993.423300px;}
.y2e{bottom:1063.515900px;}
.y2d{bottom:1078.516500px;}
.hb{height:21.274945px;}
.h9{height:22.266000px;}
.h6{height:26.593682px;}
.h10{height:26.856000px;}
.hf{height:26.892000px;}
.h15{height:27.891768px;}
.h21{height:33.474000px;}
.h29{height:35.856000px;}
.h1d{height:36.000000px;}
.ha{height:36.492188px;}
.h1e{height:38.250000px;}
.h20{height:38.256000px;}
.he{height:40.338000px;}
.h28{height:41.053711px;}
.h25{height:43.031250px;}
.h1c{height:44.760000px;}
.hd{height:44.820000px;}
.h7{height:45.000000px;}
.h5{height:45.615234px;}
.h8{height:47.812500px;}
.h12{height:47.841797px;}
.h1a{height:47.871168px;}
.h18{height:47.871768px;}
.h19{height:47.988281px;}
.h1b{height:49.236000px;}
.h13{height:53.784000px;}
.h11{height:55.331472px;}
.hc{height:62.664000px;}
.h14{height:67.821797px;}
.h3{height:86.668945px;}
.h2{height:91.230469px;}
.h17{height:94.010597px;}
.h1{height:100.353516px;}
.h16{height:101.264597px;}
.h4{height:125.328000px;}
.h26{height:281.832000px;}
.h24{height:283.159500px;}
.h27{height:298.074000px;}
.h22{height:307.503000px;}
.h23{height:309.004500px;}
.h1f{height:309.006000px;}
.h0{height:1188.000000px;}
.w5{width:561.295500px;}
.w2{width:566.797500px;}
.w1{width:566.799000px;}
.w3{width:566.800500px;}
.w4{width:600.672000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x34{left:10.265400px;}
.x44{left:21.919350px;}
.x37{left:27.649500px;}
.x3e{left:74.174550px;}
.x47{left:101.806800px;}
.x15{left:106.299150px;}
.x17{left:117.779550px;}
.x9{left:123.176100px;}
.x49{left:125.498400px;}
.x11{left:127.559100px;}
.x13{left:132.235950px;}
.x4c{left:136.063050px;}
.x1a{left:141.165300px;}
.x8{left:144.784500px;}
.x40{left:158.664150px;}
.x1d{left:170.078700px;}
.x33{left:175.600350px;}
.x7{left:179.727300px;}
.x2c{left:181.559100px;}
.x48{left:184.367700px;}
.x43{left:187.233750px;}
.x14{left:190.236450px;}
.x1b{left:195.165300px;}
.x35{left:199.823100px;}
.x3c{left:202.617300px;}
.x36{left:203.651100px;}
.x2d{left:210.047250px;}
.x4b{left:227.727150px;}
.x27{left:249.165300px;}
.x12{left:252.730200px;}
.x25{left:253.842450px;}
.x22{left:279.779550px;}
.x2a{left:285.944850px;}
.x2b{left:297.850350px;}
.x38{left:303.076350px;}
.x2e{left:321.448800px;}
.x41{left:347.752050px;}
.x42{left:357.478200px;}
.x3b{left:359.882700px;}
.x20{left:363.224400px;}
.x28{left:378.212550px;}
.x23{left:380.338650px;}
.x2f{left:387.779550px;}
.x29{left:389.267700px;}
.x18{left:391.103700px;}
.x1f{left:402.519000px;}
.x21{left:410.421300px;}
.x1e{left:413.291250px;}
.x10{left:430.523250px;}
.x5{left:435.907200px;}
.x24{left:449.007900px;}
.x31{left:452.094900px;}
.x16{left:454.538250px;}
.x19{left:473.229150px;}
.x4d{left:477.329250px;}
.x32{left:480.047250px;}
.x3d{left:481.955400px;}
.x30{left:483.023550px;}
.x1c{left:503.858250px;}
.x2{left:536.000700px;}
.x1{left:537.134550px;}
.x39{left:540.196200px;}
.x6{left:564.171150px;}
.x3{left:570.795150px;}
.x4{left:587.939700px;}
.x45{left:597.420150px;}
.x26{left:604.629900px;}
.xc{left:624.992250px;}
.x4a{left:638.493000px;}
.x3a{left:658.702200px;}
.x3f{left:662.445150px;}
.xe{left:683.205150px;}
.xd{left:692.499600px;}
.xa{left:695.985900px;}
.xb{left:705.009300px;}
.x46{left:728.770650px;}
.xf{left:790.440900px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v1{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.760000pt;}
.v2{vertical-align:21.311467pt;}
.v6{vertical-align:41.038933pt;}
.v5{vertical-align:47.486933pt;}
.lsf{letter-spacing:-0.533333pt;}
.ls1e{letter-spacing:-0.298667pt;}
.ls4{letter-spacing:-0.266667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.002240pt;}
.ls14{letter-spacing:0.003733pt;}
.ls12{letter-spacing:0.004267pt;}
.ls13{letter-spacing:0.005013pt;}
.ls1a{letter-spacing:0.005547pt;}
.lsc{letter-spacing:0.007467pt;}
.ls1{letter-spacing:0.007808pt;}
.lse{letter-spacing:0.008533pt;}
.ls7{letter-spacing:0.009067pt;}
.ls18{letter-spacing:0.010133pt;}
.ls15{letter-spacing:0.011200pt;}
.ls11{letter-spacing:0.012373pt;}
.ls1b{letter-spacing:0.014080pt;}
.ls9{letter-spacing:0.014613pt;}
.lsa{letter-spacing:0.015147pt;}
.ls16{letter-spacing:0.017600pt;}
.lsb{letter-spacing:0.021333pt;}
.ls8{letter-spacing:0.021867pt;}
.ls6{letter-spacing:0.024000pt;}
.ls1d{letter-spacing:1.642667pt;}
.ls19{letter-spacing:2.182933pt;}
.ls2{letter-spacing:33.558400pt;}
.ls3{letter-spacing:65.222400pt;}
.ls5{letter-spacing:107.238400pt;}
.ls1c{letter-spacing:220.894400pt;}
.ls1f{letter-spacing:816.256000pt;}
.ls10{letter-spacing:2418.368533pt;}
.lsd{letter-spacing:2424.208373pt;}
.ws59{word-spacing:-816.256000pt;}
.ws20{word-spacing:-53.333333pt;}
.ws5a{word-spacing:-16.768000pt;}
.ws3c{word-spacing:-13.706667pt;}
.ws1{word-spacing:-13.226667pt;}
.ws1f{word-spacing:-12.853333pt;}
.ws5b{word-spacing:-11.664000pt;}
.ws44{word-spacing:-10.714667pt;}
.ws41{word-spacing:-10.581333pt;}
.ws2{word-spacing:-10.368000pt;}
.ws55{word-spacing:-10.282667pt;}
.ws11{word-spacing:-8.224000pt;}
.ws1e{word-spacing:-7.493493pt;}
.ws1d{word-spacing:-6.453333pt;}
.ws3{word-spacing:-6.044544pt;}
.ws1c{word-spacing:-5.920000pt;}
.ws3b{word-spacing:-5.386667pt;}
.ws21{word-spacing:-5.173333pt;}
.ws1a{word-spacing:-4.746667pt;}
.ws39{word-spacing:-4.693333pt;}
.ws35{word-spacing:-4.640000pt;}
.ws22{word-spacing:-4.320000pt;}
.ws38{word-spacing:-4.000000pt;}
.ws1b{word-spacing:-3.466667pt;}
.ws24{word-spacing:-2.720000pt;}
.ws3e{word-spacing:-2.613333pt;}
.ws14{word-spacing:-2.186667pt;}
.ws4{word-spacing:-2.080000pt;}
.ws53{word-spacing:-1.920000pt;}
.ws4e{word-spacing:-1.642667pt;}
.ws3a{word-spacing:-1.600000pt;}
.ws51{word-spacing:-1.333333pt;}
.ws23{word-spacing:-1.013333pt;}
.ws36{word-spacing:-0.640000pt;}
.ws2b{word-spacing:-0.533333pt;}
.ws50{word-spacing:-0.266667pt;}
.ws29{word-spacing:-0.106667pt;}
.ws2c{word-spacing:-0.053333pt;}
.ws56{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws12{word-spacing:0.106667pt;}
.ws5{word-spacing:0.266667pt;}
.ws58{word-spacing:0.298667pt;}
.ws17{word-spacing:0.320000pt;}
.ws15{word-spacing:0.373333pt;}
.ws2a{word-spacing:0.426667pt;}
.ws19{word-spacing:0.693333pt;}
.ws25{word-spacing:0.800000pt;}
.ws30{word-spacing:1.226667pt;}
.ws37{word-spacing:1.333333pt;}
.ws18{word-spacing:1.600000pt;}
.ws26{word-spacing:1.706667pt;}
.ws54{word-spacing:1.760000pt;}
.ws27{word-spacing:1.866667pt;}
.ws32{word-spacing:2.026667pt;}
.ws13{word-spacing:2.773333pt;}
.ws28{word-spacing:2.986667pt;}
.ws33{word-spacing:3.306667pt;}
.ws34{word-spacing:3.360000pt;}
.ws3d{word-spacing:4.000000pt;}
.ws16{word-spacing:4.906667pt;}
.wsc{word-spacing:44.693333pt;}
.wsa{word-spacing:47.360000pt;}
.wse{word-spacing:60.373333pt;}
.ws8{word-spacing:63.466667pt;}
.ws6{word-spacing:79.573333pt;}
.ws46{word-spacing:83.370667pt;}
.ws2f{word-spacing:111.068053pt;}
.ws2e{word-spacing:196.703387pt;}
.ws57{word-spacing:222.506667pt;}
.ws2d{word-spacing:281.399360pt;}
.ws52{word-spacing:307.072000pt;}
.ws42{word-spacing:309.418667pt;}
.ws4f{word-spacing:309.461333pt;}
.ws43{word-spacing:312.277333pt;}
.ws3f{word-spacing:373.930667pt;}
.ws47{word-spacing:441.770667pt;}
.ws40{word-spacing:513.237333pt;}
.ws48{word-spacing:602.453333pt;}
.ws45{word-spacing:757.461333pt;}
.ws49{word-spacing:781.952000pt;}
.ws4c{word-spacing:807.978667pt;}
.ws4a{word-spacing:850.816000pt;}
.ws4b{word-spacing:921.856000pt;}
.ws4d{word-spacing:938.410667pt;}
.ws9{word-spacing:1940.160000pt;}
.wsf{word-spacing:1953.226667pt;}
.ws7{word-spacing:1958.773333pt;}
.ws10{word-spacing:1980.053333pt;}
.wsd{word-spacing:2100.960000pt;}
.wsb{word-spacing:2144.693333pt;}
.ws31{word-spacing:2418.880000pt;}
._41{margin-left:-863.530667pt;}
._3f{margin-left:-728.832000pt;}
._3a{margin-left:-562.576000pt;}
._14{margin-left:-108.476747pt;}
._a{margin-left:-38.806933pt;}
._17{margin-left:-8.362667pt;}
._5{margin-left:-7.050667pt;}
._6{margin-left:-6.104533pt;}
._4{margin-left:-5.092267pt;}
._3{margin-left:-3.964800pt;}
._1{margin-left:-2.889600pt;}
._0{margin-left:-1.724800pt;}
._2{width:0.933333pt;}
._10{width:1.925333pt;}
._d{width:2.878933pt;}
._e{width:3.779200pt;}
._11{width:4.716800pt;}
._b{width:5.770667pt;}
._c{width:6.731733pt;}
._9{width:23.028565pt;}
._8{width:44.132949pt;}
._f{width:45.278357pt;}
._7{width:54.528000pt;}
._12{width:63.224533pt;}
._1b{width:192.256000pt;}
._16{width:260.873600pt;}
._3c{width:318.848000pt;}
._3b{width:319.829333pt;}
._3d{width:322.645333pt;}
._15{width:353.094933pt;}
._2c{width:468.010667pt;}
._18{width:488.423467pt;}
._22{width:513.237333pt;}
._27{width:524.672000pt;}
._1a{width:536.874667pt;}
._3e{width:539.733333pt;}
._28{width:564.010667pt;}
._2f{width:602.368000pt;}
._2e{width:629.930667pt;}
._2b{width:632.764800pt;}
._31{width:648.448000pt;}
._39{width:652.677333pt;}
._38{width:662.400000pt;}
._34{width:666.965333pt;}
._32{width:689.810133pt;}
._37{width:700.586667pt;}
._35{width:711.296000pt;}
._1e{width:724.010667pt;}
._36{width:737.152000pt;}
._29{width:739.717333pt;}
._21{width:742.528000pt;}
._1c{width:761.301333pt;}
._25{width:763.989333pt;}
._2d{width:780.202667pt;}
._26{width:785.280000pt;}
._1f{width:789.052800pt;}
._23{width:798.336000pt;}
._24{width:812.757333pt;}
._30{width:817.152000pt;}
._2a{width:848.244267pt;}
._19{width:855.808000pt;}
._40{width:857.002667pt;}
._33{width:893.824000pt;}
._1d{width:916.394667pt;}
._13{width:944.140800pt;}
._20{width:993.066667pt;}
.fs6{font-size:24.874667pt;}
.fs5{font-size:31.093333pt;}
.fsa{font-size:32.000000pt;}
.fsc{font-size:37.312000pt;}
.fse{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fsd{font-size:58.666667pt;}
.fsb{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs2{font-size:101.333333pt;}
.fs1{font-size:106.666667pt;}
.fs0{font-size:117.333333pt;}
.fs3{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y132{bottom:2.889867pt;}
.yfd{bottom:2.890400pt;}
.y10e{bottom:2.890800pt;}
.y16f{bottom:2.891200pt;}
.y179{bottom:2.891733pt;}
.y13c{bottom:2.893067pt;}
.y177{bottom:20.811733pt;}
.y133{bottom:24.528533pt;}
.y10f{bottom:24.529467pt;}
.yfe{bottom:25.862400pt;}
.y2c{bottom:42.683333pt;}
.y12a{bottom:88.989867pt;}
.y106{bottom:88.990800pt;}
.yf5{bottom:90.325067pt;}
.y118{bottom:98.278133pt;}
.y8a{bottom:98.417467pt;}
.yf2{bottom:99.223067pt;}
.y6a{bottom:99.956933pt;}
.yba{bottom:100.138400pt;}
.y159{bottom:100.223600pt;}
.yc9{bottom:100.472400pt;}
.y24{bottom:101.042800pt;}
.y4b{bottom:103.268533pt;}
.y194{bottom:106.639067pt;}
.y89{bottom:108.812400pt;}
.y136{bottom:109.631467pt;}
.y117{bottom:112.944800pt;}
.yf1{bottom:113.889733pt;}
.y15d{bottom:119.559067pt;}
.y69{bottom:122.223600pt;}
.yb9{bottom:122.405067pt;}
.y158{bottom:122.490267pt;}
.y193{bottom:122.639067pt;}
.yc8{bottom:122.739067pt;}
.y23{bottom:122.824133pt;}
.y162{bottom:126.654533pt;}
.y16a{bottom:130.305600pt;}
.y15c{bottom:135.559067pt;}
.y192{bottom:138.639067pt;}
.y11a{bottom:140.510667pt;}
.y22{bottom:141.042800pt;}
.y171{bottom:141.198000pt;}
.yf4{bottom:141.354667pt;}
.y68{bottom:144.490267pt;}
.yb8{bottom:144.671733pt;}
.y157{bottom:144.756933pt;}
.yc7{bottom:145.005733pt;}
.y15b{bottom:151.559067pt;}
.y191{bottom:154.639067pt;}
.y121{bottom:166.374400pt;}
.y21{bottom:166.376133pt;}
.y67{bottom:166.756933pt;}
.yb7{bottom:166.938400pt;}
.y156{bottom:167.023600pt;}
.y83{bottom:167.156933pt;}
.yfc{bottom:167.218400pt;}
.yc6{bottom:167.272400pt;}
.y127{bottom:167.370133pt;}
.y15a{bottom:167.559067pt;}
.y4a{bottom:168.469200pt;}
.y11b{bottom:179.951867pt;}
.yf6{bottom:180.795733pt;}
.y8c{bottom:189.023600pt;}
.yc5{bottom:189.539067pt;}
.y49{bottom:190.735733pt;}
.y20{bottom:191.709467pt;}
.y135{bottom:195.797333pt;}
.y170{bottom:197.092000pt;}
.y82{bottom:207.250267pt;}
.y155{bottom:207.956933pt;}
.y66{bottom:211.290267pt;}
.yb6{bottom:211.471733pt;}
.y88{bottom:211.763733pt;}
.yc4{bottom:211.805733pt;}
.y137{bottom:212.376800pt;}
.y48{bottom:213.002533pt;}
.y124{bottom:214.050667pt;}
.y101{bottom:214.894667pt;}
.y178{bottom:217.903733pt;}
.y87{bottom:218.471467pt;}
.y190{bottom:222.602400pt;}
.y11c{bottom:224.325200pt;}
.yf7{bottom:225.169067pt;}
.y154{bottom:230.223600pt;}
.y65{bottom:233.556933pt;}
.yc3{bottom:234.072400pt;}
.y47{bottom:235.269067pt;}
.y18f{bottom:239.935733pt;}
.y169{bottom:241.392800pt;}
.y13b{bottom:242.573067pt;}
.y172{bottom:243.337067pt;}
.y153{bottom:252.490267pt;}
.y64{bottom:255.823600pt;}
.yb5{bottom:256.005067pt;}
.y81{bottom:256.223600pt;}
.yc2{bottom:256.339067pt;}
.y130{bottom:264.210133pt;}
.y10c{bottom:264.211200pt;}
.yfb{bottom:265.545333pt;}
.y120{bottom:265.545467pt;}
.y138{bottom:267.096800pt;}
.y11d{bottom:269.573200pt;}
.yf8{bottom:270.417067pt;}
.y18e{bottom:274.602400pt;}
.y152{bottom:274.756933pt;}
.y46{bottom:276.202533pt;}
.y103{bottom:277.427867pt;}
.y63{bottom:278.090267pt;}
.y80{bottom:278.490267pt;}
.yc1{bottom:278.605733pt;}
.y18d{bottom:291.935733pt;}
.y102{bottom:292.094533pt;}
.y173{bottom:294.963733pt;}
.y45{bottom:298.469200pt;}
.y9b{bottom:299.921200pt;}
.y62{bottom:300.356933pt;}
.yb4{bottom:300.538400pt;}
.y7f{bottom:300.756933pt;}
.yc0{bottom:300.872400pt;}
.y9c{bottom:304.361333pt;}
.y85{bottom:308.896667pt;}
.y11e{bottom:314.757200pt;}
.yf9{bottom:315.601067pt;}
.y151{bottom:315.690267pt;}
.y105{bottom:317.025333pt;}
.y44{bottom:320.735733pt;}
.y1c{bottom:321.035200pt;}
.y61{bottom:322.623600pt;}
.yb3{bottom:322.805067pt;}
.y139{bottom:324.835467pt;}
.y18c{bottom:326.602400pt;}
.y150{bottom:337.956933pt;}
.y10d{bottom:341.554800pt;}
.y43{bottom:343.002533pt;}
.y1b{bottom:343.701867pt;}
.y60{bottom:344.890267pt;}
.y9a{bottom:344.897600pt;}
.yb2{bottom:345.071733pt;}
.y7e{bottom:345.290267pt;}
.ybf{bottom:345.405733pt;}
.y174{bottom:346.451733pt;}
.y107{bottom:355.133600pt;}
.y14f{bottom:360.223600pt;}
.y18b{bottom:361.269067pt;}
.y11f{bottom:361.733200pt;}
.y98{bottom:362.188000pt;}
.yfa{bottom:362.577067pt;}
.y42{bottom:365.269067pt;}
.y5f{bottom:367.156933pt;}
.yb1{bottom:367.338400pt;}
.y7d{bottom:367.556933pt;}
.ybe{bottom:367.672400pt;}
.y99{bottom:371.636800pt;}
.y122{bottom:375.200000pt;}
.yff{bottom:376.044000pt;}
.y6{bottom:377.327067pt;}
.y18a{bottom:378.602400pt;}
.y13a{bottom:381.059467pt;}
.y14e{bottom:382.490267pt;}
.y41{bottom:387.535867pt;}
.y110{bottom:387.900267pt;}
.y123{bottom:388.509333pt;}
.y1a{bottom:389.035200pt;}
.y100{bottom:389.353333pt;}
.y5e{bottom:389.423600pt;}
.yb0{bottom:389.605067pt;}
.y7c{bottom:389.823600pt;}
.ybd{bottom:389.939067pt;}
.y175{bottom:398.121067pt;}
.y108{bottom:399.496267pt;}
.y14d{bottom:404.756933pt;}
.y13d{bottom:407.737600pt;}
.y5{bottom:409.327067pt;}
.y5d{bottom:411.690267pt;}
.y19{bottom:411.701867pt;}
.yaf{bottom:411.871733pt;}
.y7b{bottom:412.090267pt;}
.ybc{bottom:412.205733pt;}
.y189{bottom:413.269067pt;}
.y97{bottom:414.723467pt;}
.y13e{bottom:421.046933pt;}
.y14c{bottom:427.023600pt;}
.y40{bottom:428.469200pt;}
.y188{bottom:430.602400pt;}
.yae{bottom:434.138400pt;}
.y7a{bottom:434.356933pt;}
.y18{bottom:434.368533pt;}
.ybb{bottom:434.472400pt;}
.y119{bottom:435.912400pt;}
.yf3{bottom:436.857200pt;}
.y4{bottom:441.327067pt;}
.y86{bottom:441.369067pt;}
.y109{bottom:444.744267pt;}
.y14b{bottom:449.290267pt;}
.y176{bottom:449.353067pt;}
.y3f{bottom:450.735733pt;}
.y96{bottom:451.384800pt;}
.y5c{bottom:456.223600pt;}
.y95{bottom:456.393733pt;}
.yad{bottom:456.405067pt;}
.y79{bottom:456.623600pt;}
.y17{bottom:457.035200pt;}
.y187{bottom:465.269067pt;}
.y128{bottom:469.361200pt;}
.y3e{bottom:473.002533pt;}
.y3{bottom:473.327067pt;}
.y5b{bottom:478.490267pt;}
.y78{bottom:478.890267pt;}
.y16{bottom:479.701867pt;}
.y160{bottom:482.866133pt;}
.y116{bottom:485.690267pt;}
.y84{bottom:486.345467pt;}
.y10a{bottom:489.928267pt;}
.y14a{bottom:491.556933pt;}
.y3d{bottom:495.269067pt;}
.yde{bottom:497.013067pt;}
.y186{bottom:499.935733pt;}
.y5a{bottom:500.756933pt;}
.yac{bottom:500.938400pt;}
.y15{bottom:502.368533pt;}
.y115{bottom:507.956933pt;}
.yf0{bottom:508.472400pt;}
.y15f{bottom:513.141733pt;}
.ydd{bottom:513.679733pt;}
.y126{bottom:516.482933pt;}
.y185{bottom:517.269067pt;}
.y3c{bottom:517.535867pt;}
.y59{bottom:523.023600pt;}
.yab{bottom:523.205067pt;}
.y77{bottom:523.423600pt;}
.y14{bottom:525.035200pt;}
.y114{bottom:530.223600pt;}
.y125{bottom:531.149600pt;}
.y149{bottom:533.823600pt;}
.y10b{bottom:536.904267pt;}
.y3b{bottom:539.802533pt;}
.yef{bottom:542.110133pt;}
.y2{bottom:543.727067pt;}
.ydc{bottom:545.013067pt;}
.y58{bottom:545.290267pt;}
.yaa{bottom:545.471733pt;}
.y161{bottom:551.686667pt;}
.y184{bottom:551.935733pt;}
.y148{bottom:556.090267pt;}
.yee{bottom:559.443467pt;}
.y129{bottom:559.672000pt;}
.ydb{bottom:561.679733pt;}
.y57{bottom:567.556933pt;}
.ya9{bottom:567.738400pt;}
.y76{bottom:567.956933pt;}
.y183{bottom:569.269067pt;}
.y13{bottom:569.968533pt;}
.y113{bottom:571.156933pt;}
.y2b{bottom:571.450400pt;}
.yed{bottom:576.776800pt;}
.yda{bottom:577.679733pt;}
.y147{bottom:578.356933pt;}
.y163{bottom:580.269867pt;}
.y131{bottom:584.200533pt;}
.y3a{bottom:584.335867pt;}
.y182{bottom:586.602400pt;}
.y56{bottom:589.823600pt;}
.ya8{bottom:590.005067pt;}
.y75{bottom:590.223600pt;}
.y112{bottom:593.423600pt;}
.yd9{bottom:593.679733pt;}
.yec{bottom:594.110133pt;}
.y12b{bottom:597.779200pt;}
.y146{bottom:600.623600pt;}
.y1{bottom:602.393733pt;}
.y39{bottom:606.602400pt;}
.y16b{bottom:607.227200pt;}
.yd8{bottom:609.679733pt;}
.y104{bottom:611.282533pt;}
.yeb{bottom:611.443467pt;}
.y8b{bottom:612.090267pt;}
.ya7{bottom:612.271733pt;}
.y74{bottom:612.490267pt;}
.y164{bottom:615.501867pt;}
.y111{bottom:615.690267pt;}
.y2a{bottom:616.783733pt;}
.y181{bottom:621.269067pt;}
.y145{bottom:622.890267pt;}
.yd7{bottom:625.679733pt;}
.yea{bottom:628.776800pt;}
.y38{bottom:628.869200pt;}
.y134{bottom:630.545867pt;}
.ye{bottom:632.082933pt;}
.y55{bottom:634.356933pt;}
.ya6{bottom:634.538400pt;}
.y73{bottom:634.756933pt;}
.y180{bottom:638.602400pt;}
.yd6{bottom:641.679733pt;}
.y12c{bottom:642.141867pt;}
.y144{bottom:645.156933pt;}
.ye9{bottom:646.110133pt;}
.y37{bottom:651.135867pt;}
.y165{bottom:651.608533pt;}
.yd{bottom:654.349600pt;}
.y54{bottom:656.623600pt;}
.ya5{bottom:656.805067pt;}
.y72{bottom:657.023600pt;}
.yd5{bottom:657.679733pt;}
.y12{bottom:658.789600pt;}
.y29{bottom:662.117067pt;}
.y16c{bottom:662.416533pt;}
.ye8{bottom:663.443467pt;}
.y143{bottom:667.423600pt;}
.y17f{bottom:673.269067pt;}
.y36{bottom:673.402400pt;}
.yd4{bottom:673.679733pt;}
.yc{bottom:676.616267pt;}
.y53{bottom:678.890267pt;}
.ya4{bottom:679.071733pt;}
.y71{bottom:679.290267pt;}
.ye7{bottom:680.776800pt;}
.y11{bottom:681.056267pt;}
.y166{bottom:686.659200pt;}
.y12d{bottom:687.389867pt;}
.yd3{bottom:689.679733pt;}
.y142{bottom:689.690267pt;}
.y17e{bottom:690.602400pt;}
.y35{bottom:695.669067pt;}
.y9{bottom:697.090133pt;}
.ye6{bottom:698.110133pt;}
.yb{bottom:698.882933pt;}
.y93{bottom:699.039333pt;}
.y52{bottom:701.156933pt;}
.ya3{bottom:701.338400pt;}
.y70{bottom:701.556933pt;}
.y10{bottom:703.322933pt;}
.yd2{bottom:705.679733pt;}
.y94{bottom:705.747200pt;}
.y28{bottom:707.450400pt;}
.ye5{bottom:715.443467pt;}
.y16d{bottom:717.904533pt;}
.y34{bottom:717.935733pt;}
.ya{bottom:721.149600pt;}
.yd1{bottom:721.679733pt;}
.y167{bottom:721.891200pt;}
.y51{bottom:723.423600pt;}
.ya2{bottom:723.605067pt;}
.y6f{bottom:723.823600pt;}
.y17d{bottom:725.269067pt;}
.yf{bottom:725.589600pt;}
.y141{bottom:730.623600pt;}
.y12e{bottom:732.573867pt;}
.ye4{bottom:732.776800pt;}
.yd0{bottom:737.679733pt;}
.y33{bottom:740.202533pt;}
.y17c{bottom:742.602400pt;}
.y8{bottom:745.090133pt;}
.y50{bottom:745.690267pt;}
.ya1{bottom:745.871733pt;}
.ye3{bottom:750.110133pt;}
.y90{bottom:751.479467pt;}
.y27{bottom:752.783733pt;}
.ycf{bottom:753.679733pt;}
.y168{bottom:757.709867pt;}
.y32{bottom:762.469200pt;}
.ye2{bottom:767.443467pt;}
.y4f{bottom:767.956933pt;}
.ya0{bottom:768.138400pt;}
.y6e{bottom:768.356933pt;}
.yce{bottom:769.679733pt;}
.y140{bottom:771.556933pt;}
.y16e{bottom:772.624533pt;}
.y92{bottom:774.345600pt;}
.y91{bottom:774.534533pt;}
.y17b{bottom:777.269067pt;}
.y12f{bottom:779.549867pt;}
.y31{bottom:784.735867pt;}
.ye1{bottom:784.776800pt;}
.ycd{bottom:785.679733pt;}
.y1f{bottom:787.042933pt;}
.y9f{bottom:790.405067pt;}
.y6d{bottom:790.623600pt;}
.y7{bottom:793.090133pt;}
.y13f{bottom:793.823600pt;}
.y17a{bottom:794.602400pt;}
.y26{bottom:798.117067pt;}
.ye0{bottom:802.110133pt;}
.y30{bottom:807.002400pt;}
.y8e{bottom:810.157467pt;}
.ycc{bottom:812.346400pt;}
.y4e{bottom:812.490267pt;}
.y9e{bottom:812.671733pt;}
.y6c{bottom:812.756933pt;}
.y8f{bottom:817.621200pt;}
.y15e{bottom:819.283467pt;}
.ydf{bottom:830.110133pt;}
.y4d{bottom:834.756933pt;}
.y6b{bottom:834.890267pt;}
.y1e{bottom:835.042933pt;}
.ycb{bottom:835.450400pt;}
.y8d{bottom:848.048133pt;}
.y25{bottom:848.954533pt;}
.y2f{bottom:851.535867pt;}
.yca{bottom:854.117067pt;}
.y4c{bottom:857.023600pt;}
.y9d{bottom:857.205067pt;}
.y1d{bottom:883.042933pt;}
.y2e{bottom:945.347467pt;}
.y2d{bottom:958.681333pt;}
.hb{height:18.911062pt;}
.h9{height:19.792000pt;}
.h6{height:23.638828pt;}
.h10{height:23.872000pt;}
.hf{height:23.904000pt;}
.h15{height:24.792682pt;}
.h21{height:29.754667pt;}
.h29{height:31.872000pt;}
.h1d{height:32.000000pt;}
.ha{height:32.437500pt;}
.h1e{height:34.000000pt;}
.h20{height:34.005333pt;}
.he{height:35.856000pt;}
.h28{height:36.492188pt;}
.h25{height:38.250000pt;}
.h1c{height:39.786667pt;}
.hd{height:39.840000pt;}
.h7{height:40.000000pt;}
.h5{height:40.546875pt;}
.h8{height:42.500000pt;}
.h12{height:42.526042pt;}
.h1a{height:42.552149pt;}
.h18{height:42.552682pt;}
.h19{height:42.656250pt;}
.h1b{height:43.765333pt;}
.h13{height:47.808000pt;}
.h11{height:49.183531pt;}
.hc{height:55.701333pt;}
.h14{height:60.286042pt;}
.h3{height:77.039062pt;}
.h2{height:81.093750pt;}
.h17{height:83.564975pt;}
.h1{height:89.203125pt;}
.h16{height:90.012975pt;}
.h4{height:111.402667pt;}
.h26{height:250.517333pt;}
.h24{height:251.697333pt;}
.h27{height:264.954667pt;}
.h22{height:273.336000pt;}
.h23{height:274.670667pt;}
.h1f{height:274.672000pt;}
.h0{height:1056.000000pt;}
.w5{width:498.929333pt;}
.w2{width:503.820000pt;}
.w1{width:503.821333pt;}
.w3{width:503.822667pt;}
.w4{width:533.930667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x34{left:9.124800pt;}
.x44{left:19.483867pt;}
.x37{left:24.577333pt;}
.x3e{left:65.932933pt;}
.x47{left:90.494933pt;}
.x15{left:94.488133pt;}
.x17{left:104.692933pt;}
.x9{left:109.489867pt;}
.x49{left:111.554133pt;}
.x11{left:113.385867pt;}
.x13{left:117.543067pt;}
.x4c{left:120.944933pt;}
.x1a{left:125.480267pt;}
.x8{left:128.697333pt;}
.x40{left:141.034800pt;}
.x1d{left:151.181067pt;}
.x33{left:156.089200pt;}
.x7{left:159.757600pt;}
.x2c{left:161.385867pt;}
.x48{left:163.882400pt;}
.x43{left:166.430000pt;}
.x14{left:169.099067pt;}
.x1b{left:173.480267pt;}
.x35{left:177.620533pt;}
.x3c{left:180.104267pt;}
.x36{left:181.023200pt;}
.x2d{left:186.708667pt;}
.x4b{left:202.424133pt;}
.x27{left:221.480267pt;}
.x12{left:224.649067pt;}
.x25{left:225.637733pt;}
.x22{left:248.692933pt;}
.x2a{left:254.173200pt;}
.x2b{left:264.755867pt;}
.x38{left:269.401200pt;}
.x2e{left:285.732267pt;}
.x41{left:309.112933pt;}
.x42{left:317.758400pt;}
.x3b{left:319.895733pt;}
.x20{left:322.866133pt;}
.x28{left:336.188933pt;}
.x23{left:338.078800pt;}
.x2f{left:344.692933pt;}
.x29{left:346.015733pt;}
.x18{left:347.647733pt;}
.x1f{left:357.794667pt;}
.x21{left:364.818933pt;}
.x1e{left:367.370000pt;}
.x10{left:382.687333pt;}
.x5{left:387.473067pt;}
.x24{left:399.118133pt;}
.x31{left:401.862133pt;}
.x16{left:404.034000pt;}
.x19{left:420.648133pt;}
.x4d{left:424.292667pt;}
.x32{left:426.708667pt;}
.x3d{left:428.404800pt;}
.x30{left:429.354267pt;}
.x1c{left:447.874000pt;}
.x2{left:476.445067pt;}
.x1{left:477.452933pt;}
.x39{left:480.174400pt;}
.x6{left:501.485467pt;}
.x3{left:507.373467pt;}
.x4{left:522.613067pt;}
.x45{left:531.040133pt;}
.x26{left:537.448800pt;}
.xc{left:555.548667pt;}
.x4a{left:567.549333pt;}
.x3a{left:585.513067pt;}
.x3f{left:588.840133pt;}
.xe{left:607.293467pt;}
.xd{left:615.555200pt;}
.xa{left:618.654133pt;}
.xb{left:626.674933pt;}
.x46{left:647.796133pt;}
.xf{left:702.614133pt;}
}




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