
    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_65c4bda14baa2887af4ef7eb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.074000;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_403d0bb549295002c4b1bedf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.942000;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_37639bcc71da698218d55911.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.151000;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_580d46e744967e8a9e43ef35.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.173000;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_91c09d80d9cda7eed56f9fdb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.972000;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_5c82f85b8c6385aca5de36f6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_7268630d9d0f4abbf363eaa2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940000;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_50072c1a2dc9210499235f82.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.972000;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_53c93f6046b455e17d985656.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942000;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_ebbfcf916e18c460bb130d02.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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_5adbe86859a66a377027f16f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.972000;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_729297c2aaed215a6022b192.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.940000;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_424d4ebd5d41c9c657c5f1dc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.972000;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_6b4fda2b2d7d1691fc00a13a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.080000;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_4a205a58313c7db8b375594e.woff2')format("woff");}.fff{font-family:fff;line-height:1.080000;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_4a882ce89a0e429804d6e416.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.975586;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_ee2c1be5506160dcc2b7d042.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.975586;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_61501d6976ce0d1cbd514392.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.031738;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_c261c2b846c8fbcaa770d9ad.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.772949;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_2cc71d8a44860d68b163480c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.928223;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_96f8c32699a6de48e021d9c3.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.928223;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_53c2a5d939463167ee0bdb51.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.976651;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_29a9bd68b45261b705b34d56.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.948242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.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);}
