
    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_a0bde12fd3a0d6283df77b2f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_10ce69e0c06217ec825587f6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_73fd8502478ddbd14649d581.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_16a88e62b59ee4039b9b5fd1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_014c7e9aad8360bf67fa4078.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_e28ea8b608fba66ac762a553.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_51318856486a61235f716179.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_a20a083acddbbc3611ff243c.woff')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_94ed798d059313933743ced8.woff')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_f49cb7d58cfbc7ee300cde04.woff')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_3471acecb37d08e6443a14f3.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_4322f99726eb9dd080b496a1.woff')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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_1c5e28855b3030a9f0e06a41.woff')format("woff");}.fff{font-family:fff;line-height:0.914062;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_7c9c9f51820998cdbd27a9b5.woff')format("woff");}.ff10{font-family:ff10;line-height:0.934082;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_4fa9131fa01019ecbe2bff0a.woff')format("woff");}.ff11{font-family:ff11;line-height:0.921387;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_0a225a9b61e1071cba97b24b.woff')format("woff");}.ff12{font-family:ff12;line-height:0.758789;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff13{font-family:ff13;line-height:0.739746;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_b16d31cd6a4dd5fd3e3635ef.woff')format("woff");}.ff14{font-family:ff14;line-height:0.914062;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff15{font-family:ff15;line-height:0.739746;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.224138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226562,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v4{vertical-align:-23.760000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.v3{vertical-align:23.760000px;}
.ls35{letter-spacing:-7.140000px;}
.ls34{letter-spacing:-4.116000px;}
.ls25{letter-spacing:-2.106000px;}
.ls23{letter-spacing:-1.800000px;}
.ls22{letter-spacing:-1.548000px;}
.ls1a{letter-spacing:-1.332000px;}
.ls21{letter-spacing:-1.284000px;}
.ls2c{letter-spacing:-1.182000px;}
.ls20{letter-spacing:-1.080000px;}
.ls15{letter-spacing:-0.978000px;}
.ls26{letter-spacing:-0.828000px;}
.ls12{letter-spacing:-0.774000px;}
.ls19{letter-spacing:-0.666000px;}
.ls18{letter-spacing:-0.612000px;}
.ls17{letter-spacing:-0.460200px;}
.ls16{letter-spacing:-0.413400px;}
.lsf{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.298200px;}
.ls31{letter-spacing:-0.259800px;}
.ls11{letter-spacing:-0.253200px;}
.ls2b{letter-spacing:-0.206400px;}
.lsd{letter-spacing:-0.127200px;}
.ls30{letter-spacing:-0.106800px;}
.ls10{letter-spacing:-0.053280px;}
.lsc{letter-spacing:-0.018000px;}
.lsb{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls6{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.087600px;}
.lsa{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.ls27{letter-spacing:0.135600px;}
.ls1e{letter-spacing:0.153600px;}
.ls8{letter-spacing:0.174240px;}
.ls1b{letter-spacing:0.180000px;}
.ls32{letter-spacing:0.206400px;}
.ls24{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls2a{letter-spacing:0.306600px;}
.ls29{letter-spacing:0.312000px;}
.ls4{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.666000px;}
.ls3{letter-spacing:0.786240px;}
.ls28{letter-spacing:0.900000px;}
.ls1c{letter-spacing:1.620000px;}
.ls7{letter-spacing:2.340000px;}
.ls9{letter-spacing:5.220000px;}
.ls1d{letter-spacing:8.220000px;}
.ls1f{letter-spacing:10.980000px;}
.ls14{letter-spacing:12.420000px;}
.ls33{letter-spacing:16.506720px;}
.ls5{letter-spacing:16.740000px;}
.ls2e{letter-spacing:28.980000px;}
.ls2d{letter-spacing:46.026720px;}
.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;}
}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws21{word-spacing:-15.606000px;}
.ws5{word-spacing:-15.300000px;}
.ws1f{word-spacing:-15.246600px;}
.ws1a{word-spacing:-15.199800px;}
.ws24{word-spacing:-15.146400px;}
.ws1d{word-spacing:-15.093600px;}
.wsd{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws22{word-spacing:-14.833200px;}
.ws1e{word-spacing:-14.733600px;}
.ws9{word-spacing:-14.686800px;}
.ws23{word-spacing:-14.680200px;}
.ws7{word-spacing:-14.580000px;}
.ws10{word-spacing:-14.526600px;}
.ws11{word-spacing:-14.479800px;}
.ws12{word-spacing:-14.328000px;}
.ws14{word-spacing:-14.274000px;}
.wsb{word-spacing:-14.166000px;}
.ws1c{word-spacing:-14.112000px;}
.wsf{word-spacing:-13.962000px;}
.ws16{word-spacing:-13.860000px;}
.ws20{word-spacing:-13.758000px;}
.ws17{word-spacing:-13.656000px;}
.ws15{word-spacing:-13.608000px;}
.wsc{word-spacing:-13.505760px;}
.ws18{word-spacing:-13.392000px;}
.ws19{word-spacing:-13.140000px;}
.ws1b{word-spacing:-12.834000px;}
.ws0{word-spacing:-12.186000px;}
.ws13{word-spacing:-12.060000px;}
.ws25{word-spacing:-10.824000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.ws26{word-spacing:-7.800000px;}
.wse{word-spacing:0.000000px;}
._25{margin-left:-8.022000px;}
._21{margin-left:-6.875520px;}
._4{margin-left:-5.597280px;}
._3{margin-left:-4.123440px;}
._2{margin-left:-2.681040px;}
._0{margin-left:-1.194000px;}
._1{width:1.296000px;}
._f{width:3.298800px;}
._e{width:4.710000px;}
._a{width:5.837040px;}
._c{width:7.134480px;}
._b{width:8.560080px;}
._8{width:10.443120px;}
._7{width:11.543760px;}
._9{width:12.548160px;}
._13{width:13.805040px;}
._5{width:16.223760px;}
._6{width:18.009120px;}
._16{width:19.620000px;}
._12{width:21.174720px;}
._24{width:22.715280px;}
._11{width:24.023280px;}
._10{width:25.918080px;}
._d{width:27.413280px;}
._20{width:28.606320px;}
._1c{width:29.711280px;}
._19{width:32.250960px;}
._18{width:34.760160px;}
._17{width:37.987680px;}
._23{width:40.033200px;}
._14{width:42.117840px;}
._15{width:43.545600px;}
._1a{width:103.292880px;}
._1f{width:105.727440px;}
._1e{width:110.939280px;}
._1b{width:118.261440px;}
._1d{width:119.911440px;}
._22{width:141.202320px;}
.fc6{color:rgb(34,31,31);}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y40{bottom:3.240000px;}
.ye3{bottom:3.285000px;}
.y3{bottom:3.600000px;}
.y19{bottom:4.860000px;}
.ye{bottom:9.540000px;}
.ybb{bottom:12.240000px;}
.y1b{bottom:12.420000px;}
.ya4{bottom:12.600000px;}
.yea{bottom:12.960000px;}
.yc{bottom:13.860000px;}
.yb0{bottom:14.040000px;}
.y43{bottom:14.940000px;}
.y4{bottom:17.496000px;}
.y42{bottom:18.000000px;}
.y2{bottom:20.196000px;}
.y3f{bottom:20.340000px;}
.ye2{bottom:20.385000px;}
.y18{bottom:29.340000px;}
.yb{bottom:30.240000px;}
.y5{bottom:32.760000px;}
.y3e{bottom:37.620000px;}
.y17{bottom:45.945000px;}
.ya{bottom:46.440000px;}
.y3d{bottom:54.900000px;}
.y1{bottom:55.260000px;}
.y16{bottom:62.325000px;}
.y3c{bottom:72.180000px;}
.y9{bottom:73.440000px;}
.y15{bottom:75.465000px;}
.y3b{bottom:89.460000px;}
.y8{bottom:93.090000px;}
.y14{bottom:93.645000px;}
.y2b{bottom:98.460000px;}
.y54{bottom:102.996000px;}
.y92{bottom:103.536000px;}
.y3a{bottom:106.560000px;}
.y161{bottom:106.596000px;}
.yd1{bottom:111.096000px;}
.y7{bottom:111.270000px;}
.y13{bottom:112.005000px;}
.y12e{bottom:113.256000px;}
.y2a{bottom:113.760000px;}
.y53{bottom:120.276000px;}
.y91{bottom:120.816000px;}
.y39{bottom:123.840000px;}
.y160{bottom:123.876000px;}
.yd0{bottom:128.376000px;}
.y12d{bottom:130.536000px;}
.y12{bottom:131.085000px;}
.y29{bottom:131.400000px;}
.y10e{bottom:131.436000px;}
.y90{bottom:138.096000px;}
.y52{bottom:140.256000px;}
.y15f{bottom:140.976000px;}
.y38{bottom:141.120000px;}
.ycf{bottom:145.656000px;}
.y12c{bottom:147.816000px;}
.y28{bottom:148.680000px;}
.y10d{bottom:148.716000px;}
.y8f{bottom:155.370000px;}
.y11{bottom:156.825000px;}
.y51{bottom:157.530000px;}
.y15e{bottom:158.250000px;}
.y37{bottom:158.430000px;}
.yce{bottom:162.930000px;}
.y12b{bottom:165.090000px;}
.y10c{bottom:165.810000px;}
.y27{bottom:165.990000px;}
.y8e{bottom:172.470000px;}
.y15d{bottom:175.530000px;}
.y36{bottom:175.710000px;}
.ycd{bottom:177.330000px;}
.y50{bottom:180.750000px;}
.y10{bottom:181.125000px;}
.y12a{bottom:182.370000px;}
.y10b{bottom:183.090000px;}
.y26{bottom:183.810000px;}
.y8d{bottom:189.750000px;}
.y15c{bottom:192.810000px;}
.y35{bottom:192.990000px;}
.ycc{bottom:194.790000px;}
.y4f{bottom:198.030000px;}
.y10a{bottom:200.370000px;}
.y25{bottom:201.090000px;}
.y129{bottom:205.590000px;}
.y8c{bottom:207.030000px;}
.y34{bottom:210.090000px;}
.ycb{bottom:212.430000px;}
.y4e{bottom:215.310000px;}
.y109{bottom:217.650000px;}
.y24{bottom:218.550000px;}
.y8b{bottom:224.310000px;}
.y33{bottom:227.370000px;}
.y128{bottom:228.810000px;}
.yca{bottom:230.070000px;}
.y108{bottom:234.930000px;}
.y23{bottom:236.010000px;}
.y4d{bottom:238.530000px;}
.y8a{bottom:241.590000px;}
.y15b{bottom:244.470000px;}
.y32{bottom:244.650000px;}
.yc9{bottom:247.710000px;}
.y127{bottom:252.030000px;}
.y107{bottom:252.210000px;}
.y22{bottom:253.290000px;}
.y4c{bottom:255.810000px;}
.y89{bottom:258.870000px;}
.y15a{bottom:261.750000px;}
.y31{bottom:261.930000px;}
.yc8{bottom:268.590000px;}
.y106{bottom:269.310000px;}
.y21{bottom:270.750000px;}
.y4b{bottom:273.090000px;}
.y88{bottom:275.970000px;}
.y159{bottom:279.030000px;}
.y30{bottom:279.210000px;}
.yc7{bottom:285.870000px;}
.y105{bottom:286.590000px;}
.y20{bottom:288.210000px;}
.y4a{bottom:293.070000px;}
.y87{bottom:293.250000px;}
.y158{bottom:296.310000px;}
.y2f{bottom:296.490000px;}
.yc6{bottom:303.150000px;}
.y104{bottom:303.870000px;}
.y1f{bottom:305.670000px;}
.y126{bottom:309.810000px;}
.y49{bottom:310.350000px;}
.y86{bottom:310.530000px;}
.y2e{bottom:313.590000px;}
.yc5{bottom:320.430000px;}
.y103{bottom:321.150000px;}
.y125{bottom:327.090000px;}
.y85{bottom:327.810000px;}
.y2d{bottom:330.870000px;}
.y1e{bottom:333.030000px;}
.y48{bottom:333.570000px;}
.yc4{bottom:337.575000px;}
.y102{bottom:338.475000px;}
.y124{bottom:344.415000px;}
.y84{bottom:345.135000px;}
.y157{bottom:348.015000px;}
.y2c{bottom:348.150000px;}
.y1d{bottom:350.850000px;}
.y47{bottom:350.895000px;}
.y101{bottom:352.875000px;}
.yc3{bottom:354.855000px;}
.y123{bottom:361.515000px;}
.y83{bottom:362.415000px;}
.y156{bottom:365.295000px;}
.y46{bottom:367.995000px;}
.y100{bottom:370.335000px;}
.y18a{bottom:371.235000px;}
.yc2{bottom:372.135000px;}
.y122{bottom:378.795000px;}
.y82{bottom:379.515000px;}
.y155{bottom:382.575000px;}
.y45{bottom:385.275000px;}
.yff{bottom:387.975000px;}
.yc1{bottom:389.415000px;}
.y189{bottom:391.575000px;}
.y121{bottom:396.075000px;}
.y81{bottom:396.795000px;}
.y154{bottom:399.855000px;}
.y44{bottom:403.275000px;}
.yfe{bottom:405.615000px;}
.yc0{bottom:406.695000px;}
.y188{bottom:408.855000px;}
.y120{bottom:413.355000px;}
.y80{bottom:414.075000px;}
.y153{bottom:417.135000px;}
.y41{bottom:417.675000px;}
.ybf{bottom:423.975000px;}
.y187{bottom:426.135000px;}
.yfd{bottom:426.495000px;}
.y11f{bottom:430.635000px;}
.y7f{bottom:431.355000px;}
.y152{bottom:434.235000px;}
.ybe{bottom:438.195000px;}
.y186{bottom:443.415000px;}
.yfc{bottom:443.775000px;}
.y1c{bottom:447.015000px;}
.y11e{bottom:447.915000px;}
.y7e{bottom:448.635000px;}
.y151{bottom:451.515000px;}
.ybd{bottom:455.835000px;}
.y185{bottom:460.515000px;}
.yfb{bottom:461.055000px;}
.y11d{bottom:465.015000px;}
.y7d{bottom:465.915000px;}
.y150{bottom:468.795000px;}
.ybc{bottom:473.475000px;}
.y184{bottom:477.795000px;}
.yfa{bottom:478.335000px;}
.y11c{bottom:482.295000px;}
.y7c{bottom:483.015000px;}
.y14f{bottom:486.075000px;}
.yba{bottom:491.115000px;}
.y183{bottom:495.075000px;}
.yf9{bottom:495.435000px;}
.y11b{bottom:499.575000px;}
.y7b{bottom:500.295000px;}
.y14e{bottom:509.295000px;}
.y182{bottom:512.355000px;}
.yf8{bottom:512.715000px;}
.y11a{bottom:516.855000px;}
.y7a{bottom:517.575000px;}
.yb9{bottom:520.995000px;}
.yf7{bottom:527.115000px;}
.y181{bottom:529.635000px;}
.y14d{bottom:532.515000px;}
.y119{bottom:534.135000px;}
.y79{bottom:534.855000px;}
.yb8{bottom:538.275000px;}
.yf6{bottom:544.755000px;}
.y180{bottom:546.735000px;}
.y14c{bottom:549.795000px;}
.y78{bottom:552.135000px;}
.yb7{bottom:555.555000px;}
.y118{bottom:557.355000px;}
.yf5{bottom:562.395000px;}
.y17f{bottom:564.015000px;}
.y14b{bottom:567.075000px;}
.y77{bottom:569.235000px;}
.yb6{bottom:572.835000px;}
.yf4{bottom:580.035000px;}
.y117{bottom:580.575000px;}
.y17e{bottom:581.295000px;}
.y76{bottom:586.515000px;}
.yb5{bottom:589.935000px;}
.y14a{bottom:590.295000px;}
.y116{bottom:597.855000px;}
.y17d{bottom:598.575000px;}
.yf3{bottom:600.915000px;}
.y75{bottom:603.825000px;}
.yb4{bottom:607.245000px;}
.y149{bottom:607.605000px;}
.y115{bottom:615.165000px;}
.y17c{bottom:615.885000px;}
.yf2{bottom:618.225000px;}
.y74{bottom:621.105000px;}
.yb3{bottom:624.525000px;}
.y148{bottom:624.885000px;}
.y17b{bottom:633.165000px;}
.yf1{bottom:635.325000px;}
.y73{bottom:638.385000px;}
.yb2{bottom:638.925000px;}
.y147{bottom:642.165000px;}
.y17a{bottom:650.265000px;}
.yf0{bottom:652.605000px;}
.y72{bottom:655.665000px;}
.yb1{bottom:656.565000px;}
.y146{bottom:665.385000px;}
.y179{bottom:667.545000px;}
.yef{bottom:669.885000px;}
.y71{bottom:672.765000px;}
.yaf{bottom:674.205000px;}
.y145{bottom:682.665000px;}
.y178{bottom:684.825000px;}
.yee{bottom:687.165000px;}
.y70{bottom:690.045000px;}
.y144{bottom:699.765000px;}
.y177{bottom:702.105000px;}
.yed{bottom:704.445000px;}
.yae{bottom:705.885000px;}
.y6f{bottom:707.325000px;}
.y143{bottom:717.045000px;}
.y176{bottom:719.385000px;}
.yec{bottom:721.725000px;}
.yad{bottom:723.165000px;}
.y6e{bottom:724.605000px;}
.y142{bottom:734.325000px;}
.y175{bottom:736.665000px;}
.yeb{bottom:738.825000px;}
.yac{bottom:740.265000px;}
.y6d{bottom:741.885000px;}
.y141{bottom:751.605000px;}
.ye9{bottom:753.225000px;}
.y174{bottom:753.765000px;}
.yab{bottom:757.545000px;}
.y6c{bottom:759.165000px;}
.y173{bottom:771.045000px;}
.yaa{bottom:774.825000px;}
.y6b{bottom:776.265000px;}
.ye8{bottom:780.585000px;}
.y172{bottom:788.325000px;}
.ya9{bottom:792.105000px;}
.y6a{bottom:793.545000px;}
.y140{bottom:798.045000px;}
.ye7{bottom:798.225000px;}
.y171{bottom:805.605000px;}
.y1a{bottom:809.205000px;}
.ya8{bottom:809.385000px;}
.y69{bottom:810.825000px;}
.y13f{bottom:815.325000px;}
.ye6{bottom:815.865000px;}
.y170{bottom:822.885000px;}
.ya7{bottom:826.485000px;}
.y68{bottom:828.105000px;}
.y13e{bottom:832.605000px;}
.ye5{bottom:833.505000px;}
.yf{bottom:838.725000px;}
.y16f{bottom:839.985000px;}
.ya6{bottom:840.885000px;}
.y67{bottom:845.385000px;}
.ye4{bottom:851.145000px;}
.y13d{bottom:855.825000px;}
.y16e{bottom:857.265000px;}
.ya5{bottom:858.525000px;}
.y66{bottom:862.485000px;}
.ye1{bottom:868.785000px;}
.y16d{bottom:874.590000px;}
.ya3{bottom:876.210000px;}
.y13c{bottom:879.090000px;}
.y65{bottom:879.810000px;}
.y16c{bottom:891.870000px;}
.y13b{bottom:896.370000px;}
.y64{bottom:897.090000px;}
.ya2{bottom:906.450000px;}
.ye0{bottom:906.810000px;}
.y16b{bottom:909.150000px;}
.y13a{bottom:913.650000px;}
.y63{bottom:914.370000px;}
.ya1{bottom:923.730000px;}
.ydf{bottom:924.090000px;}
.y16a{bottom:926.430000px;}
.y139{bottom:930.930000px;}
.y62{bottom:931.650000px;}
.ya0{bottom:941.010000px;}
.yde{bottom:941.370000px;}
.y169{bottom:943.530000px;}
.y138{bottom:948.030000px;}
.y61{bottom:948.930000px;}
.y9f{bottom:958.290000px;}
.ydd{bottom:958.650000px;}
.y168{bottom:960.810000px;}
.y137{bottom:965.310000px;}
.y60{bottom:966.030000px;}
.y9e{bottom:975.390000px;}
.ydc{bottom:975.930000px;}
.y167{bottom:978.090000px;}
.y5f{bottom:983.310000px;}
.y136{bottom:988.530000px;}
.y9d{bottom:992.670000px;}
.ydb{bottom:993.030000px;}
.y166{bottom:995.370000px;}
.y5e{bottom:1000.590000px;}
.y135{bottom:1005.810000px;}
.y114{bottom:1006.530000px;}
.y9c{bottom:1009.950000px;}
.yda{bottom:1010.310000px;}
.y165{bottom:1012.650000px;}
.y5d{bottom:1017.870000px;}
.y134{bottom:1023.090000px;}
.y113{bottom:1023.810000px;}
.yd9{bottom:1024.710000px;}
.y9b{bottom:1027.230000px;}
.y164{bottom:1029.930000px;}
.yd{bottom:1034.970000px;}
.y5c{bottom:1035.150000px;}
.y112{bottom:1041.090000px;}
.yd8{bottom:1042.350000px;}
.y9a{bottom:1044.510000px;}
.y133{bottom:1046.310000px;}
.y163{bottom:1047.030000px;}
.y5b{bottom:1052.430000px;}
.y111{bottom:1058.370000px;}
.y99{bottom:1058.910000px;}
.yd7{bottom:1059.990000px;}
.y6{bottom:1060.350000px;}
.y132{bottom:1063.590000px;}
.y162{bottom:1064.310000px;}
.y5a{bottom:1069.530000px;}
.y98{bottom:1076.550000px;}
.yd6{bottom:1077.630000px;}
.y110{bottom:1081.590000px;}
.y59{bottom:1086.810000px;}
.y97{bottom:1094.190000px;}
.yd5{bottom:1095.270000px;}
.y10f{bottom:1098.870000px;}
.y58{bottom:1104.090000px;}
.y131{bottom:1110.030000px;}
.y96{bottom:1111.650000px;}
.yd4{bottom:1116.150000px;}
.y57{bottom:1121.370000px;}
.y130{bottom:1127.310000px;}
.y95{bottom:1129.290000px;}
.yd3{bottom:1133.430000px;}
.y56{bottom:1138.680000px;}
.y12f{bottom:1144.620000px;}
.y94{bottom:1146.960000px;}
.yd2{bottom:1150.560000px;}
.y55{bottom:1161.900000px;}
.y93{bottom:1167.840000px;}
.h24{height:17.100000px;}
.h22{height:17.280000px;}
.h23{height:17.316000px;}
.hb{height:25.020000px;}
.h27{height:26.280000px;}
.h25{height:26.640000px;}
.h29{height:27.000000px;}
.h26{height:28.080000px;}
.h1f{height:28.305703px;}
.h1e{height:28.799297px;}
.h11{height:28.968750px;}
.h1c{height:29.340000px;}
.h12{height:29.520000px;}
.h2{height:33.156000px;}
.h20{height:34.036523px;}
.h28{height:34.416000px;}
.h21{height:35.120039px;}
.h8{height:36.180000px;}
.h19{height:38.818125px;}
.h1b{height:41.726953px;}
.h1a{height:42.164648px;}
.h18{height:42.281367px;}
.h2a{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h1d{height:65.486953px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:196.230000px;}
.h14{height:362.190000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w10{width:83.916000px;}
.w17{width:87.876000px;}
.w12{width:90.396000px;}
.w2c{width:96.660000px;}
.w20{width:100.800000px;}
.w29{width:102.240000px;}
.w1e{width:105.696000px;}
.w19{width:107.100000px;}
.w1b{width:112.716000px;}
.w14{width:113.976000px;}
.w2b{width:122.256000px;}
.w2a{width:131.076000px;}
.wd{width:137.376000px;}
.w11{width:144.540000px;}
.w5{width:151.950000px;}
.wb{width:176.970000px;}
.w1a{width:180.750000px;}
.w21{width:195.150000px;}
.w1f{width:214.410000px;}
.w28{width:219.270000px;}
.w8{width:223.455000px;}
.we{width:228.810000px;}
.w27{width:233.670000px;}
.w18{width:238.890000px;}
.w30{width:251.895000px;}
.w13{width:272.550000px;}
.wa{width:274.755000px;}
.w22{width:274.935000px;}
.w26{width:276.555000px;}
.wc{width:277.770000px;}
.w16{width:288.210000px;}
.w1d{width:296.310000px;}
.w24{width:316.155000px;}
.w1c{width:320.475000px;}
.w2e{width:326.955000px;}
.w15{width:327.315000px;}
.wf{width:363.315000px;}
.w2f{width:402.915000px;}
.w25{width:413.715000px;}
.w2d{width:453.315000px;}
.w23{width:454.935000px;}
.w31{width:477.975000px;}
.w9{width:507.675000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.x11{left:12.600000px;}
.x1{left:81.000000px;}
.x12{left:87.119987px;}
.x15{left:89.495987px;}
.x13{left:91.655987px;}
.x4{left:98.130000px;}
.x14{left:106.595987px;}
.x33{left:108.035987px;}
.x16{left:110.735987px;}
.x34{left:135.035987px;}
.xd{left:180.030000px;}
.xe{left:188.130000px;}
.xc{left:195.330000px;}
.x28{left:211.709987px;}
.xf{left:215.175000px;}
.x1b{left:219.090000px;}
.x27{left:223.589987px;}
.x5{left:232.950000px;}
.xb{left:238.575000px;}
.x2f{left:265.529987px;}
.x2a{left:268.409987px;}
.x8{left:272.235000px;}
.x21{left:284.115000px;}
.x25{left:300.495000px;}
.x1d{left:303.375000px;}
.x10{left:304.455000px;}
.x1f{left:324.254987px;}
.x31{left:326.594987px;}
.x6{left:331.995000px;}
.x32{left:333.615000px;}
.x1a{left:337.034987px;}
.x23{left:347.834987px;}
.x7{left:351.255000px;}
.x17{left:354.314987px;}
.x18{left:356.475000px;}
.x2b{left:358.275000px;}
.xa{left:365.475000px;}
.x29{left:397.875000px;}
.x30{left:408.675000px;}
.x9{left:439.500000px;}
.x1c{left:448.275000px;}
.x2d{left:460.875000px;}
.x24{left:515.265000px;}
.x20{left:523.365000px;}
.x19{left:533.805000px;}
.x1e{left:539.025000px;}
.x2c{left:592.305000px;}
.x26{left:616.425000px;}
.x22{left:630.825000px;}
.x2e{left:714.930000px;}
.x3{left:739.050000px;}
@media print{
.v4{vertical-align:-21.120000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.v3{vertical-align:21.120000pt;}
.ls35{letter-spacing:-6.346667pt;}
.ls34{letter-spacing:-3.658667pt;}
.ls25{letter-spacing:-1.872000pt;}
.ls23{letter-spacing:-1.600000pt;}
.ls22{letter-spacing:-1.376000pt;}
.ls1a{letter-spacing:-1.184000pt;}
.ls21{letter-spacing:-1.141333pt;}
.ls2c{letter-spacing:-1.050667pt;}
.ls20{letter-spacing:-0.960000pt;}
.ls15{letter-spacing:-0.869333pt;}
.ls26{letter-spacing:-0.736000pt;}
.ls12{letter-spacing:-0.688000pt;}
.ls19{letter-spacing:-0.592000pt;}
.ls18{letter-spacing:-0.544000pt;}
.ls17{letter-spacing:-0.409067pt;}
.ls16{letter-spacing:-0.367467pt;}
.lsf{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.265067pt;}
.ls31{letter-spacing:-0.230933pt;}
.ls11{letter-spacing:-0.225067pt;}
.ls2b{letter-spacing:-0.183467pt;}
.lsd{letter-spacing:-0.113067pt;}
.ls30{letter-spacing:-0.094933pt;}
.ls10{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:-0.016000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls6{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.077867pt;}
.lsa{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.ls27{letter-spacing:0.120533pt;}
.ls1e{letter-spacing:0.136533pt;}
.ls8{letter-spacing:0.154880pt;}
.ls1b{letter-spacing:0.160000pt;}
.ls32{letter-spacing:0.183467pt;}
.ls24{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls2a{letter-spacing:0.272533pt;}
.ls29{letter-spacing:0.277333pt;}
.ls4{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.592000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls28{letter-spacing:0.800000pt;}
.ls1c{letter-spacing:1.440000pt;}
.ls7{letter-spacing:2.080000pt;}
.ls9{letter-spacing:4.640000pt;}
.ls1d{letter-spacing:7.306667pt;}
.ls1f{letter-spacing:9.760000pt;}
.ls14{letter-spacing:11.040000pt;}
.ls33{letter-spacing:14.672640pt;}
.ls5{letter-spacing:14.880000pt;}
.ls2e{letter-spacing:25.760000pt;}
.ls2d{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws21{word-spacing:-13.872000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws1f{word-spacing:-13.552533pt;}
.ws1a{word-spacing:-13.510933pt;}
.ws24{word-spacing:-13.463467pt;}
.ws1d{word-spacing:-13.416533pt;}
.wsd{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws22{word-spacing:-13.185067pt;}
.ws1e{word-spacing:-13.096533pt;}
.ws9{word-spacing:-13.054933pt;}
.ws23{word-spacing:-13.049067pt;}
.ws7{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.912533pt;}
.ws11{word-spacing:-12.870933pt;}
.ws12{word-spacing:-12.736000pt;}
.ws14{word-spacing:-12.688000pt;}
.wsb{word-spacing:-12.592000pt;}
.ws1c{word-spacing:-12.544000pt;}
.wsf{word-spacing:-12.410667pt;}
.ws16{word-spacing:-12.320000pt;}
.ws20{word-spacing:-12.229333pt;}
.ws17{word-spacing:-12.138667pt;}
.ws15{word-spacing:-12.096000pt;}
.wsc{word-spacing:-12.005120pt;}
.ws18{word-spacing:-11.904000pt;}
.ws19{word-spacing:-11.680000pt;}
.ws1b{word-spacing:-11.408000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws13{word-spacing:-10.720000pt;}
.ws25{word-spacing:-9.621333pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.ws26{word-spacing:-6.933333pt;}
.wse{word-spacing:0.000000pt;}
._25{margin-left:-7.130667pt;}
._21{margin-left:-6.111573pt;}
._4{margin-left:-4.975360pt;}
._3{margin-left:-3.665280pt;}
._2{margin-left:-2.383147pt;}
._0{margin-left:-1.061333pt;}
._1{width:1.152000pt;}
._f{width:2.932267pt;}
._e{width:4.186667pt;}
._a{width:5.188480pt;}
._c{width:6.341760pt;}
._b{width:7.608960pt;}
._8{width:9.282773pt;}
._7{width:10.261120pt;}
._9{width:11.153920pt;}
._13{width:12.271147pt;}
._5{width:14.421120pt;}
._6{width:16.008107pt;}
._16{width:17.440000pt;}
._12{width:18.821973pt;}
._24{width:20.191360pt;}
._11{width:21.354027pt;}
._10{width:23.038293pt;}
._d{width:24.367360pt;}
._20{width:25.427840pt;}
._1c{width:26.410027pt;}
._19{width:28.667520pt;}
._18{width:30.897920pt;}
._17{width:33.766827pt;}
._23{width:35.585067pt;}
._14{width:37.438080pt;}
._15{width:38.707200pt;}
._1a{width:91.815893pt;}
._1f{width:93.979947pt;}
._1e{width:98.612693pt;}
._1b{width:105.121280pt;}
._1d{width:106.587947pt;}
._22{width:125.513173pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:2.880000pt;}
.ye3{bottom:2.920000pt;}
.y3{bottom:3.200000pt;}
.y19{bottom:4.320000pt;}
.ye{bottom:8.480000pt;}
.ybb{bottom:10.880000pt;}
.y1b{bottom:11.040000pt;}
.ya4{bottom:11.200000pt;}
.yea{bottom:11.520000pt;}
.yc{bottom:12.320000pt;}
.yb0{bottom:12.480000pt;}
.y43{bottom:13.280000pt;}
.y4{bottom:15.552000pt;}
.y42{bottom:16.000000pt;}
.y2{bottom:17.952000pt;}
.y3f{bottom:18.080000pt;}
.ye2{bottom:18.120000pt;}
.y18{bottom:26.080000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:29.120000pt;}
.y3e{bottom:33.440000pt;}
.y17{bottom:40.840000pt;}
.ya{bottom:41.280000pt;}
.y3d{bottom:48.800000pt;}
.y1{bottom:49.120000pt;}
.y16{bottom:55.400000pt;}
.y3c{bottom:64.160000pt;}
.y9{bottom:65.280000pt;}
.y15{bottom:67.080000pt;}
.y3b{bottom:79.520000pt;}
.y8{bottom:82.746667pt;}
.y14{bottom:83.240000pt;}
.y2b{bottom:87.520000pt;}
.y54{bottom:91.552000pt;}
.y92{bottom:92.032000pt;}
.y3a{bottom:94.720000pt;}
.y161{bottom:94.752000pt;}
.yd1{bottom:98.752000pt;}
.y7{bottom:98.906667pt;}
.y13{bottom:99.560000pt;}
.y12e{bottom:100.672000pt;}
.y2a{bottom:101.120000pt;}
.y53{bottom:106.912000pt;}
.y91{bottom:107.392000pt;}
.y39{bottom:110.080000pt;}
.y160{bottom:110.112000pt;}
.yd0{bottom:114.112000pt;}
.y12d{bottom:116.032000pt;}
.y12{bottom:116.520000pt;}
.y29{bottom:116.800000pt;}
.y10e{bottom:116.832000pt;}
.y90{bottom:122.752000pt;}
.y52{bottom:124.672000pt;}
.y15f{bottom:125.312000pt;}
.y38{bottom:125.440000pt;}
.ycf{bottom:129.472000pt;}
.y12c{bottom:131.392000pt;}
.y28{bottom:132.160000pt;}
.y10d{bottom:132.192000pt;}
.y8f{bottom:138.106667pt;}
.y11{bottom:139.400000pt;}
.y51{bottom:140.026667pt;}
.y15e{bottom:140.666667pt;}
.y37{bottom:140.826667pt;}
.yce{bottom:144.826667pt;}
.y12b{bottom:146.746667pt;}
.y10c{bottom:147.386667pt;}
.y27{bottom:147.546667pt;}
.y8e{bottom:153.306667pt;}
.y15d{bottom:156.026667pt;}
.y36{bottom:156.186667pt;}
.ycd{bottom:157.626667pt;}
.y50{bottom:160.666667pt;}
.y10{bottom:161.000000pt;}
.y12a{bottom:162.106667pt;}
.y10b{bottom:162.746667pt;}
.y26{bottom:163.386667pt;}
.y8d{bottom:168.666667pt;}
.y15c{bottom:171.386667pt;}
.y35{bottom:171.546667pt;}
.ycc{bottom:173.146667pt;}
.y4f{bottom:176.026667pt;}
.y10a{bottom:178.106667pt;}
.y25{bottom:178.746667pt;}
.y129{bottom:182.746667pt;}
.y8c{bottom:184.026667pt;}
.y34{bottom:186.746667pt;}
.ycb{bottom:188.826667pt;}
.y4e{bottom:191.386667pt;}
.y109{bottom:193.466667pt;}
.y24{bottom:194.266667pt;}
.y8b{bottom:199.386667pt;}
.y33{bottom:202.106667pt;}
.y128{bottom:203.386667pt;}
.yca{bottom:204.506667pt;}
.y108{bottom:208.826667pt;}
.y23{bottom:209.786667pt;}
.y4d{bottom:212.026667pt;}
.y8a{bottom:214.746667pt;}
.y15b{bottom:217.306667pt;}
.y32{bottom:217.466667pt;}
.yc9{bottom:220.186667pt;}
.y127{bottom:224.026667pt;}
.y107{bottom:224.186667pt;}
.y22{bottom:225.146667pt;}
.y4c{bottom:227.386667pt;}
.y89{bottom:230.106667pt;}
.y15a{bottom:232.666667pt;}
.y31{bottom:232.826667pt;}
.yc8{bottom:238.746667pt;}
.y106{bottom:239.386667pt;}
.y21{bottom:240.666667pt;}
.y4b{bottom:242.746667pt;}
.y88{bottom:245.306667pt;}
.y159{bottom:248.026667pt;}
.y30{bottom:248.186667pt;}
.yc7{bottom:254.106667pt;}
.y105{bottom:254.746667pt;}
.y20{bottom:256.186667pt;}
.y4a{bottom:260.506667pt;}
.y87{bottom:260.666667pt;}
.y158{bottom:263.386667pt;}
.y2f{bottom:263.546667pt;}
.yc6{bottom:269.466667pt;}
.y104{bottom:270.106667pt;}
.y1f{bottom:271.706667pt;}
.y126{bottom:275.386667pt;}
.y49{bottom:275.866667pt;}
.y86{bottom:276.026667pt;}
.y2e{bottom:278.746667pt;}
.yc5{bottom:284.826667pt;}
.y103{bottom:285.466667pt;}
.y125{bottom:290.746667pt;}
.y85{bottom:291.386667pt;}
.y2d{bottom:294.106667pt;}
.y1e{bottom:296.026667pt;}
.y48{bottom:296.506667pt;}
.yc4{bottom:300.066667pt;}
.y102{bottom:300.866667pt;}
.y124{bottom:306.146667pt;}
.y84{bottom:306.786667pt;}
.y157{bottom:309.346667pt;}
.y2c{bottom:309.466667pt;}
.y1d{bottom:311.866667pt;}
.y47{bottom:311.906667pt;}
.y101{bottom:313.666667pt;}
.yc3{bottom:315.426667pt;}
.y123{bottom:321.346667pt;}
.y83{bottom:322.146667pt;}
.y156{bottom:324.706667pt;}
.y46{bottom:327.106667pt;}
.y100{bottom:329.186667pt;}
.y18a{bottom:329.986667pt;}
.yc2{bottom:330.786667pt;}
.y122{bottom:336.706667pt;}
.y82{bottom:337.346667pt;}
.y155{bottom:340.066667pt;}
.y45{bottom:342.466667pt;}
.yff{bottom:344.866667pt;}
.yc1{bottom:346.146667pt;}
.y189{bottom:348.066667pt;}
.y121{bottom:352.066667pt;}
.y81{bottom:352.706667pt;}
.y154{bottom:355.426667pt;}
.y44{bottom:358.466667pt;}
.yfe{bottom:360.546667pt;}
.yc0{bottom:361.506667pt;}
.y188{bottom:363.426667pt;}
.y120{bottom:367.426667pt;}
.y80{bottom:368.066667pt;}
.y153{bottom:370.786667pt;}
.y41{bottom:371.266667pt;}
.ybf{bottom:376.866667pt;}
.y187{bottom:378.786667pt;}
.yfd{bottom:379.106667pt;}
.y11f{bottom:382.786667pt;}
.y7f{bottom:383.426667pt;}
.y152{bottom:385.986667pt;}
.ybe{bottom:389.506667pt;}
.y186{bottom:394.146667pt;}
.yfc{bottom:394.466667pt;}
.y1c{bottom:397.346667pt;}
.y11e{bottom:398.146667pt;}
.y7e{bottom:398.786667pt;}
.y151{bottom:401.346667pt;}
.ybd{bottom:405.186667pt;}
.y185{bottom:409.346667pt;}
.yfb{bottom:409.826667pt;}
.y11d{bottom:413.346667pt;}
.y7d{bottom:414.146667pt;}
.y150{bottom:416.706667pt;}
.ybc{bottom:420.866667pt;}
.y184{bottom:424.706667pt;}
.yfa{bottom:425.186667pt;}
.y11c{bottom:428.706667pt;}
.y7c{bottom:429.346667pt;}
.y14f{bottom:432.066667pt;}
.yba{bottom:436.546667pt;}
.y183{bottom:440.066667pt;}
.yf9{bottom:440.386667pt;}
.y11b{bottom:444.066667pt;}
.y7b{bottom:444.706667pt;}
.y14e{bottom:452.706667pt;}
.y182{bottom:455.426667pt;}
.yf8{bottom:455.746667pt;}
.y11a{bottom:459.426667pt;}
.y7a{bottom:460.066667pt;}
.yb9{bottom:463.106667pt;}
.yf7{bottom:468.546667pt;}
.y181{bottom:470.786667pt;}
.y14d{bottom:473.346667pt;}
.y119{bottom:474.786667pt;}
.y79{bottom:475.426667pt;}
.yb8{bottom:478.466667pt;}
.yf6{bottom:484.226667pt;}
.y180{bottom:485.986667pt;}
.y14c{bottom:488.706667pt;}
.y78{bottom:490.786667pt;}
.yb7{bottom:493.826667pt;}
.y118{bottom:495.426667pt;}
.yf5{bottom:499.906667pt;}
.y17f{bottom:501.346667pt;}
.y14b{bottom:504.066667pt;}
.y77{bottom:505.986667pt;}
.yb6{bottom:509.186667pt;}
.yf4{bottom:515.586667pt;}
.y117{bottom:516.066667pt;}
.y17e{bottom:516.706667pt;}
.y76{bottom:521.346667pt;}
.yb5{bottom:524.386667pt;}
.y14a{bottom:524.706667pt;}
.y116{bottom:531.426667pt;}
.y17d{bottom:532.066667pt;}
.yf3{bottom:534.146667pt;}
.y75{bottom:536.733333pt;}
.yb4{bottom:539.773333pt;}
.y149{bottom:540.093333pt;}
.y115{bottom:546.813333pt;}
.y17c{bottom:547.453333pt;}
.yf2{bottom:549.533333pt;}
.y74{bottom:552.093333pt;}
.yb3{bottom:555.133333pt;}
.y148{bottom:555.453333pt;}
.y17b{bottom:562.813333pt;}
.yf1{bottom:564.733333pt;}
.y73{bottom:567.453333pt;}
.yb2{bottom:567.933333pt;}
.y147{bottom:570.813333pt;}
.y17a{bottom:578.013333pt;}
.yf0{bottom:580.093333pt;}
.y72{bottom:582.813333pt;}
.yb1{bottom:583.613333pt;}
.y146{bottom:591.453333pt;}
.y179{bottom:593.373333pt;}
.yef{bottom:595.453333pt;}
.y71{bottom:598.013333pt;}
.yaf{bottom:599.293333pt;}
.y145{bottom:606.813333pt;}
.y178{bottom:608.733333pt;}
.yee{bottom:610.813333pt;}
.y70{bottom:613.373333pt;}
.y144{bottom:622.013333pt;}
.y177{bottom:624.093333pt;}
.yed{bottom:626.173333pt;}
.yae{bottom:627.453333pt;}
.y6f{bottom:628.733333pt;}
.y143{bottom:637.373333pt;}
.y176{bottom:639.453333pt;}
.yec{bottom:641.533333pt;}
.yad{bottom:642.813333pt;}
.y6e{bottom:644.093333pt;}
.y142{bottom:652.733333pt;}
.y175{bottom:654.813333pt;}
.yeb{bottom:656.733333pt;}
.yac{bottom:658.013333pt;}
.y6d{bottom:659.453333pt;}
.y141{bottom:668.093333pt;}
.ye9{bottom:669.533333pt;}
.y174{bottom:670.013333pt;}
.yab{bottom:673.373333pt;}
.y6c{bottom:674.813333pt;}
.y173{bottom:685.373333pt;}
.yaa{bottom:688.733333pt;}
.y6b{bottom:690.013333pt;}
.ye8{bottom:693.853333pt;}
.y172{bottom:700.733333pt;}
.ya9{bottom:704.093333pt;}
.y6a{bottom:705.373333pt;}
.y140{bottom:709.373333pt;}
.ye7{bottom:709.533333pt;}
.y171{bottom:716.093333pt;}
.y1a{bottom:719.293333pt;}
.ya8{bottom:719.453333pt;}
.y69{bottom:720.733333pt;}
.y13f{bottom:724.733333pt;}
.ye6{bottom:725.213333pt;}
.y170{bottom:731.453333pt;}
.ya7{bottom:734.653333pt;}
.y68{bottom:736.093333pt;}
.y13e{bottom:740.093333pt;}
.ye5{bottom:740.893333pt;}
.yf{bottom:745.533333pt;}
.y16f{bottom:746.653333pt;}
.ya6{bottom:747.453333pt;}
.y67{bottom:751.453333pt;}
.ye4{bottom:756.573333pt;}
.y13d{bottom:760.733333pt;}
.y16e{bottom:762.013333pt;}
.ya5{bottom:763.133333pt;}
.y66{bottom:766.653333pt;}
.ye1{bottom:772.253333pt;}
.y16d{bottom:777.413333pt;}
.ya3{bottom:778.853333pt;}
.y13c{bottom:781.413333pt;}
.y65{bottom:782.053333pt;}
.y16c{bottom:792.773333pt;}
.y13b{bottom:796.773333pt;}
.y64{bottom:797.413333pt;}
.ya2{bottom:805.733333pt;}
.ye0{bottom:806.053333pt;}
.y16b{bottom:808.133333pt;}
.y13a{bottom:812.133333pt;}
.y63{bottom:812.773333pt;}
.ya1{bottom:821.093333pt;}
.ydf{bottom:821.413333pt;}
.y16a{bottom:823.493333pt;}
.y139{bottom:827.493333pt;}
.y62{bottom:828.133333pt;}
.ya0{bottom:836.453333pt;}
.yde{bottom:836.773333pt;}
.y169{bottom:838.693333pt;}
.y138{bottom:842.693333pt;}
.y61{bottom:843.493333pt;}
.y9f{bottom:851.813333pt;}
.ydd{bottom:852.133333pt;}
.y168{bottom:854.053333pt;}
.y137{bottom:858.053333pt;}
.y60{bottom:858.693333pt;}
.y9e{bottom:867.013333pt;}
.ydc{bottom:867.493333pt;}
.y167{bottom:869.413333pt;}
.y5f{bottom:874.053333pt;}
.y136{bottom:878.693333pt;}
.y9d{bottom:882.373333pt;}
.ydb{bottom:882.693333pt;}
.y166{bottom:884.773333pt;}
.y5e{bottom:889.413333pt;}
.y135{bottom:894.053333pt;}
.y114{bottom:894.693333pt;}
.y9c{bottom:897.733333pt;}
.yda{bottom:898.053333pt;}
.y165{bottom:900.133333pt;}
.y5d{bottom:904.773333pt;}
.y134{bottom:909.413333pt;}
.y113{bottom:910.053333pt;}
.yd9{bottom:910.853333pt;}
.y9b{bottom:913.093333pt;}
.y164{bottom:915.493333pt;}
.yd{bottom:919.973333pt;}
.y5c{bottom:920.133333pt;}
.y112{bottom:925.413333pt;}
.yd8{bottom:926.533333pt;}
.y9a{bottom:928.453333pt;}
.y133{bottom:930.053333pt;}
.y163{bottom:930.693333pt;}
.y5b{bottom:935.493333pt;}
.y111{bottom:940.773333pt;}
.y99{bottom:941.253333pt;}
.yd7{bottom:942.213333pt;}
.y6{bottom:942.533333pt;}
.y132{bottom:945.413333pt;}
.y162{bottom:946.053333pt;}
.y5a{bottom:950.693333pt;}
.y98{bottom:956.933333pt;}
.yd6{bottom:957.893333pt;}
.y110{bottom:961.413333pt;}
.y59{bottom:966.053333pt;}
.y97{bottom:972.613333pt;}
.yd5{bottom:973.573333pt;}
.y10f{bottom:976.773333pt;}
.y58{bottom:981.413333pt;}
.y131{bottom:986.693333pt;}
.y96{bottom:988.133333pt;}
.yd4{bottom:992.133333pt;}
.y57{bottom:996.773333pt;}
.y130{bottom:1002.053333pt;}
.y95{bottom:1003.813333pt;}
.yd3{bottom:1007.493333pt;}
.y56{bottom:1012.160000pt;}
.y12f{bottom:1017.440000pt;}
.y94{bottom:1019.520000pt;}
.yd2{bottom:1022.720000pt;}
.y55{bottom:1032.800000pt;}
.y93{bottom:1038.080000pt;}
.h24{height:15.200000pt;}
.h22{height:15.360000pt;}
.h23{height:15.392000pt;}
.hb{height:22.240000pt;}
.h27{height:23.360000pt;}
.h25{height:23.680000pt;}
.h29{height:24.000000pt;}
.h26{height:24.960000pt;}
.h1f{height:25.160625pt;}
.h1e{height:25.599375pt;}
.h11{height:25.750000pt;}
.h1c{height:26.080000pt;}
.h12{height:26.240000pt;}
.h2{height:29.472000pt;}
.h20{height:30.254687pt;}
.h28{height:30.592000pt;}
.h21{height:31.217812pt;}
.h8{height:32.160000pt;}
.h19{height:34.505000pt;}
.h1b{height:37.090625pt;}
.h1a{height:37.479688pt;}
.h18{height:37.583438pt;}
.h2a{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h1d{height:58.210625pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:174.426667pt;}
.h14{height:321.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w10{width:74.592000pt;}
.w17{width:78.112000pt;}
.w12{width:80.352000pt;}
.w2c{width:85.920000pt;}
.w20{width:89.600000pt;}
.w29{width:90.880000pt;}
.w1e{width:93.952000pt;}
.w19{width:95.200000pt;}
.w1b{width:100.192000pt;}
.w14{width:101.312000pt;}
.w2b{width:108.672000pt;}
.w2a{width:116.512000pt;}
.wd{width:122.112000pt;}
.w11{width:128.480000pt;}
.w5{width:135.066667pt;}
.wb{width:157.306667pt;}
.w1a{width:160.666667pt;}
.w21{width:173.466667pt;}
.w1f{width:190.586667pt;}
.w28{width:194.906667pt;}
.w8{width:198.626667pt;}
.we{width:203.386667pt;}
.w27{width:207.706667pt;}
.w18{width:212.346667pt;}
.w30{width:223.906667pt;}
.w13{width:242.266667pt;}
.wa{width:244.226667pt;}
.w22{width:244.386667pt;}
.w26{width:245.826667pt;}
.wc{width:246.906667pt;}
.w16{width:256.186667pt;}
.w1d{width:263.386667pt;}
.w24{width:281.026667pt;}
.w1c{width:284.866667pt;}
.w2e{width:290.626667pt;}
.w15{width:290.946667pt;}
.wf{width:322.946667pt;}
.w2f{width:358.146667pt;}
.w25{width:367.746667pt;}
.w2d{width:402.946667pt;}
.w23{width:404.386667pt;}
.w31{width:424.866667pt;}
.w9{width:451.266667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.x11{left:11.200000pt;}
.x1{left:72.000000pt;}
.x12{left:77.439988pt;}
.x15{left:79.551988pt;}
.x13{left:81.471988pt;}
.x4{left:87.226667pt;}
.x14{left:94.751988pt;}
.x33{left:96.031988pt;}
.x16{left:98.431988pt;}
.x34{left:120.031988pt;}
.xd{left:160.026667pt;}
.xe{left:167.226667pt;}
.xc{left:173.626667pt;}
.x28{left:188.186655pt;}
.xf{left:191.266667pt;}
.x1b{left:194.746667pt;}
.x27{left:198.746655pt;}
.x5{left:207.066667pt;}
.xb{left:212.066667pt;}
.x2f{left:236.026655pt;}
.x2a{left:238.586655pt;}
.x8{left:241.986667pt;}
.x21{left:252.546667pt;}
.x25{left:267.106667pt;}
.x1d{left:269.666667pt;}
.x10{left:270.626667pt;}
.x1f{left:288.226655pt;}
.x31{left:290.306655pt;}
.x6{left:295.106667pt;}
.x32{left:296.546667pt;}
.x1a{left:299.586655pt;}
.x23{left:309.186655pt;}
.x7{left:312.226667pt;}
.x17{left:314.946655pt;}
.x18{left:316.866667pt;}
.x2b{left:318.466667pt;}
.xa{left:324.866667pt;}
.x29{left:353.666667pt;}
.x30{left:363.266667pt;}
.x9{left:390.666667pt;}
.x1c{left:398.466667pt;}
.x2d{left:409.666667pt;}
.x24{left:458.013333pt;}
.x20{left:465.213333pt;}
.x19{left:474.493333pt;}
.x1e{left:479.133333pt;}
.x2c{left:526.493333pt;}
.x26{left:547.933333pt;}
.x22{left:560.733333pt;}
.x2e{left:635.493333pt;}
.x3{left:656.933333pt;}
}




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