
    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_6bcec3518ba15dada46a92fe.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.122559;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.854004;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_de0750b74f0e19c512b305b9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_cb20a1a1d45359de8891d485.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.842285;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_4f5310696ca075618538e060.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4f15355f53a8f33ebc598745.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.122559;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_26ca9b106b7538e2b4dad807.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.068359;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_352b38c9cccadc62d5c96255.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.068359;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_e95aa7898097bd6d249e51aa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.854004;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_3f1e84be5a12bef3ae3a01c8.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_537047baaebf784ba1267c62.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.695312;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_03d160de47fa6e0c99849180.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_4bca04237e0c2a035d3e3005.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.763184;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_90fb5f33ebd6ffaaab030be1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.063477;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_54390cbc81758c13bc0750ee.woff2')format("woff");}.fff{font-family:fff;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;}
.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);}
.v2{vertical-align:-15.300000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.v4{vertical-align:40.320000px;}
.v3{vertical-align:46.080000px;}
.ls24{letter-spacing:-1.974000px;}
.ls1d{letter-spacing:-1.512000px;}
.ls30{letter-spacing:-1.128000px;}
.ls2e{letter-spacing:-0.852000px;}
.ls23{letter-spacing:-0.756000px;}
.ls2f{letter-spacing:-0.411000px;}
.ls31{letter-spacing:-0.406200px;}
.lsb{letter-spacing:-0.324000px;}
.ls1f{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.215400px;}
.ls10{letter-spacing:-0.189600px;}
.lsc{letter-spacing:-0.178800px;}
.ls2a{letter-spacing:-0.160800px;}
.ls1e{letter-spacing:-0.144000px;}
.ls2d{letter-spacing:-0.129600px;}
.lsa{letter-spacing:-0.072000px;}
.ls28{letter-spacing:-0.055440px;}
.ls2b{letter-spacing:-0.052560px;}
.ls20{letter-spacing:-0.036000px;}
.ls21{letter-spacing:-0.000001px;}
.ls9{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.015120px;}
.ls1b{letter-spacing:0.036000px;}
.ls11{letter-spacing:0.041760px;}
.ls16{letter-spacing:0.049680px;}
.ls17{letter-spacing:0.069600px;}
.ls25{letter-spacing:0.069840px;}
.lse{letter-spacing:0.083400px;}
.ls7{letter-spacing:0.087000px;}
.ls18{letter-spacing:0.108000px;}
.ls1c{letter-spacing:0.120240px;}
.ls1{letter-spacing:0.126000px;}
.ls5{letter-spacing:0.131760px;}
.ls14{letter-spacing:0.132600px;}
.ls1a{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.188400px;}
.ls32{letter-spacing:0.218400px;}
.ls3{letter-spacing:0.252000px;}
.ls22{letter-spacing:0.268800px;}
.ls26{letter-spacing:0.291600px;}
.ls27{letter-spacing:0.308880px;}
.ls2c{letter-spacing:0.313800px;}
.ls8{letter-spacing:0.323400px;}
.ls19{letter-spacing:0.324000px;}
.ls4{letter-spacing:0.329760px;}
.ls2{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.541200px;}
.ls29{letter-spacing:0.768000px;}
.ls6{letter-spacing:0.846000px;}
.ls12{letter-spacing:74.062800px;}
.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;}
}
.ws6{word-spacing:-15.323160px;}
.ws1d{word-spacing:-15.268560px;}
.ws2d{word-spacing:-15.218160px;}
.ws5{word-spacing:-15.086760px;}
.ws10{word-spacing:-15.069360px;}
.wsa{word-spacing:-15.041520px;}
.ws22{word-spacing:-15.014880px;}
.ws7{word-spacing:-14.999760px;}
.ws24{word-spacing:-14.947200px;}
.ws21{word-spacing:-14.871360px;}
.ws23{word-spacing:-14.838960px;}
.ws9{word-spacing:-14.810160px;}
.wsc{word-spacing:-14.471040px;}
.ws26{word-spacing:-14.417160px;}
.ws28{word-spacing:-14.394960px;}
.wsf{word-spacing:-14.332320px;}
.wsb{word-spacing:-14.282640px;}
.ws25{word-spacing:-14.153040px;}
.ws4{word-spacing:-14.103360px;}
.ws20{word-spacing:-14.047920px;}
.ws27{word-spacing:-13.973760px;}
.wsd{word-spacing:-13.744800px;}
.ws2c{word-spacing:-13.697160px;}
.ws2a{word-spacing:-13.692360px;}
.ws1{word-spacing:-13.554000px;}
.ws29{word-spacing:-13.251360px;}
.wse{word-spacing:-13.160160px;}
.ws2b{word-spacing:-12.975360px;}
.ws2{word-spacing:-12.906000px;}
.ws3{word-spacing:-12.831120px;}
.ws16{word-spacing:-12.744000px;}
.ws1a{word-spacing:-9.360000px;}
.ws14{word-spacing:-9.288000px;}
.ws15{word-spacing:-9.180000px;}
.ws17{word-spacing:-9.144000px;}
.ws12{word-spacing:-9.036000px;}
.ws1c{word-spacing:-9.035999px;}
.ws1b{word-spacing:-9.000000px;}
.ws19{word-spacing:-8.964000px;}
.ws13{word-spacing:-8.496000px;}
.ws1e{word-spacing:-8.352000px;}
.ws1f{word-spacing:-8.280000px;}
.ws18{word-spacing:-8.208000px;}
.ws0{word-spacing:-7.590240px;}
.ws11{word-spacing:-7.524000px;}
.ws8{word-spacing:0.000000px;}
._2f{margin-left:-6.746400px;}
._8{margin-left:-5.466240px;}
._7{margin-left:-4.371120px;}
._20{margin-left:-3.314880px;}
._3{margin-left:-2.304000px;}
._0{margin-left:-1.010880px;}
._1{width:1.020000px;}
._10{width:2.804640px;}
._13{width:3.996240px;}
._b{width:5.916240px;}
._c{width:7.497360px;}
._d{width:9.442080px;}
._e{width:10.927440px;}
._f{width:12.310560px;}
._a{width:13.667040px;}
._2e{width:15.167760px;}
._9{width:16.298160px;}
._14{width:17.410560px;}
._16{width:18.764400px;}
._11{width:20.079360px;}
._12{width:21.319200px;}
._1c{width:22.862880px;}
._1f{width:24.235920px;}
._2{width:25.326000px;}
._5{width:27.106320px;}
._4{width:28.916400px;}
._15{width:30.775680px;}
._1d{width:32.542560px;}
._23{width:33.558480px;}
._22{width:35.315520px;}
._18{width:36.840240px;}
._19{width:38.576880px;}
._17{width:39.833280px;}
._1e{width:41.138640px;}
._21{width:42.945600px;}
._27{width:46.705680px;}
._28{width:49.394880px;}
._2b{width:50.741520px;}
._25{width:53.181360px;}
._24{width:54.609600px;}
._26{width:57.646800px;}
._1a{width:58.918320px;}
._1b{width:61.248960px;}
._2c{width:62.922240px;}
._2d{width:64.057680px;}
._31{width:66.871440px;}
._30{width:68.126400px;}
._32{width:69.162240px;}
._29{width:71.553600px;}
._2a{width:72.721680px;}
._6{width:74.207520px;}
._33{width:75.944880px;}
.fc5{color:transparent;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(192,0,0);}
.fc4{color:rgb(31,31,31);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:5.760000px;}
.fsb{font-size:12.240000px;}
.fsc{font-size:18.000000px;}
.fs3{font-size:23.760000px;}
.fs7{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fs8{font-size:48.240000px;}
.fsd{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fsf{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fse{font-size:108.000000px;}
.fsa{font-size:120.240000px;}
.fs10{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y118{bottom:2.340000px;}
.yfb{bottom:3.960000px;}
.yff{bottom:4.140000px;}
.y53{bottom:4.680000px;}
.ya{bottom:6.840000px;}
.y138{bottom:8.280000px;}
.y11a{bottom:10.980000px;}
.y109{bottom:12.780000px;}
.y15e{bottom:14.040000px;}
.y167{bottom:14.220000px;}
.y9{bottom:16.020000px;}
.y1de{bottom:17.325000px;}
.y34{bottom:23.940000px;}
.y52{bottom:24.120000px;}
.y8{bottom:30.420000px;}
.y1dd{bottom:38.205000px;}
.y33{bottom:39.600000px;}
.y7{bottom:39.810000px;}
.y51{bottom:40.500000px;}
.y50{bottom:51.660000px;}
.y6{bottom:54.030000px;}
.y32{bottom:55.080000px;}
.y2{bottom:58.860000px;}
.y1dc{bottom:59.445000px;}
.y5{bottom:64.110000px;}
.y4f{bottom:66.420000px;}
.y31{bottom:70.605000px;}
.y4e{bottom:71.865000px;}
.y1{bottom:79.776000px;}
.y1db{bottom:80.685000px;}
.y30{bottom:84.285000px;}
.y4{bottom:85.890000px;}
.y4d{bottom:90.225000px;}
.y2f{bottom:93.645000px;}
.y1da{bottom:101.925000px;}
.y2e{bottom:106.965000px;}
.y4c{bottom:108.405000px;}
.y2d{bottom:111.825000px;}
.y57{bottom:113.796000px;}
.y2c{bottom:118.305000px;}
.y174{bottom:119.376000px;}
.y17a{bottom:120.816000px;}
.y1d9{bottom:123.165000px;}
.y4b{bottom:126.765000px;}
.y134{bottom:127.116000px;}
.y12c{bottom:128.016000px;}
.y1cf{bottom:130.716000px;}
.y86{bottom:131.616000px;}
.yb3{bottom:132.336000px;}
.yf4{bottom:132.516000px;}
.ycd{bottom:135.216000px;}
.y196{bottom:136.836000px;}
.y1b4{bottom:138.996000px;}
.y2b{bottom:139.365000px;}
.y173{bottom:140.436000px;}
.y179{bottom:141.876000px;}
.y4a{bottom:145.125000px;}
.y1d7{bottom:146.376000px;}
.y133{bottom:148.176000px;}
.y12b{bottom:149.256000px;}
.y56{bottom:151.230000px;}
.y85{bottom:152.850000px;}
.yb2{bottom:153.570000px;}
.yf3{bottom:153.750000px;}
.ycc{bottom:156.450000px;}
.y195{bottom:157.890000px;}
.y1b3{bottom:160.230000px;}
.y172{bottom:161.670000px;}
.y178{bottom:163.110000px;}
.y49{bottom:163.305000px;}
.y1ce{bottom:164.010000px;}
.y2a{bottom:167.805000px;}
.y132{bottom:169.410000px;}
.y12a{bottom:170.490000px;}
.y84{bottom:174.090000px;}
.yb1{bottom:174.810000px;}
.yf2{bottom:174.990000px;}
.ycb{bottom:177.690000px;}
.y194{bottom:179.130000px;}
.y1d6{bottom:179.670000px;}
.y48{bottom:181.665000px;}
.y171{bottom:182.910000px;}
.y1cd{bottom:185.070000px;}
.y55{bottom:188.670000px;}
.y131{bottom:190.650000px;}
.y129{bottom:191.550000px;}
.y1b2{bottom:193.530000px;}
.y83{bottom:195.330000px;}
.yb0{bottom:196.050000px;}
.yf1{bottom:196.230000px;}
.y177{bottom:196.590000px;}
.yca{bottom:198.930000px;}
.y47{bottom:200.025000px;}
.y170{bottom:204.150000px;}
.y1cc{bottom:206.130000px;}
.y29{bottom:209.205000px;}
.y130{bottom:211.710000px;}
.y193{bottom:212.610000px;}
.y128{bottom:212.790000px;}
.y1b1{bottom:214.590000px;}
.y176{bottom:216.390000px;}
.y82{bottom:216.570000px;}
.yaf{bottom:217.290000px;}
.yf0{bottom:217.470000px;}
.y46{bottom:218.385000px;}
.yc9{bottom:220.170000px;}
.y16f{bottom:225.390000px;}
.y54{bottom:226.110000px;}
.y28{bottom:226.305000px;}
.y12f{bottom:232.950000px;}
.y192{bottom:233.670000px;}
.y127{bottom:234.030000px;}
.y1b0{bottom:235.830000px;}
.y45{bottom:236.565000px;}
.y81{bottom:237.810000px;}
.yae{bottom:238.530000px;}
.yef{bottom:238.710000px;}
.y1cb{bottom:239.610000px;}
.yc8{bottom:241.230000px;}
.y18{bottom:243.030000px;}
.y1d5{bottom:246.090000px;}
.y16e{bottom:246.630000px;}
.y175{bottom:246.810000px;}
.y12e{bottom:254.190000px;}
.y44{bottom:254.925000px;}
.y126{bottom:255.270000px;}
.y1af{bottom:257.070000px;}
.y80{bottom:258.870000px;}
.yad{bottom:259.590000px;}
.yee{bottom:259.770000px;}
.y1ca{bottom:260.670000px;}
.y27{bottom:265.005000px;}
.y191{bottom:266.970000px;}
.y16d{bottom:267.690000px;}
.y43{bottom:273.285000px;}
.y125{bottom:274.170000px;}
.yc7{bottom:274.710000px;}
.y12d{bottom:275.430000px;}
.y1d4{bottom:279.210000px;}
.y7f{bottom:280.110000px;}
.yac{bottom:280.830000px;}
.yed{bottom:281.010000px;}
.y26{bottom:285.705000px;}
.y190{bottom:288.030000px;}
.y16c{bottom:288.930000px;}
.y1ae{bottom:290.370000px;}
.y42{bottom:291.645000px;}
.y1c9{bottom:293.970000px;}
.yc6{bottom:295.770000px;}
.y124{bottom:296.670000px;}
.y7e{bottom:301.350000px;}
.yab{bottom:302.070000px;}
.yec{bottom:302.250000px;}
.y25{bottom:302.265000px;}
.y1d8{bottom:307.290000px;}
.y41{bottom:309.825000px;}
.y1ad{bottom:311.430000px;}
.y1d3{bottom:312.510000px;}
.y16b{bottom:314.535000px;}
.y1c8{bottom:315.075000px;}
.yc5{bottom:317.055000px;}
.y24{bottom:319.905000px;}
.y18f{bottom:321.375000px;}
.y123{bottom:322.095000px;}
.y7d{bottom:322.635000px;}
.yeb{bottom:323.535000px;}
.y40{bottom:328.215000px;}
.y1ac{bottom:332.715000px;}
.yaa{bottom:335.595000px;}
.y16a{bottom:338.115000px;}
.yc4{bottom:338.295000px;}
.y23{bottom:340.635000px;}
.y18e{bottom:342.435000px;}
.y7c{bottom:343.875000px;}
.yea{bottom:344.775000px;}
.y1d2{bottom:345.675000px;}
.y3f{bottom:346.575000px;}
.y122{bottom:347.295000px;}
.y1c7{bottom:348.555000px;}
.y169{bottom:349.815000px;}
.ya9{bottom:355.935000px;}
.y121{bottom:356.835000px;}
.y22{bottom:357.195000px;}
.y120{bottom:360.435000px;}
.y166{bottom:361.515000px;}
.y18d{bottom:363.675000px;}
.y3e{bottom:364.755000px;}
.y7b{bottom:365.115000px;}
.ye9{bottom:366.015000px;}
.y1c6{bottom:369.435000px;}
.y11f{bottom:372.135000px;}
.yc3{bottom:373.395000px;}
.y21{bottom:374.835000px;}
.ya8{bottom:375.555000px;}
.y1d1{bottom:378.975000px;}
.y3d{bottom:383.115000px;}
.yc2{bottom:383.475000px;}
.y11e{bottom:383.835000px;}
.y18c{bottom:384.915000px;}
.y168{bottom:385.095000px;}
.y7a{bottom:386.175000px;}
.ye8{bottom:387.075000px;}
.y1c5{bottom:390.675000px;}
.y20{bottom:395.535000px;}
.ya7{bottom:396.795000px;}
.y3c{bottom:401.475000px;}
.y79{bottom:407.415000px;}
.ye7{bottom:408.315000px;}
.y165{bottom:408.495000px;}
.y1f{bottom:412.095000px;}
.ya6{bottom:418.035000px;}
.y18b{bottom:418.215000px;}
.y11d{bottom:419.115000px;}
.y3b{bottom:419.835000px;}
.y164{bottom:420.195000px;}
.y1c4{bottom:424.155000px;}
.yc1{bottom:426.135000px;}
.y78{bottom:428.655000px;}
.ye6{bottom:429.555000px;}
.y1e{bottom:429.915000px;}
.y11c{bottom:430.815000px;}
.y161{bottom:432.075000px;}
.y3a{bottom:438.015000px;}
.ya5{bottom:439.275000px;}
.y11b{bottom:442.515000px;}
.y163{bottom:443.775000px;}
.y1c3{bottom:445.215000px;}
.y1d0{bottom:445.395000px;}
.yc0{bottom:447.015000px;}
.y77{bottom:449.895000px;}
.y1d{bottom:450.615000px;}
.ye5{bottom:450.795000px;}
.y119{bottom:454.215000px;}
.y162{bottom:455.475000px;}
.y39{bottom:456.375000px;}
.ya4{bottom:460.515000px;}
.y117{bottom:466.095000px;}
.y1c{bottom:466.995000px;}
.y15d{bottom:467.175000px;}
.ybf{bottom:468.255000px;}
.y76{bottom:471.135000px;}
.ye4{bottom:472.035000px;}
.y38{bottom:474.735000px;}
.y1c2{bottom:478.515000px;}
.y160{bottom:478.875000px;}
.y116{bottom:480.495000px;}
.ya3{bottom:481.755000px;}
.y1ab{bottom:484.095000px;}
.y1b{bottom:484.815000px;}
.ybe{bottom:489.495000px;}
.y15f{bottom:490.755000px;}
.y75{bottom:492.375000px;}
.y37{bottom:493.095000px;}
.y18a{bottom:493.995000px;}
.ya2{bottom:502.815000px;}
.y15c{bottom:504.435000px;}
.y1aa{bottom:505.155000px;}
.ye3{bottom:505.335000px;}
.y1a{bottom:505.515000px;}
.y36{bottom:509.295000px;}
.ybd{bottom:510.735000px;}
.y115{bottom:511.275000px;}
.y1c1{bottom:511.815000px;}
.y74{bottom:513.435000px;}
.y15b{bottom:514.875000px;}
.y35{bottom:520.455000px;}
.y19{bottom:521.895000px;}
.ya1{bottom:524.055000px;}
.ybc{bottom:531.975000px;}
.y114{bottom:532.335000px;}
.y15a{bottom:533.775000px;}
.y73{bottom:534.675000px;}
.y189{bottom:536.115000px;}
.y1a9{bottom:538.455000px;}
.ye2{bottom:538.635000px;}
.y1c0{bottom:544.935000px;}
.ya0{bottom:545.295000px;}
.ybb{bottom:553.215000px;}
.y159{bottom:553.395000px;}
.y72{bottom:555.915000px;}
.y188{bottom:557.355000px;}
.y1a8{bottom:559.515000px;}
.ye1{bottom:561.135000px;}
.y9f{bottom:566.565000px;}
.y112{bottom:568.185000px;}
.y113{bottom:568.365000px;}
.yba{bottom:574.305000px;}
.y158{bottom:574.665000px;}
.y71{bottom:577.185000px;}
.y1bf{bottom:578.265000px;}
.y187{bottom:578.625000px;}
.ye0{bottom:587.625000px;}
.y9e{bottom:587.805000px;}
.y111{bottom:589.425000px;}
.y157{bottom:589.785000px;}
.y1a7{bottom:593.025000px;}
.yb9{bottom:595.545000px;}
.y70{bottom:598.425000px;}
.y156{bottom:601.485000px;}
.ydf{bottom:608.865000px;}
.y9d{bottom:609.045000px;}
.y110{bottom:610.665000px;}
.y1be{bottom:611.385000px;}
.y186{bottom:611.925000px;}
.y155{bottom:613.365000px;}
.y1a6{bottom:614.085000px;}
.yb8{bottom:616.785000px;}
.y6f{bottom:619.665000px;}
.y154{bottom:625.065000px;}
.y9c{bottom:630.105000px;}
.y10f{bottom:631.905000px;}
.y185{bottom:632.985000px;}
.y1a5{bottom:635.145000px;}
.y153{bottom:636.765000px;}
.yb7{bottom:638.025000px;}
.y6e{bottom:640.725000px;}
.y1bd{bottom:644.685000px;}
.y152{bottom:648.465000px;}
.yde{bottom:651.165000px;}
.y9b{bottom:651.345000px;}
.y10e{bottom:652.965000px;}
.y184{bottom:654.225000px;}
.y150{bottom:660.165000px;}
.y6d{bottom:661.965000px;}
.y1a4{bottom:668.625000px;}
.yb6{bottom:671.325000px;}
.y151{bottom:672.045000px;}
.y9a{bottom:672.585000px;}
.y10d{bottom:674.205000px;}
.y1bc{bottom:677.805000px;}
.y6c{bottom:683.205000px;}
.ydd{bottom:684.645000px;}
.y14f{bottom:685.725000px;}
.y183{bottom:687.705000px;}
.y1a3{bottom:689.685000px;}
.y99{bottom:693.825000px;}
.y10c{bottom:695.445000px;}
.y14e{bottom:696.165000px;}
.y6b{bottom:704.445000px;}
.yb5{bottom:704.625000px;}
.ydc{bottom:705.705000px;}
.y182{bottom:705.885000px;}
.y1a2{bottom:710.925000px;}
.y1bb{bottom:711.105000px;}
.y98{bottom:715.065000px;}
.y14d{bottom:715.785000px;}
.y10b{bottom:716.685000px;}
.y181{bottom:722.985000px;}
.y6a{bottom:725.685000px;}
.ydb{bottom:726.945000px;}
.y1a1{bottom:731.985000px;}
.y97{bottom:736.305000px;}
.y10a{bottom:738.285000px;}
.y69{bottom:746.925000px;}
.yda{bottom:748.005000px;}
.y146{bottom:749.085000px;}
.y14c{bottom:749.265000px;}
.y1a0{bottom:753.225000px;}
.y180{bottom:758.985000px;}
.y108{bottom:764.745000px;}
.y68{bottom:767.985000px;}
.yd9{bottom:769.245000px;}
.y96{bottom:769.605000px;}
.y145{bottom:770.145000px;}
.y19f{bottom:774.465000px;}
.y107{bottom:778.245000px;}
.y17f{bottom:780.045000px;}
.y17{bottom:784.905000px;}
.y1ba{bottom:786.705000px;}
.y67{bottom:789.225000px;}
.y95{bottom:789.945000px;}
.yd8{bottom:790.485000px;}
.y144{bottom:791.385000px;}
.y106{bottom:791.745000px;}
.y16{bottom:792.825000px;}
.y17e{bottom:801.285000px;}
.y15{bottom:801.465000px;}
.y105{bottom:805.245000px;}
.y1b9{bottom:807.765000px;}
.y19e{bottom:807.945000px;}
.y14{bottom:809.385000px;}
.y94{bottom:809.745000px;}
.y66{bottom:810.465000px;}
.y12{bottom:811.185000px;}
.yd7{bottom:811.725000px;}
.y143{bottom:812.625000px;}
.y13{bottom:813.165000px;}
.y104{bottom:818.790000px;}
.y11{bottom:819.870000px;}
.y17d{bottom:822.570000px;}
.y14b{bottom:824.910000px;}
.y19d{bottom:828.870000px;}
.y93{bottom:831.030000px;}
.y65{bottom:831.750000px;}
.y103{bottom:832.110000px;}
.yd6{bottom:833.010000px;}
.y142{bottom:833.910000px;}
.y17c{bottom:843.810000px;}
.y102{bottom:845.610000px;}
.y14a{bottom:845.970000px;}
.y10{bottom:846.510000px;}
.y19c{bottom:850.110000px;}
.y92{bottom:852.270000px;}
.y64{bottom:852.990000px;}
.yd5{bottom:854.250000px;}
.y141{bottom:855.150000px;}
.y101{bottom:859.110000px;}
.y17b{bottom:864.870000px;}
.y149{bottom:867.030000px;}
.y19b{bottom:871.350000px;}
.y100{bottom:872.610000px;}
.y91{bottom:873.510000px;}
.y63{bottom:874.230000px;}
.yd4{bottom:875.310000px;}
.y140{bottom:876.390000px;}
.y1b8{bottom:883.590000px;}
.yfe{bottom:886.110000px;}
.yf{bottom:887.910000px;}
.y148{bottom:888.270000px;}
.y90{bottom:891.870000px;}
.y62{bottom:895.290000px;}
.yd3{bottom:896.550000px;}
.yfd{bottom:899.610000px;}
.y1b7{bottom:904.650000px;}
.y19a{bottom:904.830000px;}
.y8f{bottom:907.350000px;}
.y147{bottom:909.510000px;}
.y13f{bottom:909.690000px;}
.yfc{bottom:913.110000px;}
.y61{bottom:916.530000px;}
.yd2{bottom:917.790000px;}
.ye{bottom:921.750000px;}
.y199{bottom:925.710000px;}
.yfa{bottom:926.610000px;}
.y8e{bottom:928.590000px;}
.y13e{bottom:934.530000px;}
.y60{bottom:937.770000px;}
.yd1{bottom:939.030000px;}
.yf9{bottom:942.630000px;}
.y198{bottom:946.950000px;}
.y8d{bottom:949.830000px;}
.yb4{bottom:950.010000px;}
.yf8{bottom:954.510000px;}
.y5f{bottom:959.010000px;}
.y1b6{bottom:959.190000px;}
.yd{bottom:964.950000px;}
.y8c{bottom:971.070000px;}
.yd0{bottom:972.330000px;}
.yf7{bottom:973.590000px;}
.y5e{bottom:980.250000px;}
.y197{bottom:980.430000px;}
.y13d{bottom:984.030000px;}
.yc{bottom:990.690000px;}
.y8b{bottom:992.130000px;}
.ycf{bottom:993.390000px;}
.yf6{bottom:995.730000px;}
.y5d{bottom:1001.490000px;}
.y13c{bottom:1007.430000px;}
.y8a{bottom:1013.370000px;}
.yce{bottom:1013.730000px;}
.yb{bottom:1016.070000px;}
.y13b{bottom:1019.310000px;}
.y5c{bottom:1022.550000px;}
.y13a{bottom:1031.010000px;}
.y3{bottom:1033.710000px;}
.y89{bottom:1034.610000px;}
.yf5{bottom:1034.790000px;}
.y137{bottom:1042.710000px;}
.y5b{bottom:1043.790000px;}
.y139{bottom:1054.410000px;}
.y88{bottom:1055.850000px;}
.y1b5{bottom:1056.030000px;}
.y136{bottom:1068.090000px;}
.y87{bottom:1077.120000px;}
.y5a{bottom:1077.300000px;}
.y135{bottom:1078.740000px;}
.y59{bottom:1096.560000px;}
.y58{bottom:1119.780000px;}
.hd{height:5.023125px;}
.h14{height:10.674141px;}
.h26{height:10.979850px;}
.h25{height:10.980000px;}
.h21{height:12.600000px;}
.h23{height:12.636000px;}
.h22{height:12.780000px;}
.h15{height:15.697266px;}
.h6{height:16.497422px;}
.h4{height:18.945352px;}
.h8{height:20.720391px;}
.h29{height:22.680000px;}
.h2b{height:22.860000px;}
.h19{height:24.702891px;}
.he{height:26.371406px;}
.hc{height:26.768672px;}
.hf{height:26.948672px;}
.h1b{height:31.394531px;}
.h2d{height:34.380000px;}
.h2c{height:34.560000px;}
.h3{height:37.494141px;}
.h10{height:42.068672px;}
.h1e{height:43.506914px;}
.h9{height:44.112305px;}
.h2e{height:44.119688px;}
.h16{height:44.580234px;}
.h7{height:47.091797px;}
.h1a{height:48.761719px;}
.h17{height:48.817617px;}
.h18{height:52.114922px;}
.h28{height:54.111094px;}
.h12{height:58.816406px;}
.h1{height:60.855469px;}
.h1f{height:61.329023px;}
.ha{height:62.789062px;}
.h5{height:67.869141px;}
.h20{height:73.463203px;}
.hb{height:78.225820px;}
.h27{height:83.509453px;}
.h1d{height:92.434922px;}
.h24{height:94.183594px;}
.h1c{height:96.444141px;}
.h13{height:98.223398px;}
.h2{height:99.576000px;}
.h2a{height:136.252266px;}
.h2f{height:137.556000px;}
.h11{height:534.855000px;}
.h0{height:1188.000000px;}
.wf{width:60.336000px;}
.w12{width:64.836000px;}
.w13{width:65.520000px;}
.w6{width:66.240000px;}
.w10{width:66.600000px;}
.wa{width:69.696000px;}
.w16{width:70.740000px;}
.w11{width:70.920000px;}
.w14{width:72.360000px;}
.w24{width:76.176000px;}
.w15{width:77.256000px;}
.wb{width:104.040000px;}
.w25{width:105.480000px;}
.w26{width:105.660000px;}
.w20{width:142.236000px;}
.w8{width:146.340000px;}
.wc{width:148.860000px;}
.w1f{width:153.540000px;}
.w1d{width:153.930000px;}
.w7{width:154.650000px;}
.w9{width:158.970000px;}
.w2{width:168.150000px;}
.w19{width:179.490000px;}
.w22{width:182.370000px;}
.w23{width:182.550000px;}
.w1b{width:217.470000px;}
.w17{width:220.530000px;}
.w4{width:221.970000px;}
.wd{width:265.035000px;}
.w1a{width:277.950000px;}
.w1e{width:285.150000px;}
.we{width:288.030000px;}
.w27{width:296.490000px;}
.w21{width:365.655000px;}
.w28{width:383.970000px;}
.w1c{width:439.995000px;}
.w18{width:458.175000px;}
.w5{width:586.545000px;}
.w3{width:640.545000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.x22{left:10.080000px;}
.x1{left:53.999986px;}
.x19{left:59.940000px;}
.x30{left:65.160000px;}
.x2e{left:70.590000px;}
.x17{left:76.365000px;}
.x33{left:80.999986px;}
.xb{left:98.130000px;}
.x8{left:101.375986px;}
.x9{left:103.355986px;}
.x10{left:107.135986px;}
.x5{left:108.945000px;}
.xc{left:112.170000px;}
.x20{left:117.935986px;}
.x21{left:119.376000px;}
.x26{left:128.555986px;}
.x27{left:129.996000px;}
.x2{left:137.730000px;}
.x2d{left:143.130000px;}
.xf{left:154.469986px;}
.x29{left:158.430000px;}
.x24{left:166.710000px;}
.x11{left:174.270000px;}
.x6{left:182.385000px;}
.x7{left:213.885000px;}
.x3{left:222.870000px;}
.x16{left:256.890000px;}
.xd{left:276.870000px;}
.x2b{left:281.910000px;}
.x1a{left:317.955000px;}
.x4{left:320.295000px;}
.x12{left:329.655000px;}
.x23{left:340.635000px;}
.x28{left:348.195000px;}
.x1b{left:385.275000px;}
.x2c{left:424.875000px;}
.x1c{left:457.095000px;}
.xe{left:475.274986px;}
.x13{left:476.715000px;}
.x34{left:481.245000px;}
.x31{left:501.765000px;}
.x2a{left:503.025000px;}
.x25{left:520.845000px;}
.x18{left:522.825000px;}
.x1d{left:589.065000px;}
.x2f{left:607.965000px;}
.x14{left:636.405000px;}
.x1e{left:662.145000px;}
.x32{left:684.870000px;}
.x15{left:706.830000px;}
.x1f{left:740.130000px;}
@media print{
.v2{vertical-align:-13.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.v4{vertical-align:35.840000pt;}
.v3{vertical-align:40.960000pt;}
.ls24{letter-spacing:-1.754667pt;}
.ls1d{letter-spacing:-1.344000pt;}
.ls30{letter-spacing:-1.002667pt;}
.ls2e{letter-spacing:-0.757333pt;}
.ls23{letter-spacing:-0.672000pt;}
.ls2f{letter-spacing:-0.365333pt;}
.ls31{letter-spacing:-0.361067pt;}
.lsb{letter-spacing:-0.288000pt;}
.ls1f{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.191467pt;}
.ls10{letter-spacing:-0.168533pt;}
.lsc{letter-spacing:-0.158933pt;}
.ls2a{letter-spacing:-0.142933pt;}
.ls1e{letter-spacing:-0.128000pt;}
.ls2d{letter-spacing:-0.115200pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls28{letter-spacing:-0.049280pt;}
.ls2b{letter-spacing:-0.046720pt;}
.ls20{letter-spacing:-0.032000pt;}
.ls21{letter-spacing:-0.000001pt;}
.ls9{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.013440pt;}
.ls1b{letter-spacing:0.032000pt;}
.ls11{letter-spacing:0.037120pt;}
.ls16{letter-spacing:0.044160pt;}
.ls17{letter-spacing:0.061867pt;}
.ls25{letter-spacing:0.062080pt;}
.lse{letter-spacing:0.074133pt;}
.ls7{letter-spacing:0.077333pt;}
.ls18{letter-spacing:0.096000pt;}
.ls1c{letter-spacing:0.106880pt;}
.ls1{letter-spacing:0.112000pt;}
.ls5{letter-spacing:0.117120pt;}
.ls14{letter-spacing:0.117867pt;}
.ls1a{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.167467pt;}
.ls32{letter-spacing:0.194133pt;}
.ls3{letter-spacing:0.224000pt;}
.ls22{letter-spacing:0.238933pt;}
.ls26{letter-spacing:0.259200pt;}
.ls27{letter-spacing:0.274560pt;}
.ls2c{letter-spacing:0.278933pt;}
.ls8{letter-spacing:0.287467pt;}
.ls19{letter-spacing:0.288000pt;}
.ls4{letter-spacing:0.293120pt;}
.ls2{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.481067pt;}
.ls29{letter-spacing:0.682667pt;}
.ls6{letter-spacing:0.752000pt;}
.ls12{letter-spacing:65.833600pt;}
.ws6{word-spacing:-13.620587pt;}
.ws1d{word-spacing:-13.572053pt;}
.ws2d{word-spacing:-13.527253pt;}
.ws5{word-spacing:-13.410453pt;}
.ws10{word-spacing:-13.394987pt;}
.wsa{word-spacing:-13.370240pt;}
.ws22{word-spacing:-13.346560pt;}
.ws7{word-spacing:-13.333120pt;}
.ws24{word-spacing:-13.286400pt;}
.ws21{word-spacing:-13.218987pt;}
.ws23{word-spacing:-13.190187pt;}
.ws9{word-spacing:-13.164587pt;}
.wsc{word-spacing:-12.863147pt;}
.ws26{word-spacing:-12.815253pt;}
.ws28{word-spacing:-12.795520pt;}
.wsf{word-spacing:-12.739840pt;}
.wsb{word-spacing:-12.695680pt;}
.ws25{word-spacing:-12.580480pt;}
.ws4{word-spacing:-12.536320pt;}
.ws20{word-spacing:-12.487040pt;}
.ws27{word-spacing:-12.421120pt;}
.wsd{word-spacing:-12.217600pt;}
.ws2c{word-spacing:-12.175253pt;}
.ws2a{word-spacing:-12.170987pt;}
.ws1{word-spacing:-12.048000pt;}
.ws29{word-spacing:-11.778987pt;}
.wse{word-spacing:-11.697920pt;}
.ws2b{word-spacing:-11.533653pt;}
.ws2{word-spacing:-11.472000pt;}
.ws3{word-spacing:-11.405440pt;}
.ws16{word-spacing:-11.328000pt;}
.ws1a{word-spacing:-8.320000pt;}
.ws14{word-spacing:-8.256000pt;}
.ws15{word-spacing:-8.160000pt;}
.ws17{word-spacing:-8.128000pt;}
.ws12{word-spacing:-8.032000pt;}
.ws1c{word-spacing:-8.031999pt;}
.ws1b{word-spacing:-8.000000pt;}
.ws19{word-spacing:-7.968000pt;}
.ws13{word-spacing:-7.552000pt;}
.ws1e{word-spacing:-7.424000pt;}
.ws1f{word-spacing:-7.360000pt;}
.ws18{word-spacing:-7.296000pt;}
.ws0{word-spacing:-6.746880pt;}
.ws11{word-spacing:-6.688000pt;}
.ws8{word-spacing:0.000000pt;}
._2f{margin-left:-5.996800pt;}
._8{margin-left:-4.858880pt;}
._7{margin-left:-3.885440pt;}
._20{margin-left:-2.946560pt;}
._3{margin-left:-2.048000pt;}
._0{margin-left:-0.898560pt;}
._1{width:0.906667pt;}
._10{width:2.493013pt;}
._13{width:3.552213pt;}
._b{width:5.258880pt;}
._c{width:6.664320pt;}
._d{width:8.392960pt;}
._e{width:9.713280pt;}
._f{width:10.942720pt;}
._a{width:12.148480pt;}
._2e{width:13.482453pt;}
._9{width:14.487253pt;}
._14{width:15.476053pt;}
._16{width:16.679467pt;}
._11{width:17.848320pt;}
._12{width:18.950400pt;}
._1c{width:20.322560pt;}
._1f{width:21.543040pt;}
._2{width:22.512000pt;}
._5{width:24.094507pt;}
._4{width:25.703467pt;}
._15{width:27.356160pt;}
._1d{width:28.926720pt;}
._23{width:29.829760pt;}
._22{width:31.391573pt;}
._18{width:32.746880pt;}
._19{width:34.290560pt;}
._17{width:35.407360pt;}
._1e{width:36.567680pt;}
._21{width:38.173867pt;}
._27{width:41.516160pt;}
._28{width:43.906560pt;}
._2b{width:45.103573pt;}
._25{width:47.272320pt;}
._24{width:48.541867pt;}
._26{width:51.241600pt;}
._1a{width:52.371840pt;}
._1b{width:54.443520pt;}
._2c{width:55.930880pt;}
._2d{width:56.940160pt;}
._31{width:59.441280pt;}
._30{width:60.556800pt;}
._32{width:61.477547pt;}
._29{width:63.603200pt;}
._2a{width:64.641493pt;}
._6{width:65.962240pt;}
._33{width:67.506560pt;}
.fs9{font-size:5.120000pt;}
.fsb{font-size:10.880000pt;}
.fsc{font-size:16.000000pt;}
.fs3{font-size:21.120000pt;}
.fs7{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fs8{font-size:42.880000pt;}
.fsd{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fsf{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fse{font-size:96.000000pt;}
.fsa{font-size:106.880000pt;}
.fs10{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y118{bottom:2.080000pt;}
.yfb{bottom:3.520000pt;}
.yff{bottom:3.680000pt;}
.y53{bottom:4.160000pt;}
.ya{bottom:6.080000pt;}
.y138{bottom:7.360000pt;}
.y11a{bottom:9.760000pt;}
.y109{bottom:11.360000pt;}
.y15e{bottom:12.480000pt;}
.y167{bottom:12.640000pt;}
.y9{bottom:14.240000pt;}
.y1de{bottom:15.400000pt;}
.y34{bottom:21.280000pt;}
.y52{bottom:21.440000pt;}
.y8{bottom:27.040000pt;}
.y1dd{bottom:33.960000pt;}
.y33{bottom:35.200000pt;}
.y7{bottom:35.386667pt;}
.y51{bottom:36.000000pt;}
.y50{bottom:45.920000pt;}
.y6{bottom:48.026667pt;}
.y32{bottom:48.960000pt;}
.y2{bottom:52.320000pt;}
.y1dc{bottom:52.840000pt;}
.y5{bottom:56.986667pt;}
.y4f{bottom:59.040000pt;}
.y31{bottom:62.760000pt;}
.y4e{bottom:63.880000pt;}
.y1{bottom:70.912000pt;}
.y1db{bottom:71.720000pt;}
.y30{bottom:74.920000pt;}
.y4{bottom:76.346667pt;}
.y4d{bottom:80.200000pt;}
.y2f{bottom:83.240000pt;}
.y1da{bottom:90.600000pt;}
.y2e{bottom:95.080000pt;}
.y4c{bottom:96.360000pt;}
.y2d{bottom:99.400000pt;}
.y57{bottom:101.152000pt;}
.y2c{bottom:105.160000pt;}
.y174{bottom:106.112000pt;}
.y17a{bottom:107.392000pt;}
.y1d9{bottom:109.480000pt;}
.y4b{bottom:112.680000pt;}
.y134{bottom:112.992000pt;}
.y12c{bottom:113.792000pt;}
.y1cf{bottom:116.192000pt;}
.y86{bottom:116.992000pt;}
.yb3{bottom:117.632000pt;}
.yf4{bottom:117.792000pt;}
.ycd{bottom:120.192000pt;}
.y196{bottom:121.632000pt;}
.y1b4{bottom:123.552000pt;}
.y2b{bottom:123.880000pt;}
.y173{bottom:124.832000pt;}
.y179{bottom:126.112000pt;}
.y4a{bottom:129.000000pt;}
.y1d7{bottom:130.112000pt;}
.y133{bottom:131.712000pt;}
.y12b{bottom:132.672000pt;}
.y56{bottom:134.426667pt;}
.y85{bottom:135.866667pt;}
.yb2{bottom:136.506667pt;}
.yf3{bottom:136.666667pt;}
.ycc{bottom:139.066667pt;}
.y195{bottom:140.346667pt;}
.y1b3{bottom:142.426667pt;}
.y172{bottom:143.706667pt;}
.y178{bottom:144.986667pt;}
.y49{bottom:145.160000pt;}
.y1ce{bottom:145.786667pt;}
.y2a{bottom:149.160000pt;}
.y132{bottom:150.586667pt;}
.y12a{bottom:151.546667pt;}
.y84{bottom:154.746667pt;}
.yb1{bottom:155.386667pt;}
.yf2{bottom:155.546667pt;}
.ycb{bottom:157.946667pt;}
.y194{bottom:159.226667pt;}
.y1d6{bottom:159.706667pt;}
.y48{bottom:161.480000pt;}
.y171{bottom:162.586667pt;}
.y1cd{bottom:164.506667pt;}
.y55{bottom:167.706667pt;}
.y131{bottom:169.466667pt;}
.y129{bottom:170.266667pt;}
.y1b2{bottom:172.026667pt;}
.y83{bottom:173.626667pt;}
.yb0{bottom:174.266667pt;}
.yf1{bottom:174.426667pt;}
.y177{bottom:174.746667pt;}
.yca{bottom:176.826667pt;}
.y47{bottom:177.800000pt;}
.y170{bottom:181.466667pt;}
.y1cc{bottom:183.226667pt;}
.y29{bottom:185.960000pt;}
.y130{bottom:188.186667pt;}
.y193{bottom:188.986667pt;}
.y128{bottom:189.146667pt;}
.y1b1{bottom:190.746667pt;}
.y176{bottom:192.346667pt;}
.y82{bottom:192.506667pt;}
.yaf{bottom:193.146667pt;}
.yf0{bottom:193.306667pt;}
.y46{bottom:194.120000pt;}
.yc9{bottom:195.706667pt;}
.y16f{bottom:200.346667pt;}
.y54{bottom:200.986667pt;}
.y28{bottom:201.160000pt;}
.y12f{bottom:207.066667pt;}
.y192{bottom:207.706667pt;}
.y127{bottom:208.026667pt;}
.y1b0{bottom:209.626667pt;}
.y45{bottom:210.280000pt;}
.y81{bottom:211.386667pt;}
.yae{bottom:212.026667pt;}
.yef{bottom:212.186667pt;}
.y1cb{bottom:212.986667pt;}
.yc8{bottom:214.426667pt;}
.y18{bottom:216.026667pt;}
.y1d5{bottom:218.746667pt;}
.y16e{bottom:219.226667pt;}
.y175{bottom:219.386667pt;}
.y12e{bottom:225.946667pt;}
.y44{bottom:226.600000pt;}
.y126{bottom:226.906667pt;}
.y1af{bottom:228.506667pt;}
.y80{bottom:230.106667pt;}
.yad{bottom:230.746667pt;}
.yee{bottom:230.906667pt;}
.y1ca{bottom:231.706667pt;}
.y27{bottom:235.560000pt;}
.y191{bottom:237.306667pt;}
.y16d{bottom:237.946667pt;}
.y43{bottom:242.920000pt;}
.y125{bottom:243.706667pt;}
.yc7{bottom:244.186667pt;}
.y12d{bottom:244.826667pt;}
.y1d4{bottom:248.186667pt;}
.y7f{bottom:248.986667pt;}
.yac{bottom:249.626667pt;}
.yed{bottom:249.786667pt;}
.y26{bottom:253.960000pt;}
.y190{bottom:256.026667pt;}
.y16c{bottom:256.826667pt;}
.y1ae{bottom:258.106667pt;}
.y42{bottom:259.240000pt;}
.y1c9{bottom:261.306667pt;}
.yc6{bottom:262.906667pt;}
.y124{bottom:263.706667pt;}
.y7e{bottom:267.866667pt;}
.yab{bottom:268.506667pt;}
.yec{bottom:268.666667pt;}
.y25{bottom:268.680000pt;}
.y1d8{bottom:273.146667pt;}
.y41{bottom:275.400000pt;}
.y1ad{bottom:276.826667pt;}
.y1d3{bottom:277.786667pt;}
.y16b{bottom:279.586667pt;}
.y1c8{bottom:280.066667pt;}
.yc5{bottom:281.826667pt;}
.y24{bottom:284.360000pt;}
.y18f{bottom:285.666667pt;}
.y123{bottom:286.306667pt;}
.y7d{bottom:286.786667pt;}
.yeb{bottom:287.586667pt;}
.y40{bottom:291.746667pt;}
.y1ac{bottom:295.746667pt;}
.yaa{bottom:298.306667pt;}
.y16a{bottom:300.546667pt;}
.yc4{bottom:300.706667pt;}
.y23{bottom:302.786667pt;}
.y18e{bottom:304.386667pt;}
.y7c{bottom:305.666667pt;}
.yea{bottom:306.466667pt;}
.y1d2{bottom:307.266667pt;}
.y3f{bottom:308.066667pt;}
.y122{bottom:308.706667pt;}
.y1c7{bottom:309.826667pt;}
.y169{bottom:310.946667pt;}
.ya9{bottom:316.386667pt;}
.y121{bottom:317.186667pt;}
.y22{bottom:317.506667pt;}
.y120{bottom:320.386667pt;}
.y166{bottom:321.346667pt;}
.y18d{bottom:323.266667pt;}
.y3e{bottom:324.226667pt;}
.y7b{bottom:324.546667pt;}
.ye9{bottom:325.346667pt;}
.y1c6{bottom:328.386667pt;}
.y11f{bottom:330.786667pt;}
.yc3{bottom:331.906667pt;}
.y21{bottom:333.186667pt;}
.ya8{bottom:333.826667pt;}
.y1d1{bottom:336.866667pt;}
.y3d{bottom:340.546667pt;}
.yc2{bottom:340.866667pt;}
.y11e{bottom:341.186667pt;}
.y18c{bottom:342.146667pt;}
.y168{bottom:342.306667pt;}
.y7a{bottom:343.266667pt;}
.ye8{bottom:344.066667pt;}
.y1c5{bottom:347.266667pt;}
.y20{bottom:351.586667pt;}
.ya7{bottom:352.706667pt;}
.y3c{bottom:356.866667pt;}
.y79{bottom:362.146667pt;}
.ye7{bottom:362.946667pt;}
.y165{bottom:363.106667pt;}
.y1f{bottom:366.306667pt;}
.ya6{bottom:371.586667pt;}
.y18b{bottom:371.746667pt;}
.y11d{bottom:372.546667pt;}
.y3b{bottom:373.186667pt;}
.y164{bottom:373.506667pt;}
.y1c4{bottom:377.026667pt;}
.yc1{bottom:378.786667pt;}
.y78{bottom:381.026667pt;}
.ye6{bottom:381.826667pt;}
.y1e{bottom:382.146667pt;}
.y11c{bottom:382.946667pt;}
.y161{bottom:384.066667pt;}
.y3a{bottom:389.346667pt;}
.ya5{bottom:390.466667pt;}
.y11b{bottom:393.346667pt;}
.y163{bottom:394.466667pt;}
.y1c3{bottom:395.746667pt;}
.y1d0{bottom:395.906667pt;}
.yc0{bottom:397.346667pt;}
.y77{bottom:399.906667pt;}
.y1d{bottom:400.546667pt;}
.ye5{bottom:400.706667pt;}
.y119{bottom:403.746667pt;}
.y162{bottom:404.866667pt;}
.y39{bottom:405.666667pt;}
.ya4{bottom:409.346667pt;}
.y117{bottom:414.306667pt;}
.y1c{bottom:415.106667pt;}
.y15d{bottom:415.266667pt;}
.ybf{bottom:416.226667pt;}
.y76{bottom:418.786667pt;}
.ye4{bottom:419.586667pt;}
.y38{bottom:421.986667pt;}
.y1c2{bottom:425.346667pt;}
.y160{bottom:425.666667pt;}
.y116{bottom:427.106667pt;}
.ya3{bottom:428.226667pt;}
.y1ab{bottom:430.306667pt;}
.y1b{bottom:430.946667pt;}
.ybe{bottom:435.106667pt;}
.y15f{bottom:436.226667pt;}
.y75{bottom:437.666667pt;}
.y37{bottom:438.306667pt;}
.y18a{bottom:439.106667pt;}
.ya2{bottom:446.946667pt;}
.y15c{bottom:448.386667pt;}
.y1aa{bottom:449.026667pt;}
.ye3{bottom:449.186667pt;}
.y1a{bottom:449.346667pt;}
.y36{bottom:452.706667pt;}
.ybd{bottom:453.986667pt;}
.y115{bottom:454.466667pt;}
.y1c1{bottom:454.946667pt;}
.y74{bottom:456.386667pt;}
.y15b{bottom:457.666667pt;}
.y35{bottom:462.626667pt;}
.y19{bottom:463.906667pt;}
.ya1{bottom:465.826667pt;}
.ybc{bottom:472.866667pt;}
.y114{bottom:473.186667pt;}
.y15a{bottom:474.466667pt;}
.y73{bottom:475.266667pt;}
.y189{bottom:476.546667pt;}
.y1a9{bottom:478.626667pt;}
.ye2{bottom:478.786667pt;}
.y1c0{bottom:484.386667pt;}
.ya0{bottom:484.706667pt;}
.ybb{bottom:491.746667pt;}
.y159{bottom:491.906667pt;}
.y72{bottom:494.146667pt;}
.y188{bottom:495.426667pt;}
.y1a8{bottom:497.346667pt;}
.ye1{bottom:498.786667pt;}
.y9f{bottom:503.613333pt;}
.y112{bottom:505.053333pt;}
.y113{bottom:505.213333pt;}
.yba{bottom:510.493333pt;}
.y158{bottom:510.813333pt;}
.y71{bottom:513.053333pt;}
.y1bf{bottom:514.013333pt;}
.y187{bottom:514.333333pt;}
.ye0{bottom:522.333333pt;}
.y9e{bottom:522.493333pt;}
.y111{bottom:523.933333pt;}
.y157{bottom:524.253333pt;}
.y1a7{bottom:527.133333pt;}
.yb9{bottom:529.373333pt;}
.y70{bottom:531.933333pt;}
.y156{bottom:534.653333pt;}
.ydf{bottom:541.213333pt;}
.y9d{bottom:541.373333pt;}
.y110{bottom:542.813333pt;}
.y1be{bottom:543.453333pt;}
.y186{bottom:543.933333pt;}
.y155{bottom:545.213333pt;}
.y1a6{bottom:545.853333pt;}
.yb8{bottom:548.253333pt;}
.y6f{bottom:550.813333pt;}
.y154{bottom:555.613333pt;}
.y9c{bottom:560.093333pt;}
.y10f{bottom:561.693333pt;}
.y185{bottom:562.653333pt;}
.y1a5{bottom:564.573333pt;}
.y153{bottom:566.013333pt;}
.yb7{bottom:567.133333pt;}
.y6e{bottom:569.533333pt;}
.y1bd{bottom:573.053333pt;}
.y152{bottom:576.413333pt;}
.yde{bottom:578.813333pt;}
.y9b{bottom:578.973333pt;}
.y10e{bottom:580.413333pt;}
.y184{bottom:581.533333pt;}
.y150{bottom:586.813333pt;}
.y6d{bottom:588.413333pt;}
.y1a4{bottom:594.333333pt;}
.yb6{bottom:596.733333pt;}
.y151{bottom:597.373333pt;}
.y9a{bottom:597.853333pt;}
.y10d{bottom:599.293333pt;}
.y1bc{bottom:602.493333pt;}
.y6c{bottom:607.293333pt;}
.ydd{bottom:608.573333pt;}
.y14f{bottom:609.533333pt;}
.y183{bottom:611.293333pt;}
.y1a3{bottom:613.053333pt;}
.y99{bottom:616.733333pt;}
.y10c{bottom:618.173333pt;}
.y14e{bottom:618.813333pt;}
.y6b{bottom:626.173333pt;}
.yb5{bottom:626.333333pt;}
.ydc{bottom:627.293333pt;}
.y182{bottom:627.453333pt;}
.y1a2{bottom:631.933333pt;}
.y1bb{bottom:632.093333pt;}
.y98{bottom:635.613333pt;}
.y14d{bottom:636.253333pt;}
.y10b{bottom:637.053333pt;}
.y181{bottom:642.653333pt;}
.y6a{bottom:645.053333pt;}
.ydb{bottom:646.173333pt;}
.y1a1{bottom:650.653333pt;}
.y97{bottom:654.493333pt;}
.y10a{bottom:656.253333pt;}
.y69{bottom:663.933333pt;}
.yda{bottom:664.893333pt;}
.y146{bottom:665.853333pt;}
.y14c{bottom:666.013333pt;}
.y1a0{bottom:669.533333pt;}
.y180{bottom:674.653333pt;}
.y108{bottom:679.773333pt;}
.y68{bottom:682.653333pt;}
.yd9{bottom:683.773333pt;}
.y96{bottom:684.093333pt;}
.y145{bottom:684.573333pt;}
.y19f{bottom:688.413333pt;}
.y107{bottom:691.773333pt;}
.y17f{bottom:693.373333pt;}
.y17{bottom:697.693333pt;}
.y1ba{bottom:699.293333pt;}
.y67{bottom:701.533333pt;}
.y95{bottom:702.173333pt;}
.yd8{bottom:702.653333pt;}
.y144{bottom:703.453333pt;}
.y106{bottom:703.773333pt;}
.y16{bottom:704.733333pt;}
.y17e{bottom:712.253333pt;}
.y15{bottom:712.413333pt;}
.y105{bottom:715.773333pt;}
.y1b9{bottom:718.013333pt;}
.y19e{bottom:718.173333pt;}
.y14{bottom:719.453333pt;}
.y94{bottom:719.773333pt;}
.y66{bottom:720.413333pt;}
.y12{bottom:721.053333pt;}
.yd7{bottom:721.533333pt;}
.y143{bottom:722.333333pt;}
.y13{bottom:722.813333pt;}
.y104{bottom:727.813333pt;}
.y11{bottom:728.773333pt;}
.y17d{bottom:731.173333pt;}
.y14b{bottom:733.253333pt;}
.y19d{bottom:736.773333pt;}
.y93{bottom:738.693333pt;}
.y65{bottom:739.333333pt;}
.y103{bottom:739.653333pt;}
.yd6{bottom:740.453333pt;}
.y142{bottom:741.253333pt;}
.y17c{bottom:750.053333pt;}
.y102{bottom:751.653333pt;}
.y14a{bottom:751.973333pt;}
.y10{bottom:752.453333pt;}
.y19c{bottom:755.653333pt;}
.y92{bottom:757.573333pt;}
.y64{bottom:758.213333pt;}
.yd5{bottom:759.333333pt;}
.y141{bottom:760.133333pt;}
.y101{bottom:763.653333pt;}
.y17b{bottom:768.773333pt;}
.y149{bottom:770.693333pt;}
.y19b{bottom:774.533333pt;}
.y100{bottom:775.653333pt;}
.y91{bottom:776.453333pt;}
.y63{bottom:777.093333pt;}
.yd4{bottom:778.053333pt;}
.y140{bottom:779.013333pt;}
.y1b8{bottom:785.413333pt;}
.yfe{bottom:787.653333pt;}
.yf{bottom:789.253333pt;}
.y148{bottom:789.573333pt;}
.y90{bottom:792.773333pt;}
.y62{bottom:795.813333pt;}
.yd3{bottom:796.933333pt;}
.yfd{bottom:799.653333pt;}
.y1b7{bottom:804.133333pt;}
.y19a{bottom:804.293333pt;}
.y8f{bottom:806.533333pt;}
.y147{bottom:808.453333pt;}
.y13f{bottom:808.613333pt;}
.yfc{bottom:811.653333pt;}
.y61{bottom:814.693333pt;}
.yd2{bottom:815.813333pt;}
.ye{bottom:819.333333pt;}
.y199{bottom:822.853333pt;}
.yfa{bottom:823.653333pt;}
.y8e{bottom:825.413333pt;}
.y13e{bottom:830.693333pt;}
.y60{bottom:833.573333pt;}
.yd1{bottom:834.693333pt;}
.yf9{bottom:837.893333pt;}
.y198{bottom:841.733333pt;}
.y8d{bottom:844.293333pt;}
.yb4{bottom:844.453333pt;}
.yf8{bottom:848.453333pt;}
.y5f{bottom:852.453333pt;}
.y1b6{bottom:852.613333pt;}
.yd{bottom:857.733333pt;}
.y8c{bottom:863.173333pt;}
.yd0{bottom:864.293333pt;}
.yf7{bottom:865.413333pt;}
.y5e{bottom:871.333333pt;}
.y197{bottom:871.493333pt;}
.y13d{bottom:874.693333pt;}
.yc{bottom:880.613333pt;}
.y8b{bottom:881.893333pt;}
.ycf{bottom:883.013333pt;}
.yf6{bottom:885.093333pt;}
.y5d{bottom:890.213333pt;}
.y13c{bottom:895.493333pt;}
.y8a{bottom:900.773333pt;}
.yce{bottom:901.093333pt;}
.yb{bottom:903.173333pt;}
.y13b{bottom:906.053333pt;}
.y5c{bottom:908.933333pt;}
.y13a{bottom:916.453333pt;}
.y3{bottom:918.853333pt;}
.y89{bottom:919.653333pt;}
.yf5{bottom:919.813333pt;}
.y137{bottom:926.853333pt;}
.y5b{bottom:927.813333pt;}
.y139{bottom:937.253333pt;}
.y88{bottom:938.533333pt;}
.y1b5{bottom:938.693333pt;}
.y136{bottom:949.413333pt;}
.y87{bottom:957.440000pt;}
.y5a{bottom:957.600000pt;}
.y135{bottom:958.880000pt;}
.y59{bottom:974.720000pt;}
.y58{bottom:995.360000pt;}
.hd{height:4.465000pt;}
.h14{height:9.488125pt;}
.h26{height:9.759867pt;}
.h25{height:9.760000pt;}
.h21{height:11.200000pt;}
.h23{height:11.232000pt;}
.h22{height:11.360000pt;}
.h15{height:13.953125pt;}
.h6{height:14.664375pt;}
.h4{height:16.840312pt;}
.h8{height:18.418125pt;}
.h29{height:20.160000pt;}
.h2b{height:20.320000pt;}
.h19{height:21.958125pt;}
.he{height:23.441250pt;}
.hc{height:23.794375pt;}
.hf{height:23.954375pt;}
.h1b{height:27.906250pt;}
.h2d{height:30.560000pt;}
.h2c{height:30.720000pt;}
.h3{height:33.328125pt;}
.h10{height:37.394375pt;}
.h1e{height:38.672812pt;}
.h9{height:39.210938pt;}
.h2e{height:39.217500pt;}
.h16{height:39.626875pt;}
.h7{height:41.859375pt;}
.h1a{height:43.343750pt;}
.h17{height:43.393438pt;}
.h18{height:46.324375pt;}
.h28{height:48.098750pt;}
.h12{height:52.281250pt;}
.h1{height:54.093750pt;}
.h1f{height:54.514687pt;}
.ha{height:55.812500pt;}
.h5{height:60.328125pt;}
.h20{height:65.300625pt;}
.hb{height:69.534063pt;}
.h27{height:74.230625pt;}
.h1d{height:82.164375pt;}
.h24{height:83.718750pt;}
.h1c{height:85.728125pt;}
.h13{height:87.309687pt;}
.h2{height:88.512000pt;}
.h2a{height:121.113125pt;}
.h2f{height:122.272000pt;}
.h11{height:475.426667pt;}
.h0{height:1056.000000pt;}
.wf{width:53.632000pt;}
.w12{width:57.632000pt;}
.w13{width:58.240000pt;}
.w6{width:58.880000pt;}
.w10{width:59.200000pt;}
.wa{width:61.952000pt;}
.w16{width:62.880000pt;}
.w11{width:63.040000pt;}
.w14{width:64.320000pt;}
.w24{width:67.712000pt;}
.w15{width:68.672000pt;}
.wb{width:92.480000pt;}
.w25{width:93.760000pt;}
.w26{width:93.920000pt;}
.w20{width:126.432000pt;}
.w8{width:130.080000pt;}
.wc{width:132.320000pt;}
.w1f{width:136.480000pt;}
.w1d{width:136.826667pt;}
.w7{width:137.466667pt;}
.w9{width:141.306667pt;}
.w2{width:149.466667pt;}
.w19{width:159.546667pt;}
.w22{width:162.106667pt;}
.w23{width:162.266667pt;}
.w1b{width:193.306667pt;}
.w17{width:196.026667pt;}
.w4{width:197.306667pt;}
.wd{width:235.586667pt;}
.w1a{width:247.066667pt;}
.w1e{width:253.466667pt;}
.we{width:256.026667pt;}
.w27{width:263.546667pt;}
.w21{width:325.026667pt;}
.w28{width:341.306667pt;}
.w1c{width:391.106667pt;}
.w18{width:407.266667pt;}
.w5{width:521.373333pt;}
.w3{width:569.373333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.x22{left:8.960000pt;}
.x1{left:47.999988pt;}
.x19{left:53.280000pt;}
.x30{left:57.920000pt;}
.x2e{left:62.746667pt;}
.x17{left:67.880000pt;}
.x33{left:71.999988pt;}
.xb{left:87.226667pt;}
.x8{left:90.111988pt;}
.x9{left:91.871988pt;}
.x10{left:95.231988pt;}
.x5{left:96.840000pt;}
.xc{left:99.706667pt;}
.x20{left:104.831988pt;}
.x21{left:106.112000pt;}
.x26{left:114.271988pt;}
.x27{left:115.552000pt;}
.x2{left:122.426667pt;}
.x2d{left:127.226667pt;}
.xf{left:137.306655pt;}
.x29{left:140.826667pt;}
.x24{left:148.186667pt;}
.x11{left:154.906667pt;}
.x6{left:162.120000pt;}
.x7{left:190.120000pt;}
.x3{left:198.106667pt;}
.x16{left:228.346667pt;}
.xd{left:246.106667pt;}
.x2b{left:250.586667pt;}
.x1a{left:282.626667pt;}
.x4{left:284.706667pt;}
.x12{left:293.026667pt;}
.x23{left:302.786667pt;}
.x28{left:309.506667pt;}
.x1b{left:342.466667pt;}
.x2c{left:377.666667pt;}
.x1c{left:406.306667pt;}
.xe{left:422.466655pt;}
.x13{left:423.746667pt;}
.x34{left:427.773333pt;}
.x31{left:446.013333pt;}
.x2a{left:447.133333pt;}
.x25{left:462.973333pt;}
.x18{left:464.733333pt;}
.x1d{left:523.613333pt;}
.x2f{left:540.413333pt;}
.x14{left:565.693333pt;}
.x1e{left:588.573333pt;}
.x32{left:608.773333pt;}
.x15{left:628.293333pt;}
.x1f{left:657.893333pt;}
}




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