.m3{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);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls0{letter-spacing:-2.154000px;}
.ls5{letter-spacing:-1.644000px;}
.ls3{letter-spacing:-1.506000px;}
.ls4{letter-spacing:-0.714000px;}
.ls7{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.421800px;}
.ls18{letter-spacing:0.579323px;}
.ls15{letter-spacing:0.780000px;}
.ls14{letter-spacing:0.995700px;}
.ls6{letter-spacing:1.476000px;}
.ls12{letter-spacing:29.740800px;}
.lse{letter-spacing:29.771400px;}
.ls13{letter-spacing:29.831400px;}
.lsd{letter-spacing:29.860800px;}
.lsc{letter-spacing:29.861400px;}
.ls9{letter-spacing:29.920800px;}
.lsb{letter-spacing:29.951400px;}
.lsa{letter-spacing:30.011400px;}
.ls16{letter-spacing:100.799400px;}
.ls10{letter-spacing:101.111400px;}
.ls11{letter-spacing:101.320800px;}
.lsf{letter-spacing:101.411400px;}
.ls17{letter-spacing:244.776000px;}
.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;}
}
.wsb{word-spacing:-94.650000px;}
.ws7{word-spacing:-47.621250px;}
.ws25{word-spacing:-32.467500px;}
.ws12{word-spacing:-25.846200px;}
.ws14{word-spacing:-25.808850px;}
.ws9{word-spacing:-22.278000px;}
.ws8{word-spacing:-22.242750px;}
.wsc{word-spacing:-21.330000px;}
.ws13{word-spacing:-21.326850px;}
.wsa{word-spacing:-21.296250px;}
.ws1d{word-spacing:-21.185250px;}
.wsf{word-spacing:-20.057700px;}
.ws10{word-spacing:-19.819800px;}
.ws11{word-spacing:-19.785150px;}
.ws1e{word-spacing:-17.965350px;}
.ws3{word-spacing:-17.724300px;}
.ws16{word-spacing:-17.589000px;}
.ws2{word-spacing:-16.218300px;}
.ws18{word-spacing:-16.146300px;}
.ws0{word-spacing:-15.570300px;}
.ws19{word-spacing:-15.366300px;}
.ws5{word-spacing:-14.058000px;}
.ws17{word-spacing:-13.782750px;}
.ws6{word-spacing:-12.582000px;}
.ws15{word-spacing:-10.081200px;}
.ws23{word-spacing:-10.049700px;}
.ws24{word-spacing:-10.008000px;}
.ws22{word-spacing:-7.880850px;}
.ws21{word-spacing:-7.843500px;}
.ws1c{word-spacing:-2.023050px;}
.ws1a{word-spacing:-1.643700px;}
.ws1b{word-spacing:-0.272550px;}
.ws4{word-spacing:0.000000px;}
.ws1{word-spacing:3.676050px;}
.ws20{word-spacing:117.282000px;}
.ws1f{word-spacing:219.342000px;}
.wse{word-spacing:446.506200px;}
.wsd{word-spacing:523.377600px;}
._8{margin-left:-1871.752500px;}
._3{margin-left:-4.667850px;}
._1{margin-left:-2.773650px;}
._2{margin-left:-1.337550px;}
._6{width:1.014750px;}
._4{width:2.029500px;}
._0{width:3.231750px;}
._7{width:4.453950px;}
._9{width:5.566350px;}
._b{width:18.031800px;}
._c{width:19.686600px;}
._d{width:23.296800px;}
._a{width:25.015650px;}
._5{width:33.118200px;}
._e{width:244.776000px;}
.fc10{color:rgb(2,133,67);}
.fce{color:rgb(5,161,159);}
.fcf{color:rgb(6,30,6);}
.fcd{color:rgb(166,166,166);}
.fc1{color:rgb(255,255,255);}
.fc9{color:rgb(89,89,89);}
.fcb{color:rgb(0,0,0);}
.fcc{color:rgb(34,34,34);}
.fc4{color:rgb(153,153,153);}
.fc2{color:transparent;}
.fc3{color:rgb(67,67,67);}
.fc5{color:rgb(6,28,5);}
.fc6{color:rgb(0,112,192);}
.fc7{color:rgb(0,82,95);}
.fc8{color:rgb(2,138,70);}
.fc0{color:rgb(216,156,141);}
.fca{color:rgb(15,106,189);}
.fs1e{font-size:31.500000px;}
.fs1f{font-size:31.650000px;}
.fs21{font-size:36.000000px;}
.fs20{font-size:36.150000px;}
.fs16{font-size:40.500000px;}
.fs17{font-size:40.650000px;}
.fs4{font-size:45.000000px;}
.fs1{font-size:45.150000px;}
.fs1c{font-size:49.500000px;}
.fs6{font-size:54.000000px;}
.fs1d{font-size:54.150000px;}
.fs7{font-size:56.920429px;}
.fs13{font-size:58.500000px;}
.fs18{font-size:58.650000px;}
.fs19{font-size:61.821910px;}
.fs0{font-size:67.650000px;}
.fs9{font-size:72.000000px;}
.fsa{font-size:72.150000px;}
.fs10{font-size:85.650000px;}
.fs11{font-size:85.800000px;}
.fs1b{font-size:90.150000px;}
.fs5{font-size:94.650000px;}
.fsd{font-size:94.800000px;}
.fs15{font-size:103.650000px;}
.fs14{font-size:103.800000px;}
.fsf{font-size:108.150000px;}
.fsc{font-size:108.300000px;}
.fsb{font-size:121.650000px;}
.fs8{font-size:121.800000px;}
.fs23{font-size:128.229077px;}
.fs22{font-size:128.387189px;}
.fs3{font-size:130.800000px;}
.fs12{font-size:144.300000px;}
.fs1a{font-size:157.800000px;}
.fs2{font-size:180.300000px;}
.fse{font-size:211.650000px;}
.y0{bottom:0.000000px;}
.yf5{bottom:4.687500px;}
.ycb{bottom:6.750000px;}
.y6{bottom:9.487500px;}
.y2{bottom:11.250000px;}
.yde{bottom:15.750000px;}
.yeb{bottom:16.875000px;}
.yf4{bottom:24.975000px;}
.yc9{bottom:27.000000px;}
.ydd{bottom:36.000000px;}
.yf3{bottom:37.125000px;}
.ye0{bottom:39.037500px;}
.yec{bottom:39.375000px;}
.ycc{bottom:41.737500px;}
.yca{bottom:41.775000px;}
.yc8{bottom:41.812500px;}
.yc6{bottom:41.850000px;}
.yc4{bottom:41.887500px;}
.yc2{bottom:41.925000px;}
.yd6{bottom:41.955000px;}
.yc0{bottom:41.970000px;}
.ybe{bottom:42.000000px;}
.ye7{bottom:42.030000px;}
.ydc{bottom:42.075000px;}
.yce{bottom:42.120000px;}
.yea{bottom:42.150000px;}
.ye3{bottom:42.195000px;}
.yd4{bottom:42.225000px;}
.yaa{bottom:42.300000px;}
.ybc{bottom:42.345000px;}
.yb9{bottom:42.375000px;}
.ye9{bottom:42.412500px;}
.yb7{bottom:42.420000px;}
.yb6{bottom:42.450000px;}
.y9e{bottom:42.525000px;}
.yd9{bottom:42.562500px;}
.ye5{bottom:42.570000px;}
.ye8{bottom:42.637500px;}
.ydf{bottom:42.675000px;}
.yd1{bottom:42.720000px;}
.y97{bottom:42.750000px;}
.yb5{bottom:42.780000px;}
.yb0{bottom:42.825000px;}
.yae{bottom:42.870000px;}
.yb1{bottom:42.900000px;}
.y9c{bottom:42.945000px;}
.ya4{bottom:42.975000px;}
.ye4{bottom:43.050000px;}
.ya0{bottom:43.200000px;}
.y9a{bottom:43.380000px;}
.y99{bottom:43.425000px;}
.y1{bottom:45.187500px;}
.yc7{bottom:47.250000px;}
.ydb{bottom:55.125000px;}
.yf2{bottom:57.375000px;}
.y141{bottom:65.250000px;}
.yc5{bottom:67.500000px;}
.yda{bottom:74.250000px;}
.yf1{bottom:77.625000px;}
.yc3{bottom:87.750000px;}
.yd8{bottom:93.375000px;}
.yf0{bottom:97.875000px;}
.y12b{bottom:98.895000px;}
.y138{bottom:99.300000px;}
.y147{bottom:103.500000px;}
.yc1{bottom:108.000000px;}
.y12c{bottom:110.175000px;}
.y119{bottom:110.505000px;}
.y139{bottom:110.550000px;}
.y127{bottom:110.880000px;}
.yd7{bottom:112.500000px;}
.ye6{bottom:113.625000px;}
.yef{bottom:118.125000px;}
.y134{bottom:120.300000px;}
.y126{bottom:121.050000px;}
.y85{bottom:122.025000px;}
.y10{bottom:125.850000px;}
.ybf{bottom:128.250000px;}
.yfc{bottom:129.600000px;}
.y14f{bottom:130.575000px;}
.y153{bottom:130.950000px;}
.y161{bottom:131.362500px;}
.yd5{bottom:132.750000px;}
.y63{bottom:140.512500px;}
.y13b{bottom:141.750000px;}
.y15d{bottom:142.245000px;}
.y164{bottom:142.620000px;}
.y169{bottom:143.475000px;}
.y7a{bottom:148.237500px;}
.ybd{bottom:148.500000px;}
.yd3{bottom:151.875000px;}
.y14e{bottom:153.120000px;}
.y151{bottom:153.525000px;}
.y168{bottom:153.630000px;}
.y15f{bottom:153.900000px;}
.y3b{bottom:154.080000px;}
.y1a{bottom:158.055000px;}
.y160{bottom:159.495000px;}
.y13c{bottom:163.245000px;}
.y150{bottom:163.650000px;}
.y15e{bottom:164.025000px;}
.y167{bottom:164.895000px;}
.yfb{bottom:165.675000px;}
.y12f{bottom:166.500000px;}
.y114{bottom:168.345000px;}
.y41{bottom:169.845000px;}
.y107{bottom:170.625000px;}
.y21{bottom:170.655000px;}
.y163{bottom:170.775000px;}
.yd2{bottom:171.000000px;}
.y17{bottom:172.500000px;}
.y82{bottom:173.055000px;}
.y166{bottom:176.175000px;}
.y113{bottom:178.500000px;}
.y137{bottom:178.875000px;}
.y62{bottom:179.970000px;}
.y162{bottom:180.900000px;}
.y19{bottom:186.225000px;}
.y165{bottom:186.300000px;}
.y3a{bottom:186.750000px;}
.y9{bottom:188.775000px;}
.yd0{bottom:190.125000px;}
.y87{bottom:192.120000px;}
.y69{bottom:193.470000px;}
.y53{bottom:194.475000px;}
.y149{bottom:196.770000px;}
.y15c{bottom:197.175000px;}
.y130{bottom:197.475000px;}
.y16{bottom:200.655000px;}
.yfa{bottom:201.750000px;}
.y40{bottom:202.500000px;}
.y8{bottom:203.445000px;}
.y6d{bottom:203.595000px;}
.y15a{bottom:203.850000px;}
.y81{bottom:204.630000px;}
.y148{bottom:206.895000px;}
.y15b{bottom:207.300000px;}
.y155{bottom:208.575000px;}
.ycf{bottom:209.250000px;}
.ye2{bottom:210.375000px;}
.y159{bottom:214.005000px;}
.y18{bottom:214.425000px;}
.y90{bottom:216.870000px;}
.y86{bottom:216.945000px;}
.y5a{bottom:217.095000px;}
.y31{bottom:218.220000px;}
.y39{bottom:218.325000px;}
.y42{bottom:219.405000px;}
.y152{bottom:219.870000px;}
.y61{bottom:221.655000px;}
.y5b{bottom:222.120000px;}
.y158{bottom:225.270000px;}
.y7b{bottom:225.945000px;}
.ye1{bottom:228.375000px;}
.y15{bottom:228.870000px;}
.y143{bottom:229.155000px;}
.ycd{bottom:229.500000px;}
.y3f{bottom:231.045000px;}
.y106{bottom:232.500000px;}
.y52{bottom:235.050000px;}
.y68{bottom:235.170000px;}
.y157{bottom:236.550000px;}
.yf9{bottom:237.825000px;}
.y112{bottom:240.405000px;}
.y154{bottom:241.275000px;}
.y29{bottom:241.875000px;}
.y12a{bottom:243.000000px;}
.y6c{bottom:245.325000px;}
.y156{bottom:246.675000px;}
.y59{bottom:248.625000px;}
.y3e{bottom:249.525000px;}
.y30{bottom:249.750000px;}
.y3d{bottom:249.900000px;}
.yf{bottom:255.075000px;}
.yff{bottom:255.345000px;}
.y38{bottom:258.900000px;}
.y16f{bottom:260.025000px;}
.y146{bottom:261.705000px;}
.y60{bottom:262.245000px;}
.y51{bottom:266.595000px;}
.y14c{bottom:267.570000px;}
.y13f{bottom:272.325000px;}
.y145{bottom:273.000000px;}
.y28{bottom:273.405000px;}
.yf8{bottom:273.870000px;}
.y67{bottom:276.870000px;}
.y14b{bottom:277.725000px;}
.y13a{bottom:278.175000px;}
.y6f{bottom:279.825000px;}
.y80{bottom:280.125000px;}
.y83{bottom:280.155000px;}
.y2f{bottom:281.325000px;}
.y144{bottom:283.125000px;}
.y13e{bottom:283.575000px;}
.y6b{bottom:285.900000px;}
.ya9{bottom:286.875000px;}
.y2a{bottom:287.925000px;}
.ybb{bottom:288.000000px;}
.y8a{bottom:288.900000px;}
.y14a{bottom:288.975000px;}
.y58{bottom:289.200000px;}
.y136{bottom:289.425000px;}
.y37{bottom:290.475000px;}
.y92{bottom:292.725000px;}
.y13d{bottom:294.870000px;}
.y105{bottom:295.245000px;}
.y16e{bottom:296.100000px;}
.y8f{bottom:296.370000px;}
.y50{bottom:298.155000px;}
.y135{bottom:299.595000px;}
.ye{bottom:300.150000px;}
.y111{bottom:300.600000px;}
.y125{bottom:302.625000px;}
.ya8{bottom:304.875000px;}
.y14d{bottom:304.995000px;}
.y142{bottom:305.655000px;}
.yba{bottom:306.000000px;}
.y22{bottom:308.250000px;}
.y20{bottom:309.225000px;}
.y6e{bottom:312.525000px;}
.y89{bottom:313.695000px;}
.y27{bottom:313.995000px;}
.y140{bottom:315.825000px;}
.y66{bottom:317.445000px;}
.y5{bottom:319.155000px;}
.y57{bottom:320.775000px;}
.y7f{bottom:321.870000px;}
.y2e{bottom:321.900000px;}
.y36{bottom:322.020000px;}
.ya6{bottom:322.875000px;}
.y78{bottom:323.505000px;}
.yb8{bottom:324.000000px;}
.y6a{bottom:326.475000px;}
.yab{bottom:329.175000px;}
.y133{bottom:331.320000px;}
.y16d{bottom:332.175000px;}
.y88{bottom:338.475000px;}
.y4f{bottom:338.745000px;}
.y4b{bottom:339.525000px;}
.y132{bottom:341.445000px;}
.y12d{bottom:341.895000px;}
.ya5{bottom:342.000000px;}
.yd{bottom:342.975000px;}
.y5f{bottom:343.650000px;}
.y26{bottom:345.570000px;}
.y131{bottom:352.725000px;}
.y129{bottom:353.175000px;}
.y2d{bottom:353.445000px;}
.y3c{bottom:353.595000px;}
.yfe{bottom:355.455000px;}
.y91{bottom:355.995000px;}
.y104{bottom:357.120000px;}
.y71{bottom:357.150000px;}
.ya3{bottom:360.000000px;}
.y1e{bottom:362.205000px;}
.y7e{bottom:362.445000px;}
.y56{bottom:362.475000px;}
.y110{bottom:362.550000px;}
.y35{bottom:362.595000px;}
.y128{bottom:363.300000px;}
.y118{bottom:363.375000px;}
.ya7{bottom:366.075000px;}
.y16c{bottom:368.250000px;}
.y14{bottom:370.530000px;}
.y4e{bottom:371.445000px;}
.y4a{bottom:372.195000px;}
.y12e{bottom:374.130000px;}
.ya2{bottom:378.000000px;}
.y25{bottom:378.255000px;}
.y4{bottom:378.900000px;}
.yb4{bottom:380.250000px;}
.y5e{bottom:384.225000px;}
.yc{bottom:385.800000px;}
.y70{bottom:389.850000px;}
.y1d{bottom:390.420000px;}
.y2c{bottom:395.130000px;}
.y34{bottom:395.280000px;}
.y11f{bottom:396.405000px;}
.ya1{bottom:397.125000px;}
.yb3{bottom:398.250000px;}
.y65{bottom:398.580000px;}
.y13{bottom:398.700000px;}
.y122{bottom:402.255000px;}
.y4d{bottom:402.975000px;}
.y55{bottom:403.050000px;}
.y49{bottom:404.880000px;}
.yee{bottom:406.095000px;}
.y11e{bottom:407.655000px;}
.y124{bottom:408.120000px;}
.y121{bottom:413.505000px;}
.y103{bottom:414.750000px;}
.y9f{bottom:415.125000px;}
.yb2{bottom:416.250000px;}
.y79{bottom:417.405000px;}
.y77{bottom:418.095000px;}
.y123{bottom:418.275000px;}
.y1c{bottom:418.575000px;}
.y24{bottom:418.845000px;}
.y11d{bottom:418.950000px;}
.y10f{bottom:420.750000px;}
.y120{bottom:423.675000px;}
.y5d{bottom:424.800000px;}
.yed{bottom:425.250000px;}
.y8d{bottom:425.655000px;}
.y2b{bottom:426.720000px;}
.y33{bottom:426.825000px;}
.y12{bottom:426.870000px;}
.y11c{bottom:429.075000px;}
.y9d{bottom:434.250000px;}
.yb{bottom:435.405000px;}
.y7d{bottom:436.800000px;}
.y73{bottom:437.370000px;}
.y3{bottom:437.505000px;}
.y64{bottom:439.155000px;}
.y1f{bottom:444.900000px;}
.y1b{bottom:446.775000px;}
.y16b{bottom:449.400000px;}
.y8c{bottom:450.450000px;}
.y9b{bottom:452.250000px;}
.y117{bottom:462.630000px;}
.y5c{bottom:465.375000px;}
.y11b{bottom:468.495000px;}
.y72{bottom:470.025000px;}
.y48{bottom:470.250000px;}
.y45{bottom:471.405000px;}
.y102{bottom:473.745000px;}
.y116{bottom:473.880000px;}
.yaf{bottom:474.750000px;}
.y8b{bottom:475.245000px;}
.y4c{bottom:477.375000px;}
.y54{bottom:477.405000px;}
.y11a{bottom:478.620000px;}
.y10e{bottom:482.745000px;}
.y115{bottom:484.050000px;}
.y98{bottom:488.250000px;}
.yfd{bottom:492.075000px;}
.yad{bottom:492.750000px;}
.y16a{bottom:493.350000px;}
.ya{bottom:494.025000px;}
.y101{bottom:498.450000px;}
.y93{bottom:499.380000px;}
.y23{bottom:501.120000px;}
.y32{bottom:501.225000px;}
.y47{bottom:502.950000px;}
.y44{bottom:504.075000px;}
.y96{bottom:507.375000px;}
.y76{bottom:510.675000px;}
.yac{bottom:513.000000px;}
.y75{bottom:516.750000px;}
.y84{bottom:529.245000px;}
.y11{bottom:530.550000px;}
.y95{bottom:534.075000px;}
.y46{bottom:535.650000px;}
.y7c{bottom:536.175000px;}
.y43{bottom:536.775000px;}
.y7{bottom:539.220000px;}
.yf7{bottom:548.880000px;}
.y74{bottom:549.450000px;}
.yf6{bottom:565.470000px;}
.y10d{bottom:569.475000px;}
.y109{bottom:569.655000px;}
.y10b{bottom:569.850000px;}
.y94{bottom:570.150000px;}
.y10c{bottom:578.475000px;}
.y108{bottom:578.700000px;}
.y10a{bottom:578.850000px;}
.y8e{bottom:579.780000px;}
.y100{bottom:593.250000px;}
.h33{height:23.994141px;}
.h34{height:24.108398px;}
.h36{height:26.560547px;}
.h35{height:26.671216px;}
.h24{height:32.490967px;}
.h26{height:32.611304px;}
.h6{height:32.893066px;}
.h30{height:37.709473px;}
.h9{height:38.448000px;}
.h31{height:39.313477px;}
.h32{height:39.422681px;}
.ha{height:40.527345px;}
.h29{height:41.641500px;}
.h1d{height:42.760986px;}
.h2a{height:43.893556px;}
.h2{height:48.166800px;}
.hf{height:51.264000px;}
.hd{height:51.370800px;}
.h2b{height:51.377466px;}
.h28{height:51.398145px;}
.h1b{height:52.738550px;}
.hc{height:53.424000px;}
.he{height:53.535300px;}
.h2f{height:54.958008px;}
.h1{height:59.261400px;}
.h18{height:60.982800px;}
.h19{height:61.089600px;}
.h17{height:63.552300px;}
.h2d{height:64.006500px;}
.h22{height:65.241211px;}
.h7{height:67.201500px;}
.h13{height:67.308000px;}
.h15{height:67.390800px;}
.h8{height:70.230300px;}
.h1a{height:70.341600px;}
.h1e{height:76.399800px;}
.h1f{height:76.533600px;}
.h21{height:78.952148px;}
.h20{height:79.066406px;}
.h16{height:80.247300px;}
.h12{height:80.358600px;}
.h2e{height:88.673730px;}
.h10{height:88.920923px;}
.h11{height:89.030566px;}
.hb{height:90.375600px;}
.h3f{height:91.299103px;}
.h3e{height:91.411679px;}
.h27{height:92.250000px;}
.h25{height:94.500000px;}
.h23{height:95.625000px;}
.h5{height:97.053600px;}
.h1c{height:107.070600px;}
.h2c{height:117.087600px;}
.h14{height:157.044300px;}
.h3{height:171.465300px;}
.h4{height:173.628900px;}
.h37{height:227.250000px;}
.h38{height:228.375000px;}
.h3a{height:302.625000px;}
.h3c{height:303.750000px;}
.h3d{height:358.875000px;}
.h39{height:379.125000px;}
.h3b{height:455.625000px;}
.h0{height:607.500000px;}
.w5{width:63.000000px;}
.w4{width:64.125000px;}
.w3{width:194.625000px;}
.w2{width:196.875000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x39{left:2.475000px;}
.x3d{left:4.380000px;}
.x7b{left:5.925000px;}
.x73{left:7.320000px;}
.x7a{left:9.570000px;}
.x31{left:11.887484px;}
.x2d{left:29.849984px;}
.x9{left:35.437484px;}
.x38{left:39.375000px;}
.x7{left:43.012484px;}
.xe{left:44.549984px;}
.x36{left:46.837484px;}
.x85{left:50.205000px;}
.x17{left:56.737484px;}
.x1a{left:59.249984px;}
.x48{left:62.737484px;}
.x2a{left:65.399984px;}
.x91{left:67.049984px;}
.x45{left:71.662484px;}
.xa{left:77.699984px;}
.x47{left:81.037484px;}
.x28{left:88.837484px;}
.x3a{left:95.549984px;}
.x46{left:99.712484px;}
.x3b{left:105.487484px;}
.x12{left:114.187484px;}
.x2c{left:121.987484px;}
.x37{left:131.174984px;}
.x1f{left:135.149984px;}
.x11{left:142.312484px;}
.x16{left:161.954984px;}
.x26{left:182.549984px;}
.x4b{left:204.749984px;}
.x4a{left:221.369984px;}
.x49{left:235.529984px;}
.x1b{left:269.594984px;}
.x27{left:276.344984px;}
.x4{left:305.099984px;}
.x5{left:317.024984px;}
.x29{left:340.844984px;}
.x4d{left:350.549984px;}
.x3e{left:355.500000px;}
.x3{left:368.819984px;}
.x4c{left:371.369984px;}
.x20{left:374.519984px;}
.x25{left:376.949984px;}
.x24{left:379.244984px;}
.x23{left:381.869984px;}
.x2{left:389.219984px;}
.x32{left:393.494984px;}
.x15{left:406.274984px;}
.x40{left:451.874984px;}
.x4f{left:472.874984px;}
.x50{left:481.874984px;}
.x33{left:487.319984px;}
.x41{left:489.719984px;}
.x56{left:497.219984px;}
.x4e{left:507.224984px;}
.x63{left:510.329984px;}
.x35{left:513.869984px;}
.xb{left:518.069984px;}
.x64{left:519.404984px;}
.x21{left:523.349984px;}
.x67{left:529.649984px;}
.x65{left:536.219984px;}
.x13{left:543.224984px;}
.x66{left:544.274984px;}
.x68{left:550.829984px;}
.x42{left:563.625000px;}
.x2b{left:571.424984px;}
.x1{left:573.824984px;}
.x6{left:584.129984px;}
.x18{left:590.969984px;}
.x19{left:611.249984px;}
.x52{left:613.574984px;}
.x1d{left:615.674984px;}
.x53{left:622.199984px;}
.xc{left:630.869984px;}
.x51{left:643.049984px;}
.x1e{left:648.194984px;}
.x58{left:650.069984px;}
.x69{left:652.799984px;}
.x8{left:653.924984px;}
.x6a{left:656.549984px;}
.x6b{left:661.799984px;}
.x59{left:664.754984px;}
.x57{left:669.899984px;}
.x14{left:680.249984px;}
.x7c{left:705.375000px;}
.x8d{left:712.499984px;}
.x8c{left:713.624984px;}
.x10{left:715.499984px;}
.x6c{left:719.129984px;}
.xd{left:722.474984px;}
.x6d{left:729.374984px;}
.x5a{left:732.779984px;}
.x55{left:736.649984px;}
.x1c{left:751.454984px;}
.x22{left:761.954984px;}
.xf{left:765.569984px;}
.x7e{left:768.375000px;}
.x83{left:775.349984px;}
.x8e{left:777.779984px;}
.x54{left:778.874984px;}
.x76{left:780.704984px;}
.x8f{left:781.754984px;}
.x6e{left:783.254984px;}
.x89{left:784.949984px;}
.x7d{left:788.324984px;}
.x5b{left:789.569984px;}
.x5c{left:800.924984px;}
.x70{left:830.250000px;}
.x3f{left:839.250000px;}
.x8a{left:840.299984px;}
.x3c{left:841.500000px;}
.x71{left:843.404984px;}
.x7f{left:845.279984px;}
.x34{left:847.544984px;}
.x8b{left:848.579984px;}
.x80{left:849.599984px;}
.x6f{left:852.149984px;}
.x5d{left:857.549984px;}
.x5e{left:860.549984px;}
.x30{left:862.379984px;}
.x84{left:877.454984px;}
.x2f{left:889.004984px;}
.x72{left:893.250000px;}
.x2e{left:894.749984px;}
.x78{left:900.944984px;}
.x81{left:902.444984px;}
.x77{left:903.944984px;}
.x86{left:907.124984px;}
.x90{left:911.924984px;}
.x5f{left:915.974984px;}
.x74{left:916.994984px;}
.x60{left:920.399984px;}
.x79{left:955.125000px;}
.x88{left:965.249984px;}
.x82{left:967.379984px;}
.x75{left:969.194984px;}
.x87{left:973.574984px;}
.x61{left:977.249984px;}
.x62{left:984.374984px;}
.x43{left:1033.094984px;}
.x44{left:1056.674984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls0{letter-spacing:-1.914667pt;}
.ls5{letter-spacing:-1.461333pt;}
.ls3{letter-spacing:-1.338667pt;}
.ls4{letter-spacing:-0.634667pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.374933pt;}
.ls18{letter-spacing:0.514954pt;}
.ls15{letter-spacing:0.693333pt;}
.ls14{letter-spacing:0.885067pt;}
.ls6{letter-spacing:1.312000pt;}
.ls12{letter-spacing:26.436267pt;}
.lse{letter-spacing:26.463467pt;}
.ls13{letter-spacing:26.516800pt;}
.lsd{letter-spacing:26.542933pt;}
.lsc{letter-spacing:26.543467pt;}
.ls9{letter-spacing:26.596267pt;}
.lsb{letter-spacing:26.623467pt;}
.lsa{letter-spacing:26.676800pt;}
.ls16{letter-spacing:89.599467pt;}
.ls10{letter-spacing:89.876800pt;}
.ls11{letter-spacing:90.062933pt;}
.lsf{letter-spacing:90.143467pt;}
.ls17{letter-spacing:217.578667pt;}
.wsb{word-spacing:-84.133333pt;}
.ws7{word-spacing:-42.330000pt;}
.ws25{word-spacing:-28.860000pt;}
.ws12{word-spacing:-22.974400pt;}
.ws14{word-spacing:-22.941200pt;}
.ws9{word-spacing:-19.802667pt;}
.ws8{word-spacing:-19.771333pt;}
.wsc{word-spacing:-18.960000pt;}
.ws13{word-spacing:-18.957200pt;}
.wsa{word-spacing:-18.930000pt;}
.ws1d{word-spacing:-18.831333pt;}
.wsf{word-spacing:-17.829067pt;}
.ws10{word-spacing:-17.617600pt;}
.ws11{word-spacing:-17.586800pt;}
.ws1e{word-spacing:-15.969200pt;}
.ws3{word-spacing:-15.754933pt;}
.ws16{word-spacing:-15.634667pt;}
.ws2{word-spacing:-14.416267pt;}
.ws18{word-spacing:-14.352267pt;}
.ws0{word-spacing:-13.840267pt;}
.ws19{word-spacing:-13.658933pt;}
.ws5{word-spacing:-12.496000pt;}
.ws17{word-spacing:-12.251333pt;}
.ws6{word-spacing:-11.184000pt;}
.ws15{word-spacing:-8.961067pt;}
.ws23{word-spacing:-8.933067pt;}
.ws24{word-spacing:-8.896000pt;}
.ws22{word-spacing:-7.005200pt;}
.ws21{word-spacing:-6.972000pt;}
.ws1c{word-spacing:-1.798267pt;}
.ws1a{word-spacing:-1.461067pt;}
.ws1b{word-spacing:-0.242267pt;}
.ws4{word-spacing:0.000000pt;}
.ws1{word-spacing:3.267600pt;}
.ws20{word-spacing:104.250667pt;}
.ws1f{word-spacing:194.970667pt;}
.wse{word-spacing:396.894400pt;}
.wsd{word-spacing:465.224533pt;}
._8{margin-left:-1663.780000pt;}
._3{margin-left:-4.149200pt;}
._1{margin-left:-2.465467pt;}
._2{margin-left:-1.188933pt;}
._6{width:0.902000pt;}
._4{width:1.804000pt;}
._0{width:2.872667pt;}
._7{width:3.959067pt;}
._9{width:4.947867pt;}
._b{width:16.028267pt;}
._c{width:17.499200pt;}
._d{width:20.708267pt;}
._a{width:22.236133pt;}
._5{width:29.438400pt;}
._e{width:217.578667pt;}
.fs1e{font-size:28.000000pt;}
.fs1f{font-size:28.133333pt;}
.fs21{font-size:32.000000pt;}
.fs20{font-size:32.133333pt;}
.fs16{font-size:36.000000pt;}
.fs17{font-size:36.133333pt;}
.fs4{font-size:40.000000pt;}
.fs1{font-size:40.133333pt;}
.fs1c{font-size:44.000000pt;}
.fs6{font-size:48.000000pt;}
.fs1d{font-size:48.133333pt;}
.fs7{font-size:50.595937pt;}
.fs13{font-size:52.000000pt;}
.fs18{font-size:52.133333pt;}
.fs19{font-size:54.952809pt;}
.fs0{font-size:60.133333pt;}
.fs9{font-size:64.000000pt;}
.fsa{font-size:64.133333pt;}
.fs10{font-size:76.133333pt;}
.fs11{font-size:76.266667pt;}
.fs1b{font-size:80.133333pt;}
.fs5{font-size:84.133333pt;}
.fsd{font-size:84.266667pt;}
.fs15{font-size:92.133333pt;}
.fs14{font-size:92.266667pt;}
.fsf{font-size:96.133333pt;}
.fsc{font-size:96.266667pt;}
.fsb{font-size:108.133333pt;}
.fs8{font-size:108.266667pt;}
.fs23{font-size:113.981402pt;}
.fs22{font-size:114.121946pt;}
.fs3{font-size:116.266667pt;}
.fs12{font-size:128.266667pt;}
.fs1a{font-size:140.266667pt;}
.fs2{font-size:160.266667pt;}
.fse{font-size:188.133333pt;}
.y0{bottom:0.000000pt;}
.yf5{bottom:4.166667pt;}
.ycb{bottom:6.000000pt;}
.y6{bottom:8.433333pt;}
.y2{bottom:10.000000pt;}
.yde{bottom:14.000000pt;}
.yeb{bottom:15.000000pt;}
.yf4{bottom:22.200000pt;}
.yc9{bottom:24.000000pt;}
.ydd{bottom:32.000000pt;}
.yf3{bottom:33.000000pt;}
.ye0{bottom:34.700000pt;}
.yec{bottom:35.000000pt;}
.ycc{bottom:37.100000pt;}
.yca{bottom:37.133333pt;}
.yc8{bottom:37.166667pt;}
.yc6{bottom:37.200000pt;}
.yc4{bottom:37.233333pt;}
.yc2{bottom:37.266667pt;}
.yd6{bottom:37.293333pt;}
.yc0{bottom:37.306667pt;}
.ybe{bottom:37.333333pt;}
.ye7{bottom:37.360000pt;}
.ydc{bottom:37.400000pt;}
.yce{bottom:37.440000pt;}
.yea{bottom:37.466667pt;}
.ye3{bottom:37.506667pt;}
.yd4{bottom:37.533333pt;}
.yaa{bottom:37.600000pt;}
.ybc{bottom:37.640000pt;}
.yb9{bottom:37.666667pt;}
.ye9{bottom:37.700000pt;}
.yb7{bottom:37.706667pt;}
.yb6{bottom:37.733333pt;}
.y9e{bottom:37.800000pt;}
.yd9{bottom:37.833333pt;}
.ye5{bottom:37.840000pt;}
.ye8{bottom:37.900000pt;}
.ydf{bottom:37.933333pt;}
.yd1{bottom:37.973333pt;}
.y97{bottom:38.000000pt;}
.yb5{bottom:38.026667pt;}
.yb0{bottom:38.066667pt;}
.yae{bottom:38.106667pt;}
.yb1{bottom:38.133333pt;}
.y9c{bottom:38.173333pt;}
.ya4{bottom:38.200000pt;}
.ye4{bottom:38.266667pt;}
.ya0{bottom:38.400000pt;}
.y9a{bottom:38.560000pt;}
.y99{bottom:38.600000pt;}
.y1{bottom:40.166667pt;}
.yc7{bottom:42.000000pt;}
.ydb{bottom:49.000000pt;}
.yf2{bottom:51.000000pt;}
.y141{bottom:58.000000pt;}
.yc5{bottom:60.000000pt;}
.yda{bottom:66.000000pt;}
.yf1{bottom:69.000000pt;}
.yc3{bottom:78.000000pt;}
.yd8{bottom:83.000000pt;}
.yf0{bottom:87.000000pt;}
.y12b{bottom:87.906667pt;}
.y138{bottom:88.266667pt;}
.y147{bottom:92.000000pt;}
.yc1{bottom:96.000000pt;}
.y12c{bottom:97.933333pt;}
.y119{bottom:98.226667pt;}
.y139{bottom:98.266667pt;}
.y127{bottom:98.560000pt;}
.yd7{bottom:100.000000pt;}
.ye6{bottom:101.000000pt;}
.yef{bottom:105.000000pt;}
.y134{bottom:106.933333pt;}
.y126{bottom:107.600000pt;}
.y85{bottom:108.466667pt;}
.y10{bottom:111.866667pt;}
.ybf{bottom:114.000000pt;}
.yfc{bottom:115.200000pt;}
.y14f{bottom:116.066667pt;}
.y153{bottom:116.400000pt;}
.y161{bottom:116.766667pt;}
.yd5{bottom:118.000000pt;}
.y63{bottom:124.900000pt;}
.y13b{bottom:126.000000pt;}
.y15d{bottom:126.440000pt;}
.y164{bottom:126.773333pt;}
.y169{bottom:127.533333pt;}
.y7a{bottom:131.766667pt;}
.ybd{bottom:132.000000pt;}
.yd3{bottom:135.000000pt;}
.y14e{bottom:136.106667pt;}
.y151{bottom:136.466667pt;}
.y168{bottom:136.560000pt;}
.y15f{bottom:136.800000pt;}
.y3b{bottom:136.960000pt;}
.y1a{bottom:140.493333pt;}
.y160{bottom:141.773333pt;}
.y13c{bottom:145.106667pt;}
.y150{bottom:145.466667pt;}
.y15e{bottom:145.800000pt;}
.y167{bottom:146.573333pt;}
.yfb{bottom:147.266667pt;}
.y12f{bottom:148.000000pt;}
.y114{bottom:149.640000pt;}
.y41{bottom:150.973333pt;}
.y107{bottom:151.666667pt;}
.y21{bottom:151.693333pt;}
.y163{bottom:151.800000pt;}
.yd2{bottom:152.000000pt;}
.y17{bottom:153.333333pt;}
.y82{bottom:153.826667pt;}
.y166{bottom:156.600000pt;}
.y113{bottom:158.666667pt;}
.y137{bottom:159.000000pt;}
.y62{bottom:159.973333pt;}
.y162{bottom:160.800000pt;}
.y19{bottom:165.533333pt;}
.y165{bottom:165.600000pt;}
.y3a{bottom:166.000000pt;}
.y9{bottom:167.800000pt;}
.yd0{bottom:169.000000pt;}
.y87{bottom:170.773333pt;}
.y69{bottom:171.973333pt;}
.y53{bottom:172.866667pt;}
.y149{bottom:174.906667pt;}
.y15c{bottom:175.266667pt;}
.y130{bottom:175.533333pt;}
.y16{bottom:178.360000pt;}
.yfa{bottom:179.333333pt;}
.y40{bottom:180.000000pt;}
.y8{bottom:180.840000pt;}
.y6d{bottom:180.973333pt;}
.y15a{bottom:181.200000pt;}
.y81{bottom:181.893333pt;}
.y148{bottom:183.906667pt;}
.y15b{bottom:184.266667pt;}
.y155{bottom:185.400000pt;}
.ycf{bottom:186.000000pt;}
.ye2{bottom:187.000000pt;}
.y159{bottom:190.226667pt;}
.y18{bottom:190.600000pt;}
.y90{bottom:192.773333pt;}
.y86{bottom:192.840000pt;}
.y5a{bottom:192.973333pt;}
.y31{bottom:193.973333pt;}
.y39{bottom:194.066667pt;}
.y42{bottom:195.026667pt;}
.y152{bottom:195.440000pt;}
.y61{bottom:197.026667pt;}
.y5b{bottom:197.440000pt;}
.y158{bottom:200.240000pt;}
.y7b{bottom:200.840000pt;}
.ye1{bottom:203.000000pt;}
.y15{bottom:203.440000pt;}
.y143{bottom:203.693333pt;}
.ycd{bottom:204.000000pt;}
.y3f{bottom:205.373333pt;}
.y106{bottom:206.666667pt;}
.y52{bottom:208.933333pt;}
.y68{bottom:209.040000pt;}
.y157{bottom:210.266667pt;}
.yf9{bottom:211.400000pt;}
.y112{bottom:213.693333pt;}
.y154{bottom:214.466667pt;}
.y29{bottom:215.000000pt;}
.y12a{bottom:216.000000pt;}
.y6c{bottom:218.066667pt;}
.y156{bottom:219.266667pt;}
.y59{bottom:221.000000pt;}
.y3e{bottom:221.800000pt;}
.y30{bottom:222.000000pt;}
.y3d{bottom:222.133333pt;}
.yf{bottom:226.733333pt;}
.yff{bottom:226.973333pt;}
.y38{bottom:230.133333pt;}
.y16f{bottom:231.133333pt;}
.y146{bottom:232.626667pt;}
.y60{bottom:233.106667pt;}
.y51{bottom:236.973333pt;}
.y14c{bottom:237.840000pt;}
.y13f{bottom:242.066667pt;}
.y145{bottom:242.666667pt;}
.y28{bottom:243.026667pt;}
.yf8{bottom:243.440000pt;}
.y67{bottom:246.106667pt;}
.y14b{bottom:246.866667pt;}
.y13a{bottom:247.266667pt;}
.y6f{bottom:248.733333pt;}
.y80{bottom:249.000000pt;}
.y83{bottom:249.026667pt;}
.y2f{bottom:250.066667pt;}
.y144{bottom:251.666667pt;}
.y13e{bottom:252.066667pt;}
.y6b{bottom:254.133333pt;}
.ya9{bottom:255.000000pt;}
.y2a{bottom:255.933333pt;}
.ybb{bottom:256.000000pt;}
.y8a{bottom:256.800000pt;}
.y14a{bottom:256.866667pt;}
.y58{bottom:257.066667pt;}
.y136{bottom:257.266667pt;}
.y37{bottom:258.200000pt;}
.y92{bottom:260.200000pt;}
.y13d{bottom:262.106667pt;}
.y105{bottom:262.440000pt;}
.y16e{bottom:263.200000pt;}
.y8f{bottom:263.440000pt;}
.y50{bottom:265.026667pt;}
.y135{bottom:266.306667pt;}
.ye{bottom:266.800000pt;}
.y111{bottom:267.200000pt;}
.y125{bottom:269.000000pt;}
.ya8{bottom:271.000000pt;}
.y14d{bottom:271.106667pt;}
.y142{bottom:271.693333pt;}
.yba{bottom:272.000000pt;}
.y22{bottom:274.000000pt;}
.y20{bottom:274.866667pt;}
.y6e{bottom:277.800000pt;}
.y89{bottom:278.840000pt;}
.y27{bottom:279.106667pt;}
.y140{bottom:280.733333pt;}
.y66{bottom:282.173333pt;}
.y5{bottom:283.693333pt;}
.y57{bottom:285.133333pt;}
.y7f{bottom:286.106667pt;}
.y2e{bottom:286.133333pt;}
.y36{bottom:286.240000pt;}
.ya6{bottom:287.000000pt;}
.y78{bottom:287.560000pt;}
.yb8{bottom:288.000000pt;}
.y6a{bottom:290.200000pt;}
.yab{bottom:292.600000pt;}
.y133{bottom:294.506667pt;}
.y16d{bottom:295.266667pt;}
.y88{bottom:300.866667pt;}
.y4f{bottom:301.106667pt;}
.y4b{bottom:301.800000pt;}
.y132{bottom:303.506667pt;}
.y12d{bottom:303.906667pt;}
.ya5{bottom:304.000000pt;}
.yd{bottom:304.866667pt;}
.y5f{bottom:305.466667pt;}
.y26{bottom:307.173333pt;}
.y131{bottom:313.533333pt;}
.y129{bottom:313.933333pt;}
.y2d{bottom:314.173333pt;}
.y3c{bottom:314.306667pt;}
.yfe{bottom:315.960000pt;}
.y91{bottom:316.440000pt;}
.y104{bottom:317.440000pt;}
.y71{bottom:317.466667pt;}
.ya3{bottom:320.000000pt;}
.y1e{bottom:321.960000pt;}
.y7e{bottom:322.173333pt;}
.y56{bottom:322.200000pt;}
.y110{bottom:322.266667pt;}
.y35{bottom:322.306667pt;}
.y128{bottom:322.933333pt;}
.y118{bottom:323.000000pt;}
.ya7{bottom:325.400000pt;}
.y16c{bottom:327.333333pt;}
.y14{bottom:329.360000pt;}
.y4e{bottom:330.173333pt;}
.y4a{bottom:330.840000pt;}
.y12e{bottom:332.560000pt;}
.ya2{bottom:336.000000pt;}
.y25{bottom:336.226667pt;}
.y4{bottom:336.800000pt;}
.yb4{bottom:338.000000pt;}
.y5e{bottom:341.533333pt;}
.yc{bottom:342.933333pt;}
.y70{bottom:346.533333pt;}
.y1d{bottom:347.040000pt;}
.y2c{bottom:351.226667pt;}
.y34{bottom:351.360000pt;}
.y11f{bottom:352.360000pt;}
.ya1{bottom:353.000000pt;}
.yb3{bottom:354.000000pt;}
.y65{bottom:354.293333pt;}
.y13{bottom:354.400000pt;}
.y122{bottom:357.560000pt;}
.y4d{bottom:358.200000pt;}
.y55{bottom:358.266667pt;}
.y49{bottom:359.893333pt;}
.yee{bottom:360.973333pt;}
.y11e{bottom:362.360000pt;}
.y124{bottom:362.773333pt;}
.y121{bottom:367.560000pt;}
.y103{bottom:368.666667pt;}
.y9f{bottom:369.000000pt;}
.yb2{bottom:370.000000pt;}
.y79{bottom:371.026667pt;}
.y77{bottom:371.640000pt;}
.y123{bottom:371.800000pt;}
.y1c{bottom:372.066667pt;}
.y24{bottom:372.306667pt;}
.y11d{bottom:372.400000pt;}
.y10f{bottom:374.000000pt;}
.y120{bottom:376.600000pt;}
.y5d{bottom:377.600000pt;}
.yed{bottom:378.000000pt;}
.y8d{bottom:378.360000pt;}
.y2b{bottom:379.306667pt;}
.y33{bottom:379.400000pt;}
.y12{bottom:379.440000pt;}
.y11c{bottom:381.400000pt;}
.y9d{bottom:386.000000pt;}
.yb{bottom:387.026667pt;}
.y7d{bottom:388.266667pt;}
.y73{bottom:388.773333pt;}
.y3{bottom:388.893333pt;}
.y64{bottom:390.360000pt;}
.y1f{bottom:395.466667pt;}
.y1b{bottom:397.133333pt;}
.y16b{bottom:399.466667pt;}
.y8c{bottom:400.400000pt;}
.y9b{bottom:402.000000pt;}
.y117{bottom:411.226667pt;}
.y5c{bottom:413.666667pt;}
.y11b{bottom:416.440000pt;}
.y72{bottom:417.800000pt;}
.y48{bottom:418.000000pt;}
.y45{bottom:419.026667pt;}
.y102{bottom:421.106667pt;}
.y116{bottom:421.226667pt;}
.yaf{bottom:422.000000pt;}
.y8b{bottom:422.440000pt;}
.y4c{bottom:424.333333pt;}
.y54{bottom:424.360000pt;}
.y11a{bottom:425.440000pt;}
.y10e{bottom:429.106667pt;}
.y115{bottom:430.266667pt;}
.y98{bottom:434.000000pt;}
.yfd{bottom:437.400000pt;}
.yad{bottom:438.000000pt;}
.y16a{bottom:438.533333pt;}
.ya{bottom:439.133333pt;}
.y101{bottom:443.066667pt;}
.y93{bottom:443.893333pt;}
.y23{bottom:445.440000pt;}
.y32{bottom:445.533333pt;}
.y47{bottom:447.066667pt;}
.y44{bottom:448.066667pt;}
.y96{bottom:451.000000pt;}
.y76{bottom:453.933333pt;}
.yac{bottom:456.000000pt;}
.y75{bottom:459.333333pt;}
.y84{bottom:470.440000pt;}
.y11{bottom:471.600000pt;}
.y95{bottom:474.733333pt;}
.y46{bottom:476.133333pt;}
.y7c{bottom:476.600000pt;}
.y43{bottom:477.133333pt;}
.y7{bottom:479.306667pt;}
.yf7{bottom:487.893333pt;}
.y74{bottom:488.400000pt;}
.yf6{bottom:502.640000pt;}
.y10d{bottom:506.200000pt;}
.y109{bottom:506.360000pt;}
.y10b{bottom:506.533333pt;}
.y94{bottom:506.800000pt;}
.y10c{bottom:514.200000pt;}
.y108{bottom:514.400000pt;}
.y10a{bottom:514.533333pt;}
.y8e{bottom:515.360000pt;}
.y100{bottom:527.333333pt;}
.h33{height:21.328125pt;}
.h34{height:21.429688pt;}
.h36{height:23.609375pt;}
.h35{height:23.707747pt;}
.h24{height:28.880859pt;}
.h26{height:28.987826pt;}
.h6{height:29.238281pt;}
.h30{height:33.519531pt;}
.h9{height:34.176000pt;}
.h31{height:34.945312pt;}
.h32{height:35.042383pt;}
.ha{height:36.024307pt;}
.h29{height:37.014667pt;}
.h1d{height:38.009766pt;}
.h2a{height:39.016494pt;}
.h2{height:42.814933pt;}
.hf{height:45.568000pt;}
.hd{height:45.662933pt;}
.h2b{height:45.668859pt;}
.h28{height:45.687240pt;}
.h1b{height:46.878711pt;}
.hc{height:47.488000pt;}
.he{height:47.586933pt;}
.h2f{height:48.851563pt;}
.h1{height:52.676800pt;}
.h18{height:54.206933pt;}
.h19{height:54.301867pt;}
.h17{height:56.490933pt;}
.h2d{height:56.894667pt;}
.h22{height:57.992188pt;}
.h7{height:59.734667pt;}
.h13{height:59.829333pt;}
.h15{height:59.902933pt;}
.h8{height:62.426933pt;}
.h1a{height:62.525867pt;}
.h1e{height:67.910933pt;}
.h1f{height:68.029867pt;}
.h21{height:70.179688pt;}
.h20{height:70.281250pt;}
.h16{height:71.330933pt;}
.h12{height:71.429867pt;}
.h2e{height:78.821094pt;}
.h10{height:79.040820pt;}
.h11{height:79.138281pt;}
.hb{height:80.333867pt;}
.h3f{height:81.154758pt;}
.h3e{height:81.254826pt;}
.h27{height:82.000000pt;}
.h25{height:84.000000pt;}
.h23{height:85.000000pt;}
.h5{height:86.269867pt;}
.h1c{height:95.173867pt;}
.h2c{height:104.077867pt;}
.h14{height:139.594933pt;}
.h3{height:152.413600pt;}
.h4{height:154.336800pt;}
.h37{height:202.000000pt;}
.h38{height:203.000000pt;}
.h3a{height:269.000000pt;}
.h3c{height:270.000000pt;}
.h3d{height:319.000000pt;}
.h39{height:337.000000pt;}
.h3b{height:405.000000pt;}
.h0{height:540.000000pt;}
.w5{width:56.000000pt;}
.w4{width:57.000000pt;}
.w3{width:173.000000pt;}
.w2{width:175.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x39{left:2.200000pt;}
.x3d{left:3.893333pt;}
.x7b{left:5.266667pt;}
.x73{left:6.506667pt;}
.x7a{left:8.506667pt;}
.x31{left:10.566652pt;}
.x2d{left:26.533319pt;}
.x9{left:31.499986pt;}
.x38{left:35.000000pt;}
.x7{left:38.233319pt;}
.xe{left:39.599986pt;}
.x36{left:41.633319pt;}
.x85{left:44.626667pt;}
.x17{left:50.433319pt;}
.x1a{left:52.666652pt;}
.x48{left:55.766652pt;}
.x2a{left:58.133319pt;}
.x91{left:59.599986pt;}
.x45{left:63.699986pt;}
.xa{left:69.066652pt;}
.x47{left:72.033319pt;}
.x28{left:78.966652pt;}
.x3a{left:84.933319pt;}
.x46{left:88.633319pt;}
.x3b{left:93.766652pt;}
.x12{left:101.499986pt;}
.x2c{left:108.433319pt;}
.x37{left:116.599986pt;}
.x1f{left:120.133319pt;}
.x11{left:126.499986pt;}
.x16{left:143.959986pt;}
.x26{left:162.266652pt;}
.x4b{left:181.999986pt;}
.x4a{left:196.773319pt;}
.x49{left:209.359986pt;}
.x1b{left:239.639986pt;}
.x27{left:245.639986pt;}
.x4{left:271.199986pt;}
.x5{left:281.799986pt;}
.x29{left:302.973319pt;}
.x4d{left:311.599986pt;}
.x3e{left:316.000000pt;}
.x3{left:327.839986pt;}
.x4c{left:330.106652pt;}
.x20{left:332.906652pt;}
.x25{left:335.066652pt;}
.x24{left:337.106652pt;}
.x23{left:339.439986pt;}
.x2{left:345.973319pt;}
.x32{left:349.773319pt;}
.x15{left:361.133319pt;}
.x40{left:401.666652pt;}
.x4f{left:420.333319pt;}
.x50{left:428.333319pt;}
.x33{left:433.173319pt;}
.x41{left:435.306652pt;}
.x56{left:441.973319pt;}
.x4e{left:450.866652pt;}
.x63{left:453.626652pt;}
.x35{left:456.773319pt;}
.xb{left:460.506652pt;}
.x64{left:461.693319pt;}
.x21{left:465.199986pt;}
.x67{left:470.799986pt;}
.x65{left:476.639986pt;}
.x13{left:482.866652pt;}
.x66{left:483.799986pt;}
.x68{left:489.626652pt;}
.x42{left:501.000000pt;}
.x2b{left:507.933319pt;}
.x1{left:510.066652pt;}
.x6{left:519.226652pt;}
.x18{left:525.306652pt;}
.x19{left:543.333319pt;}
.x52{left:545.399986pt;}
.x1d{left:547.266652pt;}
.x53{left:553.066652pt;}
.xc{left:560.773319pt;}
.x51{left:571.599986pt;}
.x1e{left:576.173319pt;}
.x58{left:577.839986pt;}
.x69{left:580.266652pt;}
.x8{left:581.266652pt;}
.x6a{left:583.599986pt;}
.x6b{left:588.266652pt;}
.x59{left:590.893319pt;}
.x57{left:595.466652pt;}
.x14{left:604.666652pt;}
.x7c{left:627.000000pt;}
.x8d{left:633.333319pt;}
.x8c{left:634.333319pt;}
.x10{left:635.999986pt;}
.x6c{left:639.226652pt;}
.xd{left:642.199986pt;}
.x6d{left:648.333319pt;}
.x5a{left:651.359986pt;}
.x55{left:654.799986pt;}
.x1c{left:667.959986pt;}
.x22{left:677.293319pt;}
.xf{left:680.506652pt;}
.x7e{left:683.000000pt;}
.x83{left:689.199986pt;}
.x8e{left:691.359986pt;}
.x54{left:692.333319pt;}
.x76{left:693.959986pt;}
.x8f{left:694.893319pt;}
.x6e{left:696.226652pt;}
.x89{left:697.733319pt;}
.x7d{left:700.733319pt;}
.x5b{left:701.839986pt;}
.x5c{left:711.933319pt;}
.x70{left:738.000000pt;}
.x3f{left:746.000000pt;}
.x8a{left:746.933319pt;}
.x3c{left:748.000000pt;}
.x71{left:749.693319pt;}
.x7f{left:751.359986pt;}
.x34{left:753.373319pt;}
.x8b{left:754.293319pt;}
.x80{left:755.199986pt;}
.x6f{left:757.466652pt;}
.x5d{left:762.266652pt;}
.x5e{left:764.933319pt;}
.x30{left:766.559986pt;}
.x84{left:779.959986pt;}
.x2f{left:790.226652pt;}
.x72{left:794.000000pt;}
.x2e{left:795.333319pt;}
.x78{left:800.839986pt;}
.x81{left:802.173319pt;}
.x77{left:803.506652pt;}
.x86{left:806.333319pt;}
.x90{left:810.599986pt;}
.x5f{left:814.199986pt;}
.x74{left:815.106652pt;}
.x60{left:818.133319pt;}
.x79{left:849.000000pt;}
.x88{left:857.999986pt;}
.x82{left:859.893319pt;}
.x75{left:861.506652pt;}
.x87{left:865.399986pt;}
.x61{left:868.666652pt;}
.x62{left:874.999986pt;}
.x43{left:918.306652pt;}
.x44{left:939.266652pt;}
}




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