
    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_e9d3fb2bc15ad0d6fd531ef0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.049805;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_3f9ca3d36f683bdf87644532.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.675781;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_30a3e1fe84e0123efae22016.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.049805;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_0c2d4529a98eaf8fc547e0a2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.853027;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_d4a9d1f7fa61de47d83ed594.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a5437934773b995baef033ca.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.051758;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_12150c775f67fde6fc3a72a9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_c2c4dbcfcb0c7d9d4fa50a61.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_16efc3b4bd6bf88da247bb40.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.073242;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_8bc94a1991b6c645118ed6b2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.677246;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_4192d9ce266b9f57933dd3b4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.694336;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_ec678ab85bcaca71aba7cca3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_e9409b3318926795ee58a8d4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.926270;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_278b5dcf6ba6d122b9268370.woff2')format("woff");}.ffe{font-family:ffe;line-height:2.230469;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_8750867860d7fbcaea32fc31.woff2')format("woff");}.fff{font-family:fff;line-height:0.912598;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_b24b1ae669b54ad1a11f005a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_032cfa609dfcf7562404f4eb.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.912598;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_50ba96543b35c9aaf9310793.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_a16b9af5330e9af10367bca2.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-ms-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-webkit-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.600000px;}
.va{vertical-align:-10.080000px;}
.v7{vertical-align:-2.880000px;}
.v8{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.440000px;}
.v5{vertical-align:2.880000px;}
.v1{vertical-align:24.480000px;}
.vb{vertical-align:34.560000px;}
.v4{vertical-align:36.000000px;}
.v3{vertical-align:41.760000px;}
.v6{vertical-align:47.520000px;}
.vc{vertical-align:72.000000px;}
.ls18{letter-spacing:-3.646944px;}
.ls1d{letter-spacing:-2.467584px;}
.lsf{letter-spacing:-0.463104px;}
.ls37{letter-spacing:-0.459648px;}
.ls9{letter-spacing:-0.417312px;}
.ls1c{letter-spacing:-0.399168px;}
.lse{letter-spacing:-0.381024px;}
.lsd{letter-spacing:-0.338688px;}
.ls10{letter-spacing:-0.328032px;}
.ls17{letter-spacing:-0.320544px;}
.ls1e{letter-spacing:-0.318384px;}
.ls38{letter-spacing:-0.309600px;}
.ls1f{letter-spacing:-0.308736px;}
.ls19{letter-spacing:-0.302400px;}
.ls39{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.260064px;}
.ls24{letter-spacing:-0.254016px;}
.lsb{letter-spacing:-0.241920px;}
.ls1a{letter-spacing:-0.223776px;}
.ls23{letter-spacing:-0.175392px;}
.ls11{letter-spacing:-0.157248px;}
.lsc{letter-spacing:-0.145152px;}
.ls1b{letter-spacing:-0.120960px;}
.ls36{letter-spacing:-0.021600px;}
.ls20{letter-spacing:-0.014400px;}
.lsa{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.007200px;}
.ls25{letter-spacing:0.014400px;}
.ls8{letter-spacing:0.060048px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.119952px;}
.ls5{letter-spacing:0.120096px;}
.ls12{letter-spacing:0.161568px;}
.ls0{letter-spacing:0.190080px;}
.ls16{letter-spacing:0.204336px;}
.ls6{letter-spacing:0.213840px;}
.ls3{letter-spacing:0.223344px;}
.ls4{letter-spacing:0.237600px;}
.ls7{letter-spacing:0.239904px;}
.ls14{letter-spacing:0.242352px;}
.ls27{letter-spacing:0.250560px;}
.ls15{letter-spacing:0.285120px;}
.ls2c{letter-spacing:0.316800px;}
.ls13{letter-spacing:0.356400px;}
.ls35{letter-spacing:0.383040px;}
.ls28{letter-spacing:0.413280px;}
.ls29{letter-spacing:0.473760px;}
.ls2f{letter-spacing:1.005120px;}
.ls2d{letter-spacing:1.928160px;}
.ls2e{letter-spacing:2.021760px;}
.ls33{letter-spacing:2.247840px;}
.ls31{letter-spacing:3.810240px;}
.ls30{letter-spacing:6.497280px;}
.ls32{letter-spacing:9.534240px;}
.ls26{letter-spacing:20.004480px;}
.ls2a{letter-spacing:20.701440px;}
.ls2b{letter-spacing:110.194560px;}
.ls21{letter-spacing:316.792800px;}
.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;}
}
.ws4{word-spacing:-23.791968px;}
.ws3{word-spacing:-23.656896px;}
.ws17{word-spacing:-18.014400px;}
.ws13{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.985600px;}
.ws1{word-spacing:-15.120000px;}
.ws11{word-spacing:-14.974848px;}
.wsf{word-spacing:-14.962752px;}
.ws21{word-spacing:-14.944608px;}
.wse{word-spacing:-14.896224px;}
.ws0{word-spacing:-14.878080px;}
.ws22{word-spacing:-14.859936px;}
.ws20{word-spacing:-14.817600px;}
.ws1e{word-spacing:-14.799456px;}
.wsd{word-spacing:-14.781312px;}
.ws2{word-spacing:-14.738976px;}
.ws15{word-spacing:-14.720832px;}
.ws1f{word-spacing:-14.660352px;}
.ws16{word-spacing:-13.414464px;}
.ws10{word-spacing:-12.652416px;}
.ws6{word-spacing:-12.236400px;}
.ws8{word-spacing:-12.165120px;}
.ws7{word-spacing:-12.122352px;}
.ws9{word-spacing:-12.117600px;}
.wsa{word-spacing:-12.103344px;}
.wsc{word-spacing:-12.093840px;}
.ws5{word-spacing:-12.070080px;}
.wsb{word-spacing:-11.880000px;}
.ws19{word-spacing:-0.433440px;}
.ws1b{word-spacing:-0.072000px;}
.ws1c{word-spacing:-0.050400px;}
.ws14{word-spacing:0.000000px;}
.ws1d{word-spacing:11.933280px;}
.ws18{word-spacing:22.193280px;}
.ws1a{word-spacing:95.379840px;}
._16{margin-left:-4.364208px;}
._b{margin-left:-3.325392px;}
._5{margin-left:-2.165904px;}
._9{margin-left:-1.008000px;}
._0{width:1.028160px;}
._11{width:2.376720px;}
._6{width:3.507840px;}
._10{width:5.304960px;}
._13{width:6.976800px;}
._c{width:8.215200px;}
._12{width:9.595872px;}
._17{width:10.813248px;}
._d{width:12.139776px;}
._7{width:13.217760px;}
._a{width:14.597280px;}
._15{width:15.613920px;}
._18{width:16.774560px;}
._f{width:19.279008px;}
._1b{width:20.378592px;}
._1d{width:22.341600px;}
._19{width:23.349600px;}
._1c{width:24.666048px;}
._1a{width:25.996176px;}
._14{width:28.641600px;}
._20{width:31.334400px;}
._e{width:32.528448px;}
._23{width:33.537600px;}
._1e{width:36.784800px;}
._28{width:40.255200px;}
._24{width:44.337600px;}
._27{width:45.927072px;}
._22{width:55.573632px;}
._1f{width:56.764800px;}
._8{width:93.682080px;}
._25{width:119.232000px;}
._21{width:129.434400px;}
._26{width:169.646400px;}
._4{width:889.210224px;}
._1{width:992.532096px;}
._2{width:1347.131520px;}
._3{width:2703.601152px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs4{font-size:47.520000px;}
.fs6{font-size:50.400000px;}
.fs7{font-size:53.230937px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.ye2{bottom:3.420000px;}
.y104{bottom:3.480000px;}
.y100{bottom:3.540000px;}
.yf3{bottom:3.660000px;}
.y96{bottom:3.780000px;}
.y12d{bottom:3.840000px;}
.yc2{bottom:3.960000px;}
.yac{bottom:4.020000px;}
.yd3{bottom:4.080000px;}
.ye5{bottom:4.140000px;}
.ydf{bottom:4.200000px;}
.y86{bottom:4.260000px;}
.ybf{bottom:4.380000px;}
.y10b{bottom:4.440000px;}
.y99{bottom:4.500000px;}
.y93{bottom:4.560000px;}
.y16c{bottom:4.620000px;}
.yc5{bottom:4.680000px;}
.y164{bottom:4.740000px;}
.ya9{bottom:4.800000px;}
.y3a{bottom:4.860000px;}
.ya0{bottom:4.920000px;}
.y8c{bottom:5.160000px;}
.y8e{bottom:5.220000px;}
.y90{bottom:5.280000px;}
.yed{bottom:5.340000px;}
.y118{bottom:5.400000px;}
.ybc{bottom:5.460000px;}
.ya6{bottom:5.520000px;}
.y9e{bottom:5.580000px;}
.ydc{bottom:5.640000px;}
.y88{bottom:5.760000px;}
.y8a{bottom:5.820000px;}
.ye9{bottom:5.880000px;}
.y11a{bottom:5.940000px;}
.y11b{bottom:6.000000px;}
.yb5{bottom:6.060000px;}
.yb7{bottom:6.120000px;}
.ya4{bottom:6.180000px;}
.yb3{bottom:6.360000px;}
.yb9{bottom:6.420000px;}
.ya2{bottom:6.480000px;}
.yef{bottom:6.540000px;}
.y119{bottom:6.600000px;}
.y108{bottom:6.720000px;}
.yca{bottom:6.780000px;}
.y111{bottom:7.020000px;}
.yf7{bottom:8.100000px;}
.yaf{bottom:10.740000px;}
.y130{bottom:11.700000px;}
.y135{bottom:12.000000px;}
.y13f{bottom:12.240000px;}
.y13b{bottom:12.300000px;}
.y132{bottom:12.420000px;}
.y137{bottom:12.720000px;}
.y12f{bottom:12.840000px;}
.y13d{bottom:13.020000px;}
.y134{bottom:13.140000px;}
.y139{bottom:13.440000px;}
.y10f{bottom:14.880000px;}
.yc7{bottom:16.680000px;}
.yd6{bottom:16.800000px;}
.y106{bottom:16.980000px;}
.y116{bottom:17.940000px;}
.yf9{bottom:18.000000px;}
.yb1{bottom:18.540000px;}
.ye7{bottom:19.140000px;}
.y9b{bottom:19.500000px;}
.y11f{bottom:20.460000px;}
.ye1{bottom:20.700000px;}
.y103{bottom:20.760000px;}
.yff{bottom:20.820000px;}
.yc1{bottom:20.880000px;}
.yf2{bottom:20.940000px;}
.y95{bottom:21.060000px;}
.y12c{bottom:21.120000px;}
.y11d{bottom:21.240000px;}
.yab{bottom:21.300000px;}
.yd2{bottom:21.360000px;}
.ye4{bottom:21.420000px;}
.yde{bottom:21.480000px;}
.y84{bottom:21.540000px;}
.ybe{bottom:21.660000px;}
.y10a{bottom:21.720000px;}
.y98{bottom:21.780000px;}
.y92{bottom:21.840000px;}
.y16b{bottom:21.900000px;}
.yc4{bottom:21.960000px;}
.y173{bottom:22.020000px;}
.ya8{bottom:22.080000px;}
.yd0{bottom:22.140000px;}
.yf6{bottom:25.380000px;}
.yae{bottom:28.020000px;}
.y189{bottom:37.740000px;}
.y12b{bottom:38.040000px;}
.y17d{bottom:38.400000px;}
.y163{bottom:38.940000px;}
.y15d{bottom:39.060000px;}
.y15c{bottom:39.120000px;}
.y16a{bottom:39.180000px;}
.y183{bottom:39.360000px;}
.y4{bottom:53.280000px;}
.y188{bottom:55.020000px;}
.y17c{bottom:55.680000px;}
.y129{bottom:56.040000px;}
.y162{bottom:56.220000px;}
.y170{bottom:56.340000px;}
.y169{bottom:56.460000px;}
.y182{bottom:56.640000px;}
.y39{bottom:58.500000px;}
.y187{bottom:72.300000px;}
.y17b{bottom:72.960000px;}
.y161{bottom:73.500000px;}
.y16f{bottom:73.620000px;}
.y168{bottom:73.740000px;}
.y181{bottom:73.920000px;}
.y17a{bottom:90.240000px;}
.y185{bottom:90.300000px;}
.y15f{bottom:91.500000px;}
.y15a{bottom:91.620000px;}
.y166{bottom:91.740000px;}
.y17f{bottom:91.920000px;}
.yb6{bottom:108.000000px;}
.y178{bottom:108.240000px;}
.yfd{bottom:111.000000px;}
.y127{bottom:114.120000px;}
.y1b9{bottom:117.720000px;}
.y1b1{bottom:122.040000px;}
.y82{bottom:124.920000px;}
.y6c{bottom:126.000000px;}
.yb4{bottom:127.500000px;}
.y37{bottom:127.800000px;}
.y142{bottom:128.520000px;}
.yfc{bottom:130.500000px;}
.y126{bottom:135.000000px;}
.y1b8{bottom:138.240000px;}
.y1b0{bottom:142.920000px;}
.y81{bottom:145.440000px;}
.y6b{bottom:146.520000px;}
.yb2{bottom:147.000000px;}
.y141{bottom:148.320000px;}
.y36{bottom:148.680000px;}
.yfb{bottom:150.000000px;}
.y125{bottom:155.520000px;}
.y1b7{bottom:159.120000px;}
.y1af{bottom:163.440000px;}
.y140{bottom:165.600000px;}
.y80{bottom:166.320000px;}
.yb0{bottom:166.500000px;}
.y6a{bottom:167.400000px;}
.y35{bottom:169.200000px;}
.yfa{bottom:169.500000px;}
.y124{bottom:176.400000px;}
.y1b6{bottom:179.640000px;}
.y13e{bottom:180.000000px;}
.y1ae{bottom:184.320000px;}
.y7f{bottom:186.840000px;}
.y69{bottom:187.920000px;}
.yf8{bottom:189.000000px;}
.y34{bottom:190.080000px;}
.y123{bottom:196.200000px;}
.yad{bottom:199.500000px;}
.y1b5{bottom:201.600000px;}
.y1ad{bottom:204.840000px;}
.y13c{bottom:205.500000px;}
.y7e{bottom:207.720000px;}
.y68{bottom:208.800000px;}
.y33{bottom:210.600000px;}
.y122{bottom:213.480000px;}
.y179{bottom:214.500000px;}
.yf5{bottom:220.500000px;}
.y1b4{bottom:223.920000px;}
.y1ac{bottom:225.720000px;}
.y7d{bottom:228.240000px;}
.y67{bottom:229.320000px;}
.y121{bottom:230.760000px;}
.y32{bottom:231.480000px;}
.y13a{bottom:232.500000px;}
.yaa{bottom:241.500000px;}
.y120{bottom:244.500000px;}
.y1ab{bottom:246.240000px;}
.y7c{bottom:249.120000px;}
.y66{bottom:250.200000px;}
.y31{bottom:252.000000px;}
.y138{bottom:258.000000px;}
.yf4{bottom:259.500000px;}
.y1aa{bottom:267.120000px;}
.y1b3{bottom:268.560000px;}
.y7b{bottom:269.640000px;}
.y65{bottom:270.720000px;}
.y30{bottom:272.880000px;}
.ya7{bottom:276.000000px;}
.y11e{bottom:280.500000px;}
.y136{bottom:285.000000px;}
.y1a9{bottom:287.640000px;}
.y1b2{bottom:290.880000px;}
.y64{bottom:291.240000px;}
.y2f{bottom:293.400000px;}
.yf1{bottom:295.500000px;}
.y7a{bottom:295.560000px;}
.y79{bottom:298.080000px;}
.y1a8{bottom:308.520000px;}
.ya5{bottom:312.000000px;}
.y63{bottom:312.120000px;}
.y77{bottom:313.560000px;}
.y158{bottom:313.920000px;}
.y2e{bottom:314.280000px;}
.y11c{bottom:315.000000px;}
.y177{bottom:319.500000px;}
.y78{bottom:324.360000px;}
.y1a7{bottom:329.040000px;}
.yf0{bottom:330.000000px;}
.ya3{bottom:331.500000px;}
.y62{bottom:332.640000px;}
.y2d{bottom:334.800000px;}
.y133{bottom:337.500000px;}
.y76{bottom:342.720000px;}
.yee{bottom:349.500000px;}
.y1a6{bottom:349.920000px;}
.ya1{bottom:351.000000px;}
.y61{bottom:353.520000px;}
.y157{bottom:355.320000px;}
.y2c{bottom:355.680000px;}
.y75{bottom:363.600000px;}
.y131{bottom:364.500000px;}
.y1a5{bottom:370.440000px;}
.yec{bottom:370.500000px;}
.y9f{bottom:372.000000px;}
.y60{bottom:374.040000px;}
.y2b{bottom:376.200000px;}
.y74{bottom:384.120000px;}
.yeb{bottom:390.000000px;}
.y1a4{bottom:391.320000px;}
.y9d{bottom:391.500000px;}
.y5f{bottom:394.920000px;}
.y156{bottom:396.720000px;}
.y2a{bottom:397.080000px;}
.y73{bottom:405.000000px;}
.yea{bottom:409.500000px;}
.y9c{bottom:411.000000px;}
.y1a3{bottom:411.840000px;}
.y5e{bottom:415.440000px;}
.y12e{bottom:417.000000px;}
.y29{bottom:417.600000px;}
.y176{bottom:424.500000px;}
.y72{bottom:425.520000px;}
.ye8{bottom:429.000000px;}
.y9a{bottom:430.500000px;}
.y1a2{bottom:432.720000px;}
.y5d{bottom:436.320000px;}
.y155{bottom:438.120000px;}
.y28{bottom:438.480000px;}
.y174{bottom:442.500000px;}
.y128{bottom:444.000000px;}
.y71{bottom:446.400000px;}
.ye6{bottom:448.500000px;}
.y117{bottom:450.000000px;}
.y1a1{bottom:453.240000px;}
.y5c{bottom:456.840000px;}
.y27{bottom:459.000000px;}
.y12a{bottom:462.000000px;}
.y97{bottom:463.500000px;}
.y70{bottom:466.920000px;}
.y115{bottom:469.500000px;}
.y1a0{bottom:474.120000px;}
.y5b{bottom:477.720000px;}
.y154{bottom:479.520000px;}
.y26{bottom:479.880000px;}
.ye3{bottom:481.500000px;}
.y6f{bottom:487.800000px;}
.y19f{bottom:494.640000px;}
.y5a{bottom:498.240000px;}
.y94{bottom:499.500000px;}
.y25{bottom:500.400000px;}
.y114{bottom:501.000000px;}
.y6e{bottom:504.360000px;}
.y6d{bottom:513.360000px;}
.y19e{bottom:515.520000px;}
.ye0{bottom:517.500000px;}
.y59{bottom:519.120000px;}
.y153{bottom:520.920000px;}
.y24{bottom:521.280000px;}
.y175{bottom:529.500000px;}
.y91{bottom:534.000000px;}
.y113{bottom:535.500000px;}
.y19d{bottom:536.040000px;}
.y58{bottom:539.640000px;}
.y23{bottom:541.800000px;}
.y171{bottom:547.500000px;}
.ydd{bottom:552.000000px;}
.y19c{bottom:556.920000px;}
.y57{bottom:560.520000px;}
.y152{bottom:562.320000px;}
.y22{bottom:562.680000px;}
.y8f{bottom:570.000000px;}
.y112{bottom:571.500000px;}
.y19b{bottom:577.440000px;}
.y56{bottom:581.040000px;}
.y21{bottom:583.200000px;}
.ydb{bottom:588.000000px;}
.y8d{bottom:589.500000px;}
.y19a{bottom:598.320000px;}
.y55{bottom:601.920000px;}
.y151{bottom:603.720000px;}
.y20{bottom:604.080000px;}
.yda{bottom:607.500000px;}
.y8b{bottom:609.000000px;}
.y199{bottom:618.840000px;}
.y150{bottom:622.080000px;}
.y54{bottom:622.440000px;}
.y1f{bottom:624.600000px;}
.y110{bottom:625.500000px;}
.yd9{bottom:627.000000px;}
.y89{bottom:628.500000px;}
.y172{bottom:634.500000px;}
.y198{bottom:639.360000px;}
.y14f{bottom:642.960000px;}
.y53{bottom:643.320000px;}
.y1e{bottom:645.480000px;}
.yd8{bottom:646.500000px;}
.y87{bottom:648.000000px;}
.y16d{bottom:652.500000px;}
.y197{bottom:660.240000px;}
.y14e{bottom:663.480000px;}
.y52{bottom:663.840000px;}
.yd7{bottom:666.000000px;}
.y85{bottom:667.500000px;}
.y1d{bottom:670.680000px;}
.y196{bottom:680.760000px;}
.y1c{bottom:682.560000px;}
.y14d{bottom:684.360000px;}
.y51{bottom:684.720000px;}
.y83{bottom:685.500000px;}
.y1b{bottom:699.840000px;}
.y195{bottom:701.640000px;}
.y14c{bottom:704.880000px;}
.yd5{bottom:705.000000px;}
.y50{bottom:705.240000px;}
.y1a{bottom:716.760000px;}
.y194{bottom:722.160000px;}
.y14b{bottom:725.760000px;}
.y10e{bottom:726.000000px;}
.y4f{bottom:726.120000px;}
.y19{bottom:734.040000px;}
.yd4{bottom:735.000000px;}
.y16e{bottom:739.500000px;}
.y193{bottom:743.040000px;}
.y14a{bottom:746.280000px;}
.y4e{bottom:746.640000px;}
.y10d{bottom:754.500000px;}
.y18{bottom:756.720000px;}
.y165{bottom:757.500000px;}
.y192{bottom:763.560000px;}
.y149{bottom:767.160000px;}
.y4d{bottom:767.520000px;}
.y17{bottom:768.600000px;}
.yd1{bottom:771.000000px;}
.y191{bottom:784.440000px;}
.y16{bottom:786.960000px;}
.y148{bottom:787.680000px;}
.y4c{bottom:788.040000px;}
.y10c{bottom:790.500000px;}
.y190{bottom:804.960000px;}
.ycf{bottom:805.500000px;}
.y15{bottom:807.480000px;}
.y147{bottom:808.560000px;}
.y4b{bottom:808.920000px;}
.y109{bottom:825.000000px;}
.y18f{bottom:825.840000px;}
.y14{bottom:828.360000px;}
.y146{bottom:829.080000px;}
.y4a{bottom:829.440000px;}
.yce{bottom:841.500000px;}
.y167{bottom:844.500000px;}
.y18e{bottom:846.360000px;}
.y13{bottom:849.960000px;}
.y49{bottom:850.320000px;}
.ycd{bottom:861.000000px;}
.y15e{bottom:862.500000px;}
.y18d{bottom:867.240000px;}
.y145{bottom:870.480000px;}
.y48{bottom:870.840000px;}
.y12{bottom:877.320000px;}
.ycc{bottom:880.500000px;}
.y18c{bottom:887.760000px;}
.y144{bottom:891.360000px;}
.y47{bottom:891.720000px;}
.ycb{bottom:900.000000px;}
.y11{bottom:905.040000px;}
.y18b{bottom:908.640000px;}
.y143{bottom:911.880000px;}
.y46{bottom:912.240000px;}
.yc9{bottom:919.500000px;}
.y18a{bottom:929.160000px;}
.y10{bottom:930.960000px;}
.y45{bottom:933.120000px;}
.y107{bottom:939.000000px;}
.yc8{bottom:940.500000px;}
.y184{bottom:946.500000px;}
.yf{bottom:948.240000px;}
.y160{bottom:949.500000px;}
.y44{bottom:953.640000px;}
.yc6{bottom:960.000000px;}
.ye{bottom:965.160000px;}
.y159{bottom:967.500000px;}
.y43{bottom:974.520000px;}
.y105{bottom:979.500000px;}
.yd{bottom:982.440000px;}
.yc3{bottom:990.000000px;}
.y42{bottom:995.040000px;}
.yc{bottom:999.720000px;}
.y102{bottom:1011.000000px;}
.y41{bottom:1015.920000px;}
.yb{bottom:1019.160000px;}
.y15b{bottom:1020.000000px;}
.yc0{bottom:1026.000000px;}
.y186{bottom:1032.000000px;}
.ya{bottom:1036.080000px;}
.y40{bottom:1036.440000px;}
.y101{bottom:1045.500000px;}
.y17e{bottom:1050.000000px;}
.y9{bottom:1050.480000px;}
.y3f{bottom:1057.320000px;}
.ybd{bottom:1060.500000px;}
.y8{bottom:1069.920000px;}
.y3e{bottom:1077.840000px;}
.yfe{bottom:1081.500000px;}
.y7{bottom:1090.080000px;}
.ybb{bottom:1096.500000px;}
.y3d{bottom:1098.720000px;}
.y6{bottom:1109.160000px;}
.yba{bottom:1116.000000px;}
.y3c{bottom:1119.240000px;}
.yb8{bottom:1135.500000px;}
.y5{bottom:1137.600000px;}
.y180{bottom:1138.500000px;}
.y3b{bottom:1140.120000px;}
.y3{bottom:1160.280000px;}
.y2{bottom:1177.560000px;}
.y1{bottom:1194.840000px;}
.y38{bottom:1195.920000px;}
.h21{height:18.000000px;}
.hb{height:19.500000px;}
.h17{height:21.000000px;}
.h22{height:27.000000px;}
.h23{height:28.500000px;}
.ha{height:28.957500px;}
.h1e{height:30.000000px;}
.h1b{height:31.500000px;}
.h7{height:32.994844px;}
.h1a{height:33.000000px;}
.h18{height:34.500000px;}
.h16{height:36.000000px;}
.h1c{height:37.500000px;}
.h3{height:40.310156px;}
.h1d{height:40.500000px;}
.h9{height:40.989375px;}
.h19{height:42.000000px;}
.h10{height:48.578428px;}
.hc{height:49.992188px;}
.h2{height:50.439375px;}
.h6{height:50.557500px;}
.h20{height:52.500000px;}
.h25{height:54.000000px;}
.h4{height:60.046875px;}
.h8{height:61.734375px;}
.h5{height:65.387813px;}
.h15{height:65.707031px;}
.h1f{height:70.500000px;}
.h12{height:72.179297px;}
.h11{height:73.619297px;}
.h13{height:75.059297px;}
.he{height:86.800781px;}
.h29{height:87.000000px;}
.h26{height:88.500000px;}
.h28{height:105.000000px;}
.h24{height:106.500000px;}
.hd{height:113.939297px;}
.hf{height:119.699297px;}
.h14{height:121.992188px;}
.h27{height:123.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:24.000000px;}
.w8{width:78.000000px;}
.wf{width:85.500000px;}
.w15{width:88.500000px;}
.wc{width:91.500000px;}
.w13{width:93.000000px;}
.wb{width:94.500000px;}
.w12{width:96.000000px;}
.wd{width:103.500000px;}
.wa{width:105.000000px;}
.w11{width:106.500000px;}
.we{width:109.500000px;}
.w14{width:111.000000px;}
.w6{width:124.500000px;}
.w4{width:127.500000px;}
.w5{width:132.000000px;}
.w3{width:169.500000px;}
.w7{width:510.000000px;}
.w10{width:597.000000px;}
.w9{width:604.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x17{left:7.980108px;}
.x3c{left:9.061440px;}
.x48{left:10.673280px;}
.x45{left:13.102320px;}
.x4a{left:16.167480px;}
.x44{left:19.130124px;}
.x3d{left:26.512584px;}
.x40{left:27.765024px;}
.x3e{left:29.377560px;}
.x34{left:30.993540px;}
.x4b{left:32.207640px;}
.x37{left:33.336120px;}
.x3f{left:34.897200px;}
.x2c{left:36.945000px;}
.x3a{left:38.536440px;}
.x30{left:40.365228px;}
.x1b{left:42.027720px;}
.x4e{left:43.042200px;}
.x19{left:45.248664px;}
.x1e{left:47.678400px;}
.x1c{left:50.040720px;}
.x23{left:51.615228px;}
.x4f{left:53.092524px;}
.x27{left:55.694880px;}
.x25{left:59.115252px;}
.x22{left:63.194760px;}
.x1f{left:66.615240px;}
.x24{left:71.505240px;}
.x26{left:73.649880px;}
.x21{left:77.399640px;}
.x20{left:79.005120px;}
.x2d{left:82.755240px;}
.x2e{left:85.365120px;}
.x28{left:90.255120px;}
.x29{left:92.865360px;}
.x2a{left:97.755360px;}
.x5{left:106.200072px;}
.x50{left:138.150144px;}
.x32{left:183.000000px;}
.x43{left:185.267640px;}
.x41{left:190.500000px;}
.x4{left:194.849856px;}
.x9{left:201.900132px;}
.x2b{left:212.730240px;}
.x2f{left:215.227560px;}
.x8{left:216.961668px;}
.x31{left:218.977680px;}
.x18{left:276.000000px;}
.x35{left:286.500000px;}
.x46{left:295.500000px;}
.x42{left:298.192440px;}
.x33{left:301.845120px;}
.xd{left:313.596288px;}
.x1{left:319.339944px;}
.x6{left:336.724380px;}
.x2{left:348.519636px;}
.x3{left:363.303720px;}
.xb{left:366.370200px;}
.x36{left:379.500000px;}
.x7{left:387.861480px;}
.x47{left:391.500000px;}
.x1a{left:403.500000px;}
.xc{left:428.940360px;}
.xa{left:430.500000px;}
.x12{left:438.480000px;}
.x38{left:471.000000px;}
.x13{left:482.901480px;}
.x49{left:484.500000px;}
.x14{left:489.276360px;}
.xe{left:492.936480px;}
.xf{left:499.311360px;}
.x10{left:536.303880px;}
.x11{left:542.678760px;}
.x15{left:551.941920px;}
.x16{left:558.316800px;}
.x39{left:574.500000px;}
.x4c{left:588.000000px;}
.x1d{left:661.500000px;}
.x3b{left:682.500000px;}
.x4d{left:699.000000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.va{vertical-align:-8.960000pt;}
.v7{vertical-align:-2.560000pt;}
.v8{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.280000pt;}
.v5{vertical-align:2.560000pt;}
.v1{vertical-align:21.760000pt;}
.vb{vertical-align:30.720000pt;}
.v4{vertical-align:32.000000pt;}
.v3{vertical-align:37.120000pt;}
.v6{vertical-align:42.240000pt;}
.vc{vertical-align:64.000000pt;}
.ls18{letter-spacing:-3.241728pt;}
.ls1d{letter-spacing:-2.193408pt;}
.lsf{letter-spacing:-0.411648pt;}
.ls37{letter-spacing:-0.408576pt;}
.ls9{letter-spacing:-0.370944pt;}
.ls1c{letter-spacing:-0.354816pt;}
.lse{letter-spacing:-0.338688pt;}
.lsd{letter-spacing:-0.301056pt;}
.ls10{letter-spacing:-0.291584pt;}
.ls17{letter-spacing:-0.284928pt;}
.ls1e{letter-spacing:-0.283008pt;}
.ls38{letter-spacing:-0.275200pt;}
.ls1f{letter-spacing:-0.274432pt;}
.ls19{letter-spacing:-0.268800pt;}
.ls39{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.231168pt;}
.ls24{letter-spacing:-0.225792pt;}
.lsb{letter-spacing:-0.215040pt;}
.ls1a{letter-spacing:-0.198912pt;}
.ls23{letter-spacing:-0.155904pt;}
.ls11{letter-spacing:-0.139776pt;}
.lsc{letter-spacing:-0.129024pt;}
.ls1b{letter-spacing:-0.107520pt;}
.ls36{letter-spacing:-0.019200pt;}
.ls20{letter-spacing:-0.012800pt;}
.lsa{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.006400pt;}
.ls25{letter-spacing:0.012800pt;}
.ls8{letter-spacing:0.053376pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.106624pt;}
.ls5{letter-spacing:0.106752pt;}
.ls12{letter-spacing:0.143616pt;}
.ls0{letter-spacing:0.168960pt;}
.ls16{letter-spacing:0.181632pt;}
.ls6{letter-spacing:0.190080pt;}
.ls3{letter-spacing:0.198528pt;}
.ls4{letter-spacing:0.211200pt;}
.ls7{letter-spacing:0.213248pt;}
.ls14{letter-spacing:0.215424pt;}
.ls27{letter-spacing:0.222720pt;}
.ls15{letter-spacing:0.253440pt;}
.ls2c{letter-spacing:0.281600pt;}
.ls13{letter-spacing:0.316800pt;}
.ls35{letter-spacing:0.340480pt;}
.ls28{letter-spacing:0.367360pt;}
.ls29{letter-spacing:0.421120pt;}
.ls2f{letter-spacing:0.893440pt;}
.ls2d{letter-spacing:1.713920pt;}
.ls2e{letter-spacing:1.797120pt;}
.ls33{letter-spacing:1.998080pt;}
.ls31{letter-spacing:3.386880pt;}
.ls30{letter-spacing:5.775360pt;}
.ls32{letter-spacing:8.474880pt;}
.ls26{letter-spacing:17.781760pt;}
.ls2a{letter-spacing:18.401280pt;}
.ls2b{letter-spacing:97.950720pt;}
.ls21{letter-spacing:281.593600pt;}
.ws4{word-spacing:-21.148416pt;}
.ws3{word-spacing:-21.028352pt;}
.ws17{word-spacing:-16.012800pt;}
.ws13{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.987200pt;}
.ws1{word-spacing:-13.440000pt;}
.ws11{word-spacing:-13.310976pt;}
.wsf{word-spacing:-13.300224pt;}
.ws21{word-spacing:-13.284096pt;}
.wse{word-spacing:-13.241088pt;}
.ws0{word-spacing:-13.224960pt;}
.ws22{word-spacing:-13.208832pt;}
.ws20{word-spacing:-13.171200pt;}
.ws1e{word-spacing:-13.155072pt;}
.wsd{word-spacing:-13.138944pt;}
.ws2{word-spacing:-13.101312pt;}
.ws15{word-spacing:-13.085184pt;}
.ws1f{word-spacing:-13.031424pt;}
.ws16{word-spacing:-11.923968pt;}
.ws10{word-spacing:-11.246592pt;}
.ws6{word-spacing:-10.876800pt;}
.ws8{word-spacing:-10.813440pt;}
.ws7{word-spacing:-10.775424pt;}
.ws9{word-spacing:-10.771200pt;}
.wsa{word-spacing:-10.758528pt;}
.wsc{word-spacing:-10.750080pt;}
.ws5{word-spacing:-10.728960pt;}
.wsb{word-spacing:-10.560000pt;}
.ws19{word-spacing:-0.385280pt;}
.ws1b{word-spacing:-0.064000pt;}
.ws1c{word-spacing:-0.044800pt;}
.ws14{word-spacing:0.000000pt;}
.ws1d{word-spacing:10.607360pt;}
.ws18{word-spacing:19.727360pt;}
.ws1a{word-spacing:84.782080pt;}
._16{margin-left:-3.879296pt;}
._b{margin-left:-2.955904pt;}
._5{margin-left:-1.925248pt;}
._9{margin-left:-0.896000pt;}
._0{width:0.913920pt;}
._11{width:2.112640pt;}
._6{width:3.118080pt;}
._10{width:4.715520pt;}
._13{width:6.201600pt;}
._c{width:7.302400pt;}
._12{width:8.529664pt;}
._17{width:9.611776pt;}
._d{width:10.790912pt;}
._7{width:11.749120pt;}
._a{width:12.975360pt;}
._15{width:13.879040pt;}
._18{width:14.910720pt;}
._f{width:17.136896pt;}
._1b{width:18.114304pt;}
._1d{width:19.859200pt;}
._19{width:20.755200pt;}
._1c{width:21.925376pt;}
._1a{width:23.107712pt;}
._14{width:25.459200pt;}
._20{width:27.852800pt;}
._e{width:28.914176pt;}
._23{width:29.811200pt;}
._1e{width:32.697600pt;}
._28{width:35.782400pt;}
._24{width:39.411200pt;}
._27{width:40.824064pt;}
._22{width:49.398784pt;}
._1f{width:50.457600pt;}
._8{width:83.272960pt;}
._25{width:105.984000pt;}
._21{width:115.052800pt;}
._26{width:150.796800pt;}
._4{width:790.409088pt;}
._1{width:882.250752pt;}
._2{width:1197.450240pt;}
._3{width:2403.201024pt;}
.fs3{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs4{font-size:42.240000pt;}
.fs6{font-size:44.800000pt;}
.fs7{font-size:47.316388pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.ye2{bottom:3.040000pt;}
.y104{bottom:3.093333pt;}
.y100{bottom:3.146667pt;}
.yf3{bottom:3.253333pt;}
.y96{bottom:3.360000pt;}
.y12d{bottom:3.413333pt;}
.yc2{bottom:3.520000pt;}
.yac{bottom:3.573333pt;}
.yd3{bottom:3.626667pt;}
.ye5{bottom:3.680000pt;}
.ydf{bottom:3.733333pt;}
.y86{bottom:3.786667pt;}
.ybf{bottom:3.893333pt;}
.y10b{bottom:3.946667pt;}
.y99{bottom:4.000000pt;}
.y93{bottom:4.053333pt;}
.y16c{bottom:4.106667pt;}
.yc5{bottom:4.160000pt;}
.y164{bottom:4.213333pt;}
.ya9{bottom:4.266667pt;}
.y3a{bottom:4.320000pt;}
.ya0{bottom:4.373333pt;}
.y8c{bottom:4.586667pt;}
.y8e{bottom:4.640000pt;}
.y90{bottom:4.693333pt;}
.yed{bottom:4.746667pt;}
.y118{bottom:4.800000pt;}
.ybc{bottom:4.853333pt;}
.ya6{bottom:4.906667pt;}
.y9e{bottom:4.960000pt;}
.ydc{bottom:5.013333pt;}
.y88{bottom:5.120000pt;}
.y8a{bottom:5.173333pt;}
.ye9{bottom:5.226667pt;}
.y11a{bottom:5.280000pt;}
.y11b{bottom:5.333333pt;}
.yb5{bottom:5.386667pt;}
.yb7{bottom:5.440000pt;}
.ya4{bottom:5.493333pt;}
.yb3{bottom:5.653333pt;}
.yb9{bottom:5.706667pt;}
.ya2{bottom:5.760000pt;}
.yef{bottom:5.813333pt;}
.y119{bottom:5.866667pt;}
.y108{bottom:5.973333pt;}
.yca{bottom:6.026667pt;}
.y111{bottom:6.240000pt;}
.yf7{bottom:7.200000pt;}
.yaf{bottom:9.546667pt;}
.y130{bottom:10.400000pt;}
.y135{bottom:10.666667pt;}
.y13f{bottom:10.880000pt;}
.y13b{bottom:10.933333pt;}
.y132{bottom:11.040000pt;}
.y137{bottom:11.306667pt;}
.y12f{bottom:11.413333pt;}
.y13d{bottom:11.573333pt;}
.y134{bottom:11.680000pt;}
.y139{bottom:11.946667pt;}
.y10f{bottom:13.226667pt;}
.yc7{bottom:14.826667pt;}
.yd6{bottom:14.933333pt;}
.y106{bottom:15.093333pt;}
.y116{bottom:15.946667pt;}
.yf9{bottom:16.000000pt;}
.yb1{bottom:16.480000pt;}
.ye7{bottom:17.013333pt;}
.y9b{bottom:17.333333pt;}
.y11f{bottom:18.186667pt;}
.ye1{bottom:18.400000pt;}
.y103{bottom:18.453333pt;}
.yff{bottom:18.506667pt;}
.yc1{bottom:18.560000pt;}
.yf2{bottom:18.613333pt;}
.y95{bottom:18.720000pt;}
.y12c{bottom:18.773333pt;}
.y11d{bottom:18.880000pt;}
.yab{bottom:18.933333pt;}
.yd2{bottom:18.986667pt;}
.ye4{bottom:19.040000pt;}
.yde{bottom:19.093333pt;}
.y84{bottom:19.146667pt;}
.ybe{bottom:19.253333pt;}
.y10a{bottom:19.306667pt;}
.y98{bottom:19.360000pt;}
.y92{bottom:19.413333pt;}
.y16b{bottom:19.466667pt;}
.yc4{bottom:19.520000pt;}
.y173{bottom:19.573333pt;}
.ya8{bottom:19.626667pt;}
.yd0{bottom:19.680000pt;}
.yf6{bottom:22.560000pt;}
.yae{bottom:24.906667pt;}
.y189{bottom:33.546667pt;}
.y12b{bottom:33.813333pt;}
.y17d{bottom:34.133333pt;}
.y163{bottom:34.613333pt;}
.y15d{bottom:34.720000pt;}
.y15c{bottom:34.773333pt;}
.y16a{bottom:34.826667pt;}
.y183{bottom:34.986667pt;}
.y4{bottom:47.360000pt;}
.y188{bottom:48.906667pt;}
.y17c{bottom:49.493333pt;}
.y129{bottom:49.813333pt;}
.y162{bottom:49.973333pt;}
.y170{bottom:50.080000pt;}
.y169{bottom:50.186667pt;}
.y182{bottom:50.346667pt;}
.y39{bottom:52.000000pt;}
.y187{bottom:64.266667pt;}
.y17b{bottom:64.853333pt;}
.y161{bottom:65.333333pt;}
.y16f{bottom:65.440000pt;}
.y168{bottom:65.546667pt;}
.y181{bottom:65.706667pt;}
.y17a{bottom:80.213333pt;}
.y185{bottom:80.266667pt;}
.y15f{bottom:81.333333pt;}
.y15a{bottom:81.440000pt;}
.y166{bottom:81.546667pt;}
.y17f{bottom:81.706667pt;}
.yb6{bottom:96.000000pt;}
.y178{bottom:96.213333pt;}
.yfd{bottom:98.666667pt;}
.y127{bottom:101.440000pt;}
.y1b9{bottom:104.640000pt;}
.y1b1{bottom:108.480000pt;}
.y82{bottom:111.040000pt;}
.y6c{bottom:112.000000pt;}
.yb4{bottom:113.333333pt;}
.y37{bottom:113.600000pt;}
.y142{bottom:114.240000pt;}
.yfc{bottom:116.000000pt;}
.y126{bottom:120.000000pt;}
.y1b8{bottom:122.880000pt;}
.y1b0{bottom:127.040000pt;}
.y81{bottom:129.280000pt;}
.y6b{bottom:130.240000pt;}
.yb2{bottom:130.666667pt;}
.y141{bottom:131.840000pt;}
.y36{bottom:132.160000pt;}
.yfb{bottom:133.333333pt;}
.y125{bottom:138.240000pt;}
.y1b7{bottom:141.440000pt;}
.y1af{bottom:145.280000pt;}
.y140{bottom:147.200000pt;}
.y80{bottom:147.840000pt;}
.yb0{bottom:148.000000pt;}
.y6a{bottom:148.800000pt;}
.y35{bottom:150.400000pt;}
.yfa{bottom:150.666667pt;}
.y124{bottom:156.800000pt;}
.y1b6{bottom:159.680000pt;}
.y13e{bottom:160.000000pt;}
.y1ae{bottom:163.840000pt;}
.y7f{bottom:166.080000pt;}
.y69{bottom:167.040000pt;}
.yf8{bottom:168.000000pt;}
.y34{bottom:168.960000pt;}
.y123{bottom:174.400000pt;}
.yad{bottom:177.333333pt;}
.y1b5{bottom:179.200000pt;}
.y1ad{bottom:182.080000pt;}
.y13c{bottom:182.666667pt;}
.y7e{bottom:184.640000pt;}
.y68{bottom:185.600000pt;}
.y33{bottom:187.200000pt;}
.y122{bottom:189.760000pt;}
.y179{bottom:190.666667pt;}
.yf5{bottom:196.000000pt;}
.y1b4{bottom:199.040000pt;}
.y1ac{bottom:200.640000pt;}
.y7d{bottom:202.880000pt;}
.y67{bottom:203.840000pt;}
.y121{bottom:205.120000pt;}
.y32{bottom:205.760000pt;}
.y13a{bottom:206.666667pt;}
.yaa{bottom:214.666667pt;}
.y120{bottom:217.333333pt;}
.y1ab{bottom:218.880000pt;}
.y7c{bottom:221.440000pt;}
.y66{bottom:222.400000pt;}
.y31{bottom:224.000000pt;}
.y138{bottom:229.333333pt;}
.yf4{bottom:230.666667pt;}
.y1aa{bottom:237.440000pt;}
.y1b3{bottom:238.720000pt;}
.y7b{bottom:239.680000pt;}
.y65{bottom:240.640000pt;}
.y30{bottom:242.560000pt;}
.ya7{bottom:245.333333pt;}
.y11e{bottom:249.333333pt;}
.y136{bottom:253.333333pt;}
.y1a9{bottom:255.680000pt;}
.y1b2{bottom:258.560000pt;}
.y64{bottom:258.880000pt;}
.y2f{bottom:260.800000pt;}
.yf1{bottom:262.666667pt;}
.y7a{bottom:262.720000pt;}
.y79{bottom:264.960000pt;}
.y1a8{bottom:274.240000pt;}
.ya5{bottom:277.333333pt;}
.y63{bottom:277.440000pt;}
.y77{bottom:278.720000pt;}
.y158{bottom:279.040000pt;}
.y2e{bottom:279.360000pt;}
.y11c{bottom:280.000000pt;}
.y177{bottom:284.000000pt;}
.y78{bottom:288.320000pt;}
.y1a7{bottom:292.480000pt;}
.yf0{bottom:293.333333pt;}
.ya3{bottom:294.666667pt;}
.y62{bottom:295.680000pt;}
.y2d{bottom:297.600000pt;}
.y133{bottom:300.000000pt;}
.y76{bottom:304.640000pt;}
.yee{bottom:310.666667pt;}
.y1a6{bottom:311.040000pt;}
.ya1{bottom:312.000000pt;}
.y61{bottom:314.240000pt;}
.y157{bottom:315.840000pt;}
.y2c{bottom:316.160000pt;}
.y75{bottom:323.200000pt;}
.y131{bottom:324.000000pt;}
.y1a5{bottom:329.280000pt;}
.yec{bottom:329.333333pt;}
.y9f{bottom:330.666667pt;}
.y60{bottom:332.480000pt;}
.y2b{bottom:334.400000pt;}
.y74{bottom:341.440000pt;}
.yeb{bottom:346.666667pt;}
.y1a4{bottom:347.840000pt;}
.y9d{bottom:348.000000pt;}
.y5f{bottom:351.040000pt;}
.y156{bottom:352.640000pt;}
.y2a{bottom:352.960000pt;}
.y73{bottom:360.000000pt;}
.yea{bottom:364.000000pt;}
.y9c{bottom:365.333333pt;}
.y1a3{bottom:366.080000pt;}
.y5e{bottom:369.280000pt;}
.y12e{bottom:370.666667pt;}
.y29{bottom:371.200000pt;}
.y176{bottom:377.333333pt;}
.y72{bottom:378.240000pt;}
.ye8{bottom:381.333333pt;}
.y9a{bottom:382.666667pt;}
.y1a2{bottom:384.640000pt;}
.y5d{bottom:387.840000pt;}
.y155{bottom:389.440000pt;}
.y28{bottom:389.760000pt;}
.y174{bottom:393.333333pt;}
.y128{bottom:394.666667pt;}
.y71{bottom:396.800000pt;}
.ye6{bottom:398.666667pt;}
.y117{bottom:400.000000pt;}
.y1a1{bottom:402.880000pt;}
.y5c{bottom:406.080000pt;}
.y27{bottom:408.000000pt;}
.y12a{bottom:410.666667pt;}
.y97{bottom:412.000000pt;}
.y70{bottom:415.040000pt;}
.y115{bottom:417.333333pt;}
.y1a0{bottom:421.440000pt;}
.y5b{bottom:424.640000pt;}
.y154{bottom:426.240000pt;}
.y26{bottom:426.560000pt;}
.ye3{bottom:428.000000pt;}
.y6f{bottom:433.600000pt;}
.y19f{bottom:439.680000pt;}
.y5a{bottom:442.880000pt;}
.y94{bottom:444.000000pt;}
.y25{bottom:444.800000pt;}
.y114{bottom:445.333333pt;}
.y6e{bottom:448.320000pt;}
.y6d{bottom:456.320000pt;}
.y19e{bottom:458.240000pt;}
.ye0{bottom:460.000000pt;}
.y59{bottom:461.440000pt;}
.y153{bottom:463.040000pt;}
.y24{bottom:463.360000pt;}
.y175{bottom:470.666667pt;}
.y91{bottom:474.666667pt;}
.y113{bottom:476.000000pt;}
.y19d{bottom:476.480000pt;}
.y58{bottom:479.680000pt;}
.y23{bottom:481.600000pt;}
.y171{bottom:486.666667pt;}
.ydd{bottom:490.666667pt;}
.y19c{bottom:495.040000pt;}
.y57{bottom:498.240000pt;}
.y152{bottom:499.840000pt;}
.y22{bottom:500.160000pt;}
.y8f{bottom:506.666667pt;}
.y112{bottom:508.000000pt;}
.y19b{bottom:513.280000pt;}
.y56{bottom:516.480000pt;}
.y21{bottom:518.400000pt;}
.ydb{bottom:522.666667pt;}
.y8d{bottom:524.000000pt;}
.y19a{bottom:531.840000pt;}
.y55{bottom:535.040000pt;}
.y151{bottom:536.640000pt;}
.y20{bottom:536.960000pt;}
.yda{bottom:540.000000pt;}
.y8b{bottom:541.333333pt;}
.y199{bottom:550.080000pt;}
.y150{bottom:552.960000pt;}
.y54{bottom:553.280000pt;}
.y1f{bottom:555.200000pt;}
.y110{bottom:556.000000pt;}
.yd9{bottom:557.333333pt;}
.y89{bottom:558.666667pt;}
.y172{bottom:564.000000pt;}
.y198{bottom:568.320000pt;}
.y14f{bottom:571.520000pt;}
.y53{bottom:571.840000pt;}
.y1e{bottom:573.760000pt;}
.yd8{bottom:574.666667pt;}
.y87{bottom:576.000000pt;}
.y16d{bottom:580.000000pt;}
.y197{bottom:586.880000pt;}
.y14e{bottom:589.760000pt;}
.y52{bottom:590.080000pt;}
.yd7{bottom:592.000000pt;}
.y85{bottom:593.333333pt;}
.y1d{bottom:596.160000pt;}
.y196{bottom:605.120000pt;}
.y1c{bottom:606.720000pt;}
.y14d{bottom:608.320000pt;}
.y51{bottom:608.640000pt;}
.y83{bottom:609.333333pt;}
.y1b{bottom:622.080000pt;}
.y195{bottom:623.680000pt;}
.y14c{bottom:626.560000pt;}
.yd5{bottom:626.666667pt;}
.y50{bottom:626.880000pt;}
.y1a{bottom:637.120000pt;}
.y194{bottom:641.920000pt;}
.y14b{bottom:645.120000pt;}
.y10e{bottom:645.333333pt;}
.y4f{bottom:645.440000pt;}
.y19{bottom:652.480000pt;}
.yd4{bottom:653.333333pt;}
.y16e{bottom:657.333333pt;}
.y193{bottom:660.480000pt;}
.y14a{bottom:663.360000pt;}
.y4e{bottom:663.680000pt;}
.y10d{bottom:670.666667pt;}
.y18{bottom:672.640000pt;}
.y165{bottom:673.333333pt;}
.y192{bottom:678.720000pt;}
.y149{bottom:681.920000pt;}
.y4d{bottom:682.240000pt;}
.y17{bottom:683.200000pt;}
.yd1{bottom:685.333333pt;}
.y191{bottom:697.280000pt;}
.y16{bottom:699.520000pt;}
.y148{bottom:700.160000pt;}
.y4c{bottom:700.480000pt;}
.y10c{bottom:702.666667pt;}
.y190{bottom:715.520000pt;}
.ycf{bottom:716.000000pt;}
.y15{bottom:717.760000pt;}
.y147{bottom:718.720000pt;}
.y4b{bottom:719.040000pt;}
.y109{bottom:733.333333pt;}
.y18f{bottom:734.080000pt;}
.y14{bottom:736.320000pt;}
.y146{bottom:736.960000pt;}
.y4a{bottom:737.280000pt;}
.yce{bottom:748.000000pt;}
.y167{bottom:750.666667pt;}
.y18e{bottom:752.320000pt;}
.y13{bottom:755.520000pt;}
.y49{bottom:755.840000pt;}
.ycd{bottom:765.333333pt;}
.y15e{bottom:766.666667pt;}
.y18d{bottom:770.880000pt;}
.y145{bottom:773.760000pt;}
.y48{bottom:774.080000pt;}
.y12{bottom:779.840000pt;}
.ycc{bottom:782.666667pt;}
.y18c{bottom:789.120000pt;}
.y144{bottom:792.320000pt;}
.y47{bottom:792.640000pt;}
.ycb{bottom:800.000000pt;}
.y11{bottom:804.480000pt;}
.y18b{bottom:807.680000pt;}
.y143{bottom:810.560000pt;}
.y46{bottom:810.880000pt;}
.yc9{bottom:817.333333pt;}
.y18a{bottom:825.920000pt;}
.y10{bottom:827.520000pt;}
.y45{bottom:829.440000pt;}
.y107{bottom:834.666667pt;}
.yc8{bottom:836.000000pt;}
.y184{bottom:841.333333pt;}
.yf{bottom:842.880000pt;}
.y160{bottom:844.000000pt;}
.y44{bottom:847.680000pt;}
.yc6{bottom:853.333333pt;}
.ye{bottom:857.920000pt;}
.y159{bottom:860.000000pt;}
.y43{bottom:866.240000pt;}
.y105{bottom:870.666667pt;}
.yd{bottom:873.280000pt;}
.yc3{bottom:880.000000pt;}
.y42{bottom:884.480000pt;}
.yc{bottom:888.640000pt;}
.y102{bottom:898.666667pt;}
.y41{bottom:903.040000pt;}
.yb{bottom:905.920000pt;}
.y15b{bottom:906.666667pt;}
.yc0{bottom:912.000000pt;}
.y186{bottom:917.333333pt;}
.ya{bottom:920.960000pt;}
.y40{bottom:921.280000pt;}
.y101{bottom:929.333333pt;}
.y17e{bottom:933.333333pt;}
.y9{bottom:933.760000pt;}
.y3f{bottom:939.840000pt;}
.ybd{bottom:942.666667pt;}
.y8{bottom:951.040000pt;}
.y3e{bottom:958.080000pt;}
.yfe{bottom:961.333333pt;}
.y7{bottom:968.960000pt;}
.ybb{bottom:974.666667pt;}
.y3d{bottom:976.640000pt;}
.y6{bottom:985.920000pt;}
.yba{bottom:992.000000pt;}
.y3c{bottom:994.880000pt;}
.yb8{bottom:1009.333333pt;}
.y5{bottom:1011.200000pt;}
.y180{bottom:1012.000000pt;}
.y3b{bottom:1013.440000pt;}
.y3{bottom:1031.360000pt;}
.y2{bottom:1046.720000pt;}
.y1{bottom:1062.080000pt;}
.y38{bottom:1063.040000pt;}
.h21{height:16.000000pt;}
.hb{height:17.333333pt;}
.h17{height:18.666667pt;}
.h22{height:24.000000pt;}
.h23{height:25.333333pt;}
.ha{height:25.740000pt;}
.h1e{height:26.666667pt;}
.h1b{height:28.000000pt;}
.h7{height:29.328750pt;}
.h1a{height:29.333333pt;}
.h18{height:30.666667pt;}
.h16{height:32.000000pt;}
.h1c{height:33.333333pt;}
.h3{height:35.831250pt;}
.h1d{height:36.000000pt;}
.h9{height:36.435000pt;}
.h19{height:37.333333pt;}
.h10{height:43.180825pt;}
.hc{height:44.437500pt;}
.h2{height:44.835000pt;}
.h6{height:44.940000pt;}
.h20{height:46.666667pt;}
.h25{height:48.000000pt;}
.h4{height:53.375000pt;}
.h8{height:54.875000pt;}
.h5{height:58.122500pt;}
.h15{height:58.406250pt;}
.h1f{height:62.666667pt;}
.h12{height:64.159375pt;}
.h11{height:65.439375pt;}
.h13{height:66.719375pt;}
.he{height:77.156250pt;}
.h29{height:77.333333pt;}
.h26{height:78.666667pt;}
.h28{height:93.333333pt;}
.h24{height:94.666667pt;}
.hd{height:101.279375pt;}
.hf{height:106.399375pt;}
.h14{height:108.437500pt;}
.h27{height:109.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:21.333333pt;}
.w8{width:69.333333pt;}
.wf{width:76.000000pt;}
.w15{width:78.666667pt;}
.wc{width:81.333333pt;}
.w13{width:82.666667pt;}
.wb{width:84.000000pt;}
.w12{width:85.333333pt;}
.wd{width:92.000000pt;}
.wa{width:93.333333pt;}
.w11{width:94.666667pt;}
.we{width:97.333333pt;}
.w14{width:98.666667pt;}
.w6{width:110.666667pt;}
.w4{width:113.333333pt;}
.w5{width:117.333333pt;}
.w3{width:150.666667pt;}
.w7{width:453.333333pt;}
.w10{width:530.666667pt;}
.w9{width:537.333333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x17{left:7.093429pt;}
.x3c{left:8.054613pt;}
.x48{left:9.487360pt;}
.x45{left:11.646507pt;}
.x4a{left:14.371093pt;}
.x44{left:17.004555pt;}
.x3d{left:23.566741pt;}
.x40{left:24.680021pt;}
.x3e{left:26.113387pt;}
.x34{left:27.549813pt;}
.x4b{left:28.629013pt;}
.x37{left:29.632107pt;}
.x3f{left:31.019733pt;}
.x2c{left:32.840000pt;}
.x3a{left:34.254613pt;}
.x30{left:35.880203pt;}
.x1b{left:37.357973pt;}
.x4e{left:38.259733pt;}
.x19{left:40.221035pt;}
.x1e{left:42.380800pt;}
.x1c{left:44.480640pt;}
.x23{left:45.880203pt;}
.x4f{left:47.193355pt;}
.x27{left:49.506560pt;}
.x25{left:52.546891pt;}
.x22{left:56.173120pt;}
.x1f{left:59.213547pt;}
.x24{left:63.560213pt;}
.x26{left:65.466560pt;}
.x21{left:68.799680pt;}
.x20{left:70.226773pt;}
.x2d{left:73.560213pt;}
.x2e{left:75.880107pt;}
.x28{left:80.226773pt;}
.x29{left:82.546987pt;}
.x2a{left:86.893653pt;}
.x5{left:94.400064pt;}
.x50{left:122.800128pt;}
.x32{left:162.666667pt;}
.x43{left:164.682347pt;}
.x41{left:169.333333pt;}
.x4{left:173.199872pt;}
.x9{left:179.466784pt;}
.x2b{left:189.093547pt;}
.x2f{left:191.313387pt;}
.x8{left:192.854816pt;}
.x31{left:194.646827pt;}
.x18{left:245.333333pt;}
.x35{left:254.666667pt;}
.x46{left:262.666667pt;}
.x42{left:265.059947pt;}
.x33{left:268.306773pt;}
.xd{left:278.752256pt;}
.x1{left:283.857728pt;}
.x6{left:299.310560pt;}
.x2{left:309.795232pt;}
.x3{left:322.936640pt;}
.xb{left:325.662400pt;}
.x36{left:337.333333pt;}
.x7{left:344.765760pt;}
.x47{left:348.000000pt;}
.x1a{left:358.666667pt;}
.xc{left:381.280320pt;}
.xa{left:382.666667pt;}
.x12{left:389.760000pt;}
.x38{left:418.666667pt;}
.x13{left:429.245760pt;}
.x49{left:430.666667pt;}
.x14{left:434.912320pt;}
.xe{left:438.165760pt;}
.xf{left:443.832320pt;}
.x10{left:476.714560pt;}
.x11{left:482.381120pt;}
.x15{left:490.615040pt;}
.x16{left:496.281600pt;}
.x39{left:510.666667pt;}
.x4c{left:522.666667pt;}
.x1d{left:588.000000pt;}
.x3b{left:606.666667pt;}
.x4d{left:621.333333pt;}
}




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