
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5897a818fe1ffd26b3361ddf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_47c2ac4369a95de27d1a55f6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_e5f0e96ed7509a63702d073e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_0b572e99cb78243b739c45a4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_50d3927e99cbdae1a06064b5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.995117;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_2754914d51b9f4ef2c73283a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_7ad92faab10acbac5c5e35d4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.649414;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_993531d135f2c84af71d467f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.088379;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_fa97f35e81b0e6066bff47be.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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);}
.v1a{vertical-align:-70.200000px;}
.v19{vertical-align:-36.720000px;}
.v16{vertical-align:-34.200000px;}
.v13{vertical-align:-24.840000px;}
.v10{vertical-align:-23.400000px;}
.ve{vertical-align:-21.960000px;}
.v1{vertical-align:-20.880000px;}
.v17{vertical-align:-19.440000px;}
.v1b{vertical-align:-18.000000px;}
.v14{vertical-align:-16.200000px;}
.v3{vertical-align:-15.120000px;}
.vf{vertical-align:-13.680000px;}
.v5{vertical-align:-12.240000px;}
.v12{vertical-align:-9.000000px;}
.v18{vertical-align:-3.960000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.520000px;}
.v9{vertical-align:12.240000px;}
.v2{vertical-align:15.120000px;}
.vc{vertical-align:19.080000px;}
.v7{vertical-align:21.960000px;}
.v15{vertical-align:30.240000px;}
.v11{vertical-align:36.000000px;}
.va{vertical-align:39.960000px;}
.vd{vertical-align:45.360000px;}
.v8{vertical-align:46.800000px;}
.vb{vertical-align:52.200000px;}
.lsd{letter-spacing:-0.452400px;}
.ls53{letter-spacing:-0.420600px;}
.ls3d{letter-spacing:-0.286800px;}
.lsb{letter-spacing:-0.285600px;}
.ls4c{letter-spacing:-0.236400px;}
.ls11{letter-spacing:-0.186600px;}
.ls52{letter-spacing:-0.178800px;}
.ls7{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls4d{letter-spacing:-0.075000px;}
.ls4e{letter-spacing:-0.049680px;}
.ls17{letter-spacing:-0.038880px;}
.ls41{letter-spacing:-0.031680px;}
.ls3c{letter-spacing:-0.030600px;}
.ls40{letter-spacing:-0.018360px;}
.ls4b{letter-spacing:-0.011160px;}
.ls9{letter-spacing:-0.008400px;}
.ls4{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.006120px;}
.lsf{letter-spacing:0.023040px;}
.ls12{letter-spacing:0.045360px;}
.ls47{letter-spacing:0.048240px;}
.ls13{letter-spacing:0.048960px;}
.ls15{letter-spacing:0.053280px;}
.ls1c{letter-spacing:0.060480px;}
.ls8{letter-spacing:0.060600px;}
.ls35{letter-spacing:0.061200px;}
.ls3{letter-spacing:0.065520px;}
.ls18{letter-spacing:0.070800px;}
.ls3e{letter-spacing:0.073200px;}
.lse{letter-spacing:0.074160px;}
.ls30{letter-spacing:0.082080px;}
.ls2{letter-spacing:0.090000px;}
.ls16{letter-spacing:0.092400px;}
.ls1{letter-spacing:0.093600px;}
.ls55{letter-spacing:0.098400px;}
.ls46{letter-spacing:0.103200px;}
.ls28{letter-spacing:0.115560px;}
.ls54{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.ls45{letter-spacing:0.146400px;}
.ls23{letter-spacing:0.154800px;}
.ls2b{letter-spacing:0.168120px;}
.ls10{letter-spacing:0.173400px;}
.ls3f{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls25{letter-spacing:1.663560px;}
.ls48{letter-spacing:2.532240px;}
.ls37{letter-spacing:2.612520px;}
.ls43{letter-spacing:2.622600px;}
.ls36{letter-spacing:2.702880px;}
.ls42{letter-spacing:3.787200px;}
.ls4a{letter-spacing:7.653600px;}
.ls38{letter-spacing:9.781200px;}
.ls2c{letter-spacing:10.620000px;}
.ls1b{letter-spacing:10.892520px;}
.ls3a{letter-spacing:12.850200px;}
.ls1e{letter-spacing:13.082040px;}
.ls34{letter-spacing:13.202040px;}
.ls3b{letter-spacing:13.410360px;}
.ls14{letter-spacing:13.442040px;}
.ls1d{letter-spacing:15.572520px;}
.ls26{letter-spacing:15.932520px;}
.ls29{letter-spacing:16.212240px;}
.ls51{letter-spacing:16.332240px;}
.ls33{letter-spacing:16.642080px;}
.ls21{letter-spacing:16.650360px;}
.ls2d{letter-spacing:16.740000px;}
.ls32{letter-spacing:18.092520px;}
.ls31{letter-spacing:18.452520px;}
.ls19{letter-spacing:19.172520px;}
.ls2a{letter-spacing:20.172240px;}
.ls2f{letter-spacing:22.052520px;}
.ls49{letter-spacing:23.772240px;}
.ls24{letter-spacing:29.172240px;}
.ls50{letter-spacing:32.412240px;}
.ls4f{letter-spacing:32.772240px;}
.ls39{letter-spacing:34.652520px;}
.ls27{letter-spacing:36.812520px;}
.ls20{letter-spacing:41.132520px;}
.ls57{letter-spacing:47.726640px;}
.ls44{letter-spacing:57.264120px;}
.ls56{letter-spacing:80.846640px;}
.ls2e{letter-spacing:95.852520px;}
.ls1f{letter-spacing:107.693760px;}
.ls22{letter-spacing:277.772520px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.ws1d{word-spacing:-13.329600px;}
.ws1a{word-spacing:-13.287000px;}
.wsa{word-spacing:-13.279680px;}
.ws9{word-spacing:-13.275360px;}
.ws20{word-spacing:-13.274640px;}
.ws2{word-spacing:-13.226400px;}
.ws1e{word-spacing:-13.215240px;}
.ws19{word-spacing:-13.208040px;}
.wse{word-spacing:-13.187520px;}
.ws22{word-spacing:-13.176720px;}
.ws21{word-spacing:-13.151400px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws1b{word-spacing:-9.412800px;}
.wsd{word-spacing:-9.358800px;}
.ws10{word-spacing:-9.266400px;}
.ws1f{word-spacing:-9.030000px;}
.ws11{word-spacing:-8.624400px;}
.ws5{word-spacing:0.000000px;}
.ws16{word-spacing:1.827360px;}
.ws18{word-spacing:3.303720px;}
.ws23{word-spacing:3.423720px;}
.wsc{word-spacing:3.423960px;}
.ws3{word-spacing:4.304880px;}
.wsf{word-spacing:6.121440px;}
.ws17{word-spacing:6.964920px;}
.ws12{word-spacing:7.046640px;}
.ws15{word-spacing:7.324920px;}
.wsb{word-spacing:9.001440px;}
.ws14{word-spacing:10.204920px;}
.ws13{word-spacing:10.286640px;}
.ws1c{word-spacing:10.618920px;}
._13{margin-left:-26.467200px;}
._11{margin-left:-25.224912px;}
._14{margin-left:-10.257120px;}
._16{margin-left:-8.691432px;}
._7{margin-left:-3.749400px;}
._6{margin-left:-2.202600px;}
._0{margin-left:-1.104000px;}
._1{width:1.174152px;}
._2{width:2.832576px;}
._3{width:3.961963px;}
._5{width:5.092248px;}
._4{width:6.212784px;}
._c{width:7.558800px;}
._a{width:8.777400px;}
._b{width:9.946730px;}
._10{width:11.095270px;}
._9{width:12.226200px;}
._12{width:13.565448px;}
._e{width:14.631000px;}
._d{width:15.691200px;}
._8{width:16.773600px;}
._17{width:18.152640px;}
._f{width:19.959840px;}
._18{width:60.901560px;}
._19{width:68.440320px;}
._1a{width:69.474480px;}
._15{width:266.255928px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y46{bottom:4.500000px;}
.y3d{bottom:7.830000px;}
.ye3{bottom:7.860000px;}
.y74{bottom:7.920000px;}
.y106{bottom:8.100000px;}
.y12a{bottom:9.630000px;}
.y12c{bottom:12.330000px;}
.y105{bottom:13.320000px;}
.y12b{bottom:15.120000px;}
.y73{bottom:29.970000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y51{bottom:108.810000px;}
.y94{bottom:114.330000px;}
.y16a{bottom:115.590000px;}
.y129{bottom:125.400000px;}
.y50{bottom:130.860000px;}
.y93{bottom:131.970000px;}
.y169{bottom:133.140000px;}
.yf0{bottom:136.200000px;}
.y29{bottom:141.510000px;}
.y128{bottom:142.950000px;}
.yc5{bottom:146.460000px;}
.y45{bottom:147.960000px;}
.y92{bottom:149.520000px;}
.y193{bottom:150.510000px;}
.y168{bottom:150.690000px;}
.y4f{bottom:153.000000px;}
.yef{bottom:153.750000px;}
.y28{bottom:159.150000px;}
.y127{bottom:160.500000px;}
.y91{bottom:167.070000px;}
.y44{bottom:170.100000px;}
.y4e{bottom:175.050000px;}
.y27{bottom:176.700000px;}
.y192{bottom:177.060000px;}
.y167{bottom:177.330000px;}
.yee{bottom:180.390000px;}
.yc4{bottom:182.010000px;}
.y47{bottom:182.730000px;}
.y90{bottom:184.710000px;}
.y14a{bottom:186.150000px;}
.y126{bottom:187.140000px;}
.y71{bottom:187.950000px;}
.y43{bottom:192.150000px;}
.y26{bottom:194.250000px;}
.y166{bottom:194.880000px;}
.y5b{bottom:196.110000px;}
.y4d{bottom:197.100000px;}
.y8f{bottom:202.260000px;}
.y191{bottom:203.610000px;}
.y149{bottom:203.700000px;}
.y70{bottom:210.090000px;}
.y25{bottom:211.890000px;}
.y165{bottom:212.520000px;}
.y42{bottom:214.200000px;}
.yed{bottom:215.940000px;}
.yc3{bottom:217.650000px;}
.y5a{bottom:218.160000px;}
.y4c{bottom:219.240000px;}
.y125{bottom:222.690000px;}
.y8e{bottom:228.810000px;}
.y24{bottom:229.440000px;}
.y164{bottom:230.070000px;}
.y190{bottom:230.250000px;}
.y148{bottom:230.340000px;}
.y6f{bottom:232.140000px;}
.yec{bottom:233.490000px;}
.yc2{bottom:235.200000px;}
.y41{bottom:236.340000px;}
.y59{bottom:240.210000px;}
.y124{bottom:240.330000px;}
.y4b{bottom:241.290000px;}
.y23{bottom:247.080000px;}
.y18f{bottom:247.800000px;}
.yeb{bottom:251.130000px;}
.yc1{bottom:252.840000px;}
.y6e{bottom:254.280000px;}
.y163{bottom:256.620000px;}
.y123{bottom:257.880000px;}
.y40{bottom:258.390000px;}
.y58{bottom:262.380000px;}
.y4a{bottom:263.430000px;}
.y8d{bottom:264.450000px;}
.y22{bottom:264.630000px;}
.y147{bottom:265.890000px;}
.yea{bottom:268.680000px;}
.y63{bottom:269.580000px;}
.yc0{bottom:270.390000px;}
.y72{bottom:273.270000px;}
.y162{bottom:274.260000px;}
.y18e{bottom:274.440000px;}
.y122{bottom:275.430000px;}
.y6d{bottom:276.330000px;}
.y3f{bottom:280.530000px;}
.y8c{bottom:282.000000px;}
.y21{bottom:282.180000px;}
.y116{bottom:283.080000px;}
.y146{bottom:283.440000px;}
.y57{bottom:284.430000px;}
.y49{bottom:285.480000px;}
.ybf{bottom:287.940000px;}
.y62{bottom:291.630000px;}
.y161{bottom:291.810000px;}
.y121{bottom:293.070000px;}
.y6c{bottom:298.380000px;}
.y8b{bottom:299.640000px;}
.y20{bottom:299.820000px;}
.y115{bottom:300.720000px;}
.y18d{bottom:300.990000px;}
.y145{bottom:301.080000px;}
.ye9{bottom:301.710000px;}
.y56{bottom:306.480000px;}
.y48{bottom:307.560000px;}
.y120{bottom:310.620000px;}
.y64{bottom:313.410000px;}
.y61{bottom:313.770000px;}
.ybe{bottom:314.580000px;}
.y8a{bottom:317.190000px;}
.y1f{bottom:317.370000px;}
.y114{bottom:318.270000px;}
.y160{bottom:318.450000px;}
.y144{bottom:318.630000px;}
.y6b{bottom:320.520000px;}
.y66{bottom:322.680000px;}
.y18c{bottom:327.540000px;}
.y55{bottom:328.620000px;}
.ye8{bottom:328.980000px;}
.y1e{bottom:335.010000px;}
.y60{bottom:335.820000px;}
.y113{bottom:335.910000px;}
.y15f{bottom:336.000000px;}
.y143{bottom:336.270000px;}
.y5c{bottom:340.680000px;}
.y6a{bottom:342.570000px;}
.y89{bottom:343.740000px;}
.y18b{bottom:345.180000px;}
.y11f{bottom:346.260000px;}
.y54{bottom:350.670000px;}
.y112{bottom:353.460000px;}
.y142{bottom:353.820000px;}
.ybb{bottom:354.900000px;}
.ye7{bottom:356.340000px;}
.y5f{bottom:357.960000px;}
.ybc{bottom:360.390000px;}
.ybd{bottom:360.480000px;}
.y1d{bottom:361.830000px;}
.y15e{bottom:362.910000px;}
.y69{bottom:364.710000px;}
.y111{bottom:371.010000px;}
.y141{bottom:371.370000px;}
.y18a{bottom:371.730000px;}
.y53{bottom:372.810000px;}
.y11e{bottom:378.480000px;}
.y88{bottom:379.380000px;}
.y5e{bottom:380.010000px;}
.ye6{bottom:383.700000px;}
.y68{bottom:386.760000px;}
.yb9{bottom:391.800000px;}
.y87{bottom:396.930000px;}
.y189{bottom:398.370000px;}
.yb5{bottom:399.360000px;}
.y5d{bottom:402.060000px;}
.yb7{bottom:403.320000px;}
.yb6{bottom:403.860000px;}
.yba{bottom:404.850000px;}
.y110{bottom:406.650000px;}
.y140{bottom:407.010000px;}
.y67{bottom:408.810000px;}
.y1c{bottom:410.430000px;}
.ye5{bottom:410.970000px;}
.y15d{bottom:411.150000px;}
.yb8{bottom:412.410000px;}
.y10f{bottom:424.200000px;}
.y188{bottom:424.920000px;}
.y86{bottom:432.570000px;}
.y15c{bottom:438.060000px;}
.ye4{bottom:438.330000px;}
.y13f{bottom:439.230000px;}
.yb4{bottom:441.300000px;}
.y10d{bottom:441.750000px;}
.y187{bottom:442.470000px;}
.y10e{bottom:447.240000px;}
.y1b{bottom:447.510000px;}
.y85{bottom:450.120000px;}
.yb3{bottom:458.850000px;}
.y10b{bottom:459.840000px;}
.y1a{bottom:465.060000px;}
.y10c{bottom:465.330000px;}
.ye2{bottom:465.690000px;}
.y186{bottom:469.110000px;}
.y15b{bottom:475.440000px;}
.yb1{bottom:476.430000px;}
.y10a{bottom:478.050000px;}
.yb2{bottom:481.920000px;}
.y19{bottom:482.730000px;}
.y84{bottom:485.790000px;}
.y185{bottom:486.690000px;}
.ye1{bottom:493.080000px;}
.yaf{bottom:494.610000px;}
.y109{bottom:495.600000px;}
.yb0{bottom:500.100000px;}
.y18{bottom:500.280000px;}
.y83{bottom:503.430000px;}
.y3e{bottom:509.820000px;}
.y108{bottom:513.240000px;}
.y184{bottom:513.330000px;}
.y1a6{bottom:513.690000px;}
.y17{bottom:517.830000px;}
.ye0{bottom:520.350000px;}
.y82{bottom:520.980000px;}
.y15a{bottom:523.770000px;}
.yac{bottom:530.880000px;}
.y1a5{bottom:531.330000px;}
.y16{bottom:535.470000px;}
.yae{bottom:536.370000px;}
.yad{bottom:536.730000px;}
.y81{bottom:538.530000px;}
.y183{bottom:539.880000px;}
.y159{bottom:541.320000px;}
.y107{bottom:546.180000px;}
.ydf{bottom:547.710000px;}
.y1a4{bottom:548.880000px;}
.yaa{bottom:549.510000px;}
.y15{bottom:553.020000px;}
.yab{bottom:555.360000px;}
.y80{bottom:556.170000px;}
.y182{bottom:557.430000px;}
.y158{bottom:558.870000px;}
.y1a3{bottom:566.430000px;}
.y14{bottom:570.660000px;}
.y104{bottom:573.540000px;}
.y7f{bottom:573.720000px;}
.y157{bottom:576.510000px;}
.ya9{bottom:576.960000px;}
.y181{bottom:584.070000px;}
.y13{bottom:588.210000px;}
.y7e{bottom:591.360000px;}
.y1a2{bottom:593.070000px;}
.y156{bottom:594.060000px;}
.yde{bottom:596.400000px;}
.y180{bottom:601.620000px;}
.y12{bottom:605.760000px;}
.y7d{bottom:608.910000px;}
.y1a1{bottom:610.620000px;}
.y155{bottom:611.700000px;}
.ya8{bottom:614.220000px;}
.y17f{bottom:619.260000px;}
.y103{bottom:622.770000px;}
.ydd{bottom:623.040000px;}
.y7c{bottom:626.460000px;}
.y1a0{bottom:628.260000px;}
.ya6{bottom:628.980000px;}
.y154{bottom:629.250000px;}
.y11{bottom:632.670000px;}
.ya7{bottom:634.470000px;}
.ydc{bottom:640.590000px;}
.y7b{bottom:644.100000px;}
.y17e{bottom:645.810000px;}
.y153{bottom:646.800000px;}
.y102{bottom:649.320000px;}
.y19f{bottom:654.810000px;}
.ydb{bottom:658.140000px;}
.y7a{bottom:661.650000px;}
.y17d{bottom:663.360000px;}
.y152{bottom:664.440000px;}
.y101{bottom:666.870000px;}
.y19e{bottom:672.360000px;}
.y79{bottom:679.290000px;}
.ya5{bottom:680.910000px;}
.y10{bottom:681.000000px;}
.y100{bottom:684.510000px;}
.yda{bottom:685.050000px;}
.y11d{bottom:685.590000px;}
.y17c{bottom:690.000000px;}
.y151{bottom:691.350000px;}
.y78{bottom:696.840000px;}
.ya4{bottom:698.460000px;}
.yff{bottom:702.060000px;}
.y11c{bottom:703.140000px;}
.y17b{bottom:707.550000px;}
.y19d{bottom:716.550000px;}
.yf{bottom:716.820000px;}
.y11b{bottom:720.780000px;}
.y77{bottom:723.390000px;}
.yd9{bottom:733.380000px;}
.ya3{bottom:734.010000px;}
.y17a{bottom:734.190000px;}
.yfe{bottom:737.700000px;}
.y11a{bottom:738.330000px;}
.y150{bottom:739.590000px;}
.yd8{bottom:750.930000px;}
.y65{bottom:751.020000px;}
.ya2{bottom:751.650000px;}
.y179{bottom:751.740000px;}
.ye{bottom:752.820000px;}
.yfd{bottom:755.250000px;}
.y119{bottom:755.970000px;}
.y14f{bottom:757.140000px;}
.y76{bottom:759.300000px;}
.y19c{bottom:760.740000px;}
.y52{bottom:762.270000px;}
.yd7{bottom:768.570000px;}
.ya1{bottom:769.200000px;}
.yfc{bottom:772.800000px;}
.y14e{bottom:774.780000px;}
.y13e{bottom:775.590000px;}
.y178{bottom:778.290000px;}
.yd6{bottom:782.880000px;}
.yd5{bottom:790.440000px;}
.y118{bottom:791.520000px;}
.yd{bottom:792.330000px;}
.y177{bottom:795.930000px;}
.y19b{bottom:804.930000px;}
.y75{bottom:805.020000px;}
.yc{bottom:806.100000px;}
.y9f{bottom:806.460000px;}
.y3c{bottom:809.790000px;}
.y14d{bottom:809.970000px;}
.ya0{bottom:811.140000px;}
.y13d{bottom:811.230000px;}
.yd4{bottom:812.130000px;}
.y117{bottom:814.740000px;}
.y9e{bottom:821.220000px;}
.y176{bottom:822.480000px;}
.yfb{bottom:825.990000px;}
.yb{bottom:827.520000px;}
.y13c{bottom:828.780000px;}
.y175{bottom:840.030000px;}
.yfa{bottom:843.540000px;}
.ya{bottom:845.070000px;}
.y14c{bottom:845.520000px;}
.y13b{bottom:846.330000px;}
.yd3{bottom:847.680000px;}
.y19a{bottom:849.030000px;}
.y174{bottom:857.670000px;}
.y3b{bottom:858.480000px;}
.y9{bottom:858.930000px;}
.yf9{bottom:861.180000px;}
.y13a{bottom:863.970000px;}
.y199{bottom:866.670000px;}
.y9d{bottom:873.150000px;}
.y14b{bottom:877.740000px;}
.yf8{bottom:878.730000px;}
.y8{bottom:880.260000px;}
.y138{bottom:881.520000px;}
.yd2{bottom:883.320000px;}
.y173{bottom:884.220000px;}
.y139{bottom:887.010000px;}
.y9c{bottom:890.700000px;}
.y198{bottom:893.220000px;}
.y3a{bottom:894.030000px;}
.y7{bottom:897.810000px;}
.y137{bottom:899.610000px;}
.y172{bottom:901.860000px;}
.y197{bottom:910.860000px;}
.y39{bottom:911.670000px;}
.yf7{bottom:914.280000px;}
.y136{bottom:917.250000px;}
.yd1{bottom:920.220000px;}
.y9b{bottom:926.250000px;}
.y171{bottom:928.410000px;}
.y38{bottom:929.220000px;}
.y6{bottom:929.940000px;}
.y135{bottom:934.800000px;}
.y196{bottom:937.410000px;}
.yd0{bottom:937.860000px;}
.y9a{bottom:944.970000px;}
.y37{bottom:946.860000px;}
.y5{bottom:949.290000px;}
.yf6{bottom:950.730000px;}
.y133{bottom:952.350000px;}
.y170{bottom:954.960000px;}
.ycf{bottom:955.410000px;}
.y134{bottom:956.850000px;}
.y99{bottom:964.320000px;}
.y36{bottom:964.410000px;}
.y16f{bottom:972.600000px;}
.yce{bottom:972.960000px;}
.y132{bottom:973.950000px;}
.y195{bottom:981.600000px;}
.y35{bottom:981.960000px;}
.y98{bottom:983.580000px;}
.yf5{bottom:986.370000px;}
.y4{bottom:987.630000px;}
.y16e{bottom:990.150000px;}
.ycd{bottom:990.600000px;}
.y130{bottom:991.590000px;}
.y131{bottom:997.080000px;}
.y194{bottom:999.150000px;}
.y34{bottom:999.600000px;}
.yf4{bottom:1003.920000px;}
.ycc{bottom:1008.150000px;}
.y12f{bottom:1009.710000px;}
.y3{bottom:1012.320000px;}
.y16d{bottom:1016.820000px;}
.y33{bottom:1017.180000px;}
.y97{bottom:1019.250000px;}
.ycb{bottom:1025.820000px;}
.y12e{bottom:1027.260000px;}
.y16c{bottom:1034.370000px;}
.y32{bottom:1034.820000px;}
.yf3{bottom:1036.890000px;}
.y96{bottom:1038.510000px;}
.yca{bottom:1043.370000px;}
.y16b{bottom:1051.920000px;}
.y31{bottom:1052.370000px;}
.y95{bottom:1053.270000px;}
.y12d{bottom:1060.290000px;}
.yc9{bottom:1060.920000px;}
.yf2{bottom:1064.250000px;}
.y30{bottom:1069.920000px;}
.yc8{bottom:1078.560000px;}
.y2f{bottom:1087.560000px;}
.yf1{bottom:1091.610000px;}
.yc7{bottom:1096.110000px;}
.y2e{bottom:1105.110000px;}
.yc6{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h9{height:26.550000px;}
.h26{height:26.580000px;}
.h25{height:26.640000px;}
.h27{height:27.090000px;}
.h2{height:30.022383px;}
.h29{height:30.600000px;}
.h6{height:37.191445px;}
.h3{height:39.155273px;}
.h1e{height:39.990234px;}
.h1c{height:46.788574px;}
.h21{height:46.983691px;}
.h20{height:47.343691px;}
.h11{height:48.690000px;}
.h2a{height:48.783691px;}
.ha{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h28{height:61.793886px;}
.h14{height:62.585859px;}
.h18{height:66.783691px;}
.h13{height:68.582109px;}
.h22{height:68.748574px;}
.h15{height:69.303691px;}
.h4{height:72.985430px;}
.h23{height:82.068574px;}
.h24{height:82.551445px;}
.h1d{height:83.148574px;}
.h1f{height:97.023691px;}
.h1a{height:107.103691px;}
.h1b{height:111.588574px;}
.h17{height:125.823691px;}
.h16{height:133.548574px;}
.h19{height:171.183691px;}
.hb{height:299.250000px;}
.hc{height:326.280000px;}
.h12{height:348.780000px;}
.hd{height:391.530000px;}
.hf{height:402.780000px;}
.he{height:420.780000px;}
.h10{height:427.530000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:4.500000px;}
.w3{width:54.840000px;}
.w11{width:60.120000px;}
.w12{width:68.430000px;}
.w6{width:74.520000px;}
.wf{width:89.190000px;}
.w10{width:89.220000px;}
.we{width:89.460000px;}
.wa{width:89.550000px;}
.wb{width:89.580000px;}
.w5{width:108.360000px;}
.w9{width:110.880000px;}
.w13{width:112.500000px;}
.w14{width:112.530000px;}
.wc{width:130.950000px;}
.wd{width:423.210000px;}
.w4{width:454.260000px;}
.w8{width:814.320000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x1d{left:-1.980000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x35{left:18.450000px;}
.x33{left:21.420000px;}
.x45{left:25.470000px;}
.x36{left:29.430000px;}
.x46{left:33.570000px;}
.x43{left:38.070000px;}
.x40{left:46.980000px;}
.x41{left:55.080000px;}
.x1{left:68.040000px;}
.x1c{left:74.430000px;}
.x1b{left:75.869987px;}
.x17{left:78.749987px;}
.x1e{left:87.479987px;}
.x25{left:107.819987px;}
.x4f{left:111.239987px;}
.x1f{left:113.669987px;}
.x21{left:124.739987px;}
.x3a{left:131.309987px;}
.x4{left:137.160000px;}
.x20{left:138.599987px;}
.x6{left:192.720000px;}
.x2{left:211.079987px;}
.x3f{left:220.530000px;}
.x31{left:222.059987px;}
.x29{left:230.429987px;}
.x22{left:234.389987px;}
.x26{left:254.459987px;}
.x13{left:258.869987px;}
.x4c{left:268.049987px;}
.x14{left:269.849987px;}
.x2b{left:271.019987px;}
.x23{left:273.989987px;}
.x4e{left:288.659987px;}
.x1a{left:291.269987px;}
.x3c{left:297.029987px;}
.x10{left:298.739987px;}
.x24{left:310.259987px;}
.x2f{left:311.880000px;}
.x27{left:318.539987px;}
.x3e{left:319.799987px;}
.x32{left:321.150000px;}
.xe{left:324.029987px;}
.x11{left:326.819987px;}
.x42{left:333.750000px;}
.x2c{left:346.620000px;}
.xd{left:354.899987px;}
.x47{left:358.499987px;}
.x15{left:370.289987px;}
.x34{left:381.990000px;}
.xf{left:388.919987px;}
.x2a{left:390.179987px;}
.xc{left:401.520000px;}
.x39{left:411.419987px;}
.x9{left:412.770000px;}
.x8{left:415.020000px;}
.xa{left:433.020000px;}
.x2d{left:436.890000px;}
.x37{left:442.830000px;}
.xb{left:446.520000px;}
.x28{left:471.449987px;}
.x12{left:486.659987px;}
.x30{left:492.150000px;}
.x49{left:504.119987px;}
.x38{left:511.980000px;}
.x2e{left:527.280000px;}
.x44{left:560.310000px;}
.x4a{left:634.019987px;}
.x16{left:644.549987px;}
.x7{left:647.700000px;}
.x4d{left:698.639987px;}
.x48{left:703.949987px;}
.x3b{left:717.809987px;}
.x18{left:742.829987px;}
.x4b{left:744.809987px;}
.x3d{left:759.389987px;}
.x3{left:800.339987px;}
.x19{left:810.779987px;}
@media print{
.v1a{vertical-align:-62.400000pt;}
.v19{vertical-align:-32.640000pt;}
.v16{vertical-align:-30.400000pt;}
.v13{vertical-align:-22.080000pt;}
.v10{vertical-align:-20.800000pt;}
.ve{vertical-align:-19.520000pt;}
.v1{vertical-align:-18.560000pt;}
.v17{vertical-align:-17.280000pt;}
.v1b{vertical-align:-16.000000pt;}
.v14{vertical-align:-14.400000pt;}
.v3{vertical-align:-13.440000pt;}
.vf{vertical-align:-12.160000pt;}
.v5{vertical-align:-10.880000pt;}
.v12{vertical-align:-8.000000pt;}
.v18{vertical-align:-3.520000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.240000pt;}
.v9{vertical-align:10.880000pt;}
.v2{vertical-align:13.440000pt;}
.vc{vertical-align:16.960000pt;}
.v7{vertical-align:19.520000pt;}
.v15{vertical-align:26.880000pt;}
.v11{vertical-align:32.000000pt;}
.va{vertical-align:35.520000pt;}
.vd{vertical-align:40.320000pt;}
.v8{vertical-align:41.600000pt;}
.vb{vertical-align:46.400000pt;}
.lsd{letter-spacing:-0.402133pt;}
.ls53{letter-spacing:-0.373867pt;}
.ls3d{letter-spacing:-0.254933pt;}
.lsb{letter-spacing:-0.253867pt;}
.ls4c{letter-spacing:-0.210133pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls52{letter-spacing:-0.158933pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls4d{letter-spacing:-0.066667pt;}
.ls4e{letter-spacing:-0.044160pt;}
.ls17{letter-spacing:-0.034560pt;}
.ls41{letter-spacing:-0.028160pt;}
.ls3c{letter-spacing:-0.027200pt;}
.ls40{letter-spacing:-0.016320pt;}
.ls4b{letter-spacing:-0.009920pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.005440pt;}
.lsf{letter-spacing:0.020480pt;}
.ls12{letter-spacing:0.040320pt;}
.ls47{letter-spacing:0.042880pt;}
.ls13{letter-spacing:0.043520pt;}
.ls15{letter-spacing:0.047360pt;}
.ls1c{letter-spacing:0.053760pt;}
.ls8{letter-spacing:0.053867pt;}
.ls35{letter-spacing:0.054400pt;}
.ls3{letter-spacing:0.058240pt;}
.ls18{letter-spacing:0.062933pt;}
.ls3e{letter-spacing:0.065067pt;}
.lse{letter-spacing:0.065920pt;}
.ls30{letter-spacing:0.072960pt;}
.ls2{letter-spacing:0.080000pt;}
.ls16{letter-spacing:0.082133pt;}
.ls1{letter-spacing:0.083200pt;}
.ls55{letter-spacing:0.087467pt;}
.ls46{letter-spacing:0.091733pt;}
.ls28{letter-spacing:0.102720pt;}
.ls54{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.ls45{letter-spacing:0.130133pt;}
.ls23{letter-spacing:0.137600pt;}
.ls2b{letter-spacing:0.149440pt;}
.ls10{letter-spacing:0.154133pt;}
.ls3f{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls25{letter-spacing:1.478720pt;}
.ls48{letter-spacing:2.250880pt;}
.ls37{letter-spacing:2.322240pt;}
.ls43{letter-spacing:2.331200pt;}
.ls36{letter-spacing:2.402560pt;}
.ls42{letter-spacing:3.366400pt;}
.ls4a{letter-spacing:6.803200pt;}
.ls38{letter-spacing:8.694400pt;}
.ls2c{letter-spacing:9.440000pt;}
.ls1b{letter-spacing:9.682240pt;}
.ls3a{letter-spacing:11.422400pt;}
.ls1e{letter-spacing:11.628480pt;}
.ls34{letter-spacing:11.735147pt;}
.ls3b{letter-spacing:11.920320pt;}
.ls14{letter-spacing:11.948480pt;}
.ls1d{letter-spacing:13.842240pt;}
.ls26{letter-spacing:14.162240pt;}
.ls29{letter-spacing:14.410880pt;}
.ls51{letter-spacing:14.517547pt;}
.ls33{letter-spacing:14.792960pt;}
.ls21{letter-spacing:14.800320pt;}
.ls2d{letter-spacing:14.880000pt;}
.ls32{letter-spacing:16.082240pt;}
.ls31{letter-spacing:16.402240pt;}
.ls19{letter-spacing:17.042240pt;}
.ls2a{letter-spacing:17.930880pt;}
.ls2f{letter-spacing:19.602240pt;}
.ls49{letter-spacing:21.130880pt;}
.ls24{letter-spacing:25.930880pt;}
.ls50{letter-spacing:28.810880pt;}
.ls4f{letter-spacing:29.130880pt;}
.ls39{letter-spacing:30.802240pt;}
.ls27{letter-spacing:32.722240pt;}
.ls20{letter-spacing:36.562240pt;}
.ls57{letter-spacing:42.423680pt;}
.ls44{letter-spacing:50.901440pt;}
.ls56{letter-spacing:71.863680pt;}
.ls2e{letter-spacing:85.202240pt;}
.ls1f{letter-spacing:95.727787pt;}
.ls22{letter-spacing:246.908907pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.ws1d{word-spacing:-11.848533pt;}
.ws1a{word-spacing:-11.810667pt;}
.wsa{word-spacing:-11.804160pt;}
.ws9{word-spacing:-11.800320pt;}
.ws20{word-spacing:-11.799680pt;}
.ws2{word-spacing:-11.756800pt;}
.ws1e{word-spacing:-11.746880pt;}
.ws19{word-spacing:-11.740480pt;}
.wse{word-spacing:-11.722240pt;}
.ws22{word-spacing:-11.712640pt;}
.ws21{word-spacing:-11.690133pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws1b{word-spacing:-8.366933pt;}
.wsd{word-spacing:-8.318933pt;}
.ws10{word-spacing:-8.236800pt;}
.ws1f{word-spacing:-8.026667pt;}
.ws11{word-spacing:-7.666133pt;}
.ws5{word-spacing:0.000000pt;}
.ws16{word-spacing:1.624320pt;}
.ws18{word-spacing:2.936640pt;}
.ws23{word-spacing:3.043307pt;}
.wsc{word-spacing:3.043520pt;}
.ws3{word-spacing:3.826560pt;}
.wsf{word-spacing:5.441280pt;}
.ws17{word-spacing:6.191040pt;}
.ws12{word-spacing:6.263680pt;}
.ws15{word-spacing:6.511040pt;}
.wsb{word-spacing:8.001280pt;}
.ws14{word-spacing:9.071040pt;}
.ws13{word-spacing:9.143680pt;}
.ws1c{word-spacing:9.439040pt;}
._13{margin-left:-23.526400pt;}
._11{margin-left:-22.422144pt;}
._14{margin-left:-9.117440pt;}
._16{margin-left:-7.725718pt;}
._7{margin-left:-3.332800pt;}
._6{margin-left:-1.957867pt;}
._0{margin-left:-0.981333pt;}
._1{width:1.043691pt;}
._2{width:2.517846pt;}
._3{width:3.521745pt;}
._5{width:4.526443pt;}
._4{width:5.522474pt;}
._c{width:6.718934pt;}
._a{width:7.802133pt;}
._b{width:8.841538pt;}
._10{width:9.862462pt;}
._9{width:10.867733pt;}
._12{width:12.058176pt;}
._e{width:13.005333pt;}
._d{width:13.947733pt;}
._8{width:14.909867pt;}
._17{width:16.135680pt;}
._f{width:17.742080pt;}
._18{width:54.134720pt;}
._19{width:60.835840pt;}
._1a{width:61.755093pt;}
._15{width:236.671936pt;}
.fs7{font-size:32.000000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:4.000000pt;}
.y3d{bottom:6.960000pt;}
.ye3{bottom:6.986667pt;}
.y74{bottom:7.040000pt;}
.y106{bottom:7.200000pt;}
.y12a{bottom:8.560000pt;}
.y12c{bottom:10.960000pt;}
.y105{bottom:11.840000pt;}
.y12b{bottom:13.440000pt;}
.y73{bottom:26.640000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y51{bottom:96.720000pt;}
.y94{bottom:101.626667pt;}
.y16a{bottom:102.746667pt;}
.y129{bottom:111.466667pt;}
.y50{bottom:116.320000pt;}
.y93{bottom:117.306667pt;}
.y169{bottom:118.346667pt;}
.yf0{bottom:121.066667pt;}
.y29{bottom:125.786667pt;}
.y128{bottom:127.066667pt;}
.yc5{bottom:130.186667pt;}
.y45{bottom:131.520000pt;}
.y92{bottom:132.906667pt;}
.y193{bottom:133.786667pt;}
.y168{bottom:133.946667pt;}
.y4f{bottom:136.000000pt;}
.yef{bottom:136.666667pt;}
.y28{bottom:141.466667pt;}
.y127{bottom:142.666667pt;}
.y91{bottom:148.506667pt;}
.y44{bottom:151.200000pt;}
.y4e{bottom:155.600000pt;}
.y27{bottom:157.066667pt;}
.y192{bottom:157.386667pt;}
.y167{bottom:157.626667pt;}
.yee{bottom:160.346667pt;}
.yc4{bottom:161.786667pt;}
.y47{bottom:162.426667pt;}
.y90{bottom:164.186667pt;}
.y14a{bottom:165.466667pt;}
.y126{bottom:166.346667pt;}
.y71{bottom:167.066667pt;}
.y43{bottom:170.800000pt;}
.y26{bottom:172.666667pt;}
.y166{bottom:173.226667pt;}
.y5b{bottom:174.320000pt;}
.y4d{bottom:175.200000pt;}
.y8f{bottom:179.786667pt;}
.y191{bottom:180.986667pt;}
.y149{bottom:181.066667pt;}
.y70{bottom:186.746667pt;}
.y25{bottom:188.346667pt;}
.y165{bottom:188.906667pt;}
.y42{bottom:190.400000pt;}
.yed{bottom:191.946667pt;}
.yc3{bottom:193.466667pt;}
.y5a{bottom:193.920000pt;}
.y4c{bottom:194.880000pt;}
.y125{bottom:197.946667pt;}
.y8e{bottom:203.386667pt;}
.y24{bottom:203.946667pt;}
.y164{bottom:204.506667pt;}
.y190{bottom:204.666667pt;}
.y148{bottom:204.746667pt;}
.y6f{bottom:206.346667pt;}
.yec{bottom:207.546667pt;}
.yc2{bottom:209.066667pt;}
.y41{bottom:210.080000pt;}
.y59{bottom:213.520000pt;}
.y124{bottom:213.626667pt;}
.y4b{bottom:214.480000pt;}
.y23{bottom:219.626667pt;}
.y18f{bottom:220.266667pt;}
.yeb{bottom:223.226667pt;}
.yc1{bottom:224.746667pt;}
.y6e{bottom:226.026667pt;}
.y163{bottom:228.106667pt;}
.y123{bottom:229.226667pt;}
.y40{bottom:229.680000pt;}
.y58{bottom:233.226667pt;}
.y4a{bottom:234.160000pt;}
.y8d{bottom:235.066667pt;}
.y22{bottom:235.226667pt;}
.y147{bottom:236.346667pt;}
.yea{bottom:238.826667pt;}
.y63{bottom:239.626667pt;}
.yc0{bottom:240.346667pt;}
.y72{bottom:242.906667pt;}
.y162{bottom:243.786667pt;}
.y18e{bottom:243.946667pt;}
.y122{bottom:244.826667pt;}
.y6d{bottom:245.626667pt;}
.y3f{bottom:249.360000pt;}
.y8c{bottom:250.666667pt;}
.y21{bottom:250.826667pt;}
.y116{bottom:251.626667pt;}
.y146{bottom:251.946667pt;}
.y57{bottom:252.826667pt;}
.y49{bottom:253.760000pt;}
.ybf{bottom:255.946667pt;}
.y62{bottom:259.226667pt;}
.y161{bottom:259.386667pt;}
.y121{bottom:260.506667pt;}
.y6c{bottom:265.226667pt;}
.y8b{bottom:266.346667pt;}
.y20{bottom:266.506667pt;}
.y115{bottom:267.306667pt;}
.y18d{bottom:267.546667pt;}
.y145{bottom:267.626667pt;}
.ye9{bottom:268.186667pt;}
.y56{bottom:272.426667pt;}
.y48{bottom:273.386667pt;}
.y120{bottom:276.106667pt;}
.y64{bottom:278.586667pt;}
.y61{bottom:278.906667pt;}
.ybe{bottom:279.626667pt;}
.y8a{bottom:281.946667pt;}
.y1f{bottom:282.106667pt;}
.y114{bottom:282.906667pt;}
.y160{bottom:283.066667pt;}
.y144{bottom:283.226667pt;}
.y6b{bottom:284.906667pt;}
.y66{bottom:286.826667pt;}
.y18c{bottom:291.146667pt;}
.y55{bottom:292.106667pt;}
.ye8{bottom:292.426667pt;}
.y1e{bottom:297.786667pt;}
.y60{bottom:298.506667pt;}
.y113{bottom:298.586667pt;}
.y15f{bottom:298.666667pt;}
.y143{bottom:298.906667pt;}
.y5c{bottom:302.826667pt;}
.y6a{bottom:304.506667pt;}
.y89{bottom:305.546667pt;}
.y18b{bottom:306.826667pt;}
.y11f{bottom:307.786667pt;}
.y54{bottom:311.706667pt;}
.y112{bottom:314.186667pt;}
.y142{bottom:314.506667pt;}
.ybb{bottom:315.466667pt;}
.ye7{bottom:316.746667pt;}
.y5f{bottom:318.186667pt;}
.ybc{bottom:320.346667pt;}
.ybd{bottom:320.426667pt;}
.y1d{bottom:321.626667pt;}
.y15e{bottom:322.586667pt;}
.y69{bottom:324.186667pt;}
.y111{bottom:329.786667pt;}
.y141{bottom:330.106667pt;}
.y18a{bottom:330.426667pt;}
.y53{bottom:331.386667pt;}
.y11e{bottom:336.426667pt;}
.y88{bottom:337.226667pt;}
.y5e{bottom:337.786667pt;}
.ye6{bottom:341.066667pt;}
.y68{bottom:343.786667pt;}
.yb9{bottom:348.266667pt;}
.y87{bottom:352.826667pt;}
.y189{bottom:354.106667pt;}
.yb5{bottom:354.986667pt;}
.y5d{bottom:357.386667pt;}
.yb7{bottom:358.506667pt;}
.yb6{bottom:358.986667pt;}
.yba{bottom:359.866667pt;}
.y110{bottom:361.466667pt;}
.y140{bottom:361.786667pt;}
.y67{bottom:363.386667pt;}
.y1c{bottom:364.826667pt;}
.ye5{bottom:365.306667pt;}
.y15d{bottom:365.466667pt;}
.yb8{bottom:366.586667pt;}
.y10f{bottom:377.066667pt;}
.y188{bottom:377.706667pt;}
.y86{bottom:384.506667pt;}
.y15c{bottom:389.386667pt;}
.ye4{bottom:389.626667pt;}
.y13f{bottom:390.426667pt;}
.yb4{bottom:392.266667pt;}
.y10d{bottom:392.666667pt;}
.y187{bottom:393.306667pt;}
.y10e{bottom:397.546667pt;}
.y1b{bottom:397.786667pt;}
.y85{bottom:400.106667pt;}
.yb3{bottom:407.866667pt;}
.y10b{bottom:408.746667pt;}
.y1a{bottom:413.386667pt;}
.y10c{bottom:413.626667pt;}
.ye2{bottom:413.946667pt;}
.y186{bottom:416.986667pt;}
.y15b{bottom:422.613333pt;}
.yb1{bottom:423.493333pt;}
.y10a{bottom:424.933333pt;}
.yb2{bottom:428.373333pt;}
.y19{bottom:429.093333pt;}
.y84{bottom:431.813333pt;}
.y185{bottom:432.613333pt;}
.ye1{bottom:438.293333pt;}
.yaf{bottom:439.653333pt;}
.y109{bottom:440.533333pt;}
.yb0{bottom:444.533333pt;}
.y18{bottom:444.693333pt;}
.y83{bottom:447.493333pt;}
.y3e{bottom:453.173333pt;}
.y108{bottom:456.213333pt;}
.y184{bottom:456.293333pt;}
.y1a6{bottom:456.613333pt;}
.y17{bottom:460.293333pt;}
.ye0{bottom:462.533333pt;}
.y82{bottom:463.093333pt;}
.y15a{bottom:465.573333pt;}
.yac{bottom:471.893333pt;}
.y1a5{bottom:472.293333pt;}
.y16{bottom:475.973333pt;}
.yae{bottom:476.773333pt;}
.yad{bottom:477.093333pt;}
.y81{bottom:478.693333pt;}
.y183{bottom:479.893333pt;}
.y159{bottom:481.173333pt;}
.y107{bottom:485.493333pt;}
.ydf{bottom:486.853333pt;}
.y1a4{bottom:487.893333pt;}
.yaa{bottom:488.453333pt;}
.y15{bottom:491.573333pt;}
.yab{bottom:493.653333pt;}
.y80{bottom:494.373333pt;}
.y182{bottom:495.493333pt;}
.y158{bottom:496.773333pt;}
.y1a3{bottom:503.493333pt;}
.y14{bottom:507.253333pt;}
.y104{bottom:509.813333pt;}
.y7f{bottom:509.973333pt;}
.y157{bottom:512.453333pt;}
.ya9{bottom:512.853333pt;}
.y181{bottom:519.173333pt;}
.y13{bottom:522.853333pt;}
.y7e{bottom:525.653333pt;}
.y1a2{bottom:527.173333pt;}
.y156{bottom:528.053333pt;}
.yde{bottom:530.133333pt;}
.y180{bottom:534.773333pt;}
.y12{bottom:538.453333pt;}
.y7d{bottom:541.253333pt;}
.y1a1{bottom:542.773333pt;}
.y155{bottom:543.733333pt;}
.ya8{bottom:545.973333pt;}
.y17f{bottom:550.453333pt;}
.y103{bottom:553.573333pt;}
.ydd{bottom:553.813333pt;}
.y7c{bottom:556.853333pt;}
.y1a0{bottom:558.453333pt;}
.ya6{bottom:559.093333pt;}
.y154{bottom:559.333333pt;}
.y11{bottom:562.373333pt;}
.ya7{bottom:563.973333pt;}
.ydc{bottom:569.413333pt;}
.y7b{bottom:572.533333pt;}
.y17e{bottom:574.053333pt;}
.y153{bottom:574.933333pt;}
.y102{bottom:577.173333pt;}
.y19f{bottom:582.053333pt;}
.ydb{bottom:585.013333pt;}
.y7a{bottom:588.133333pt;}
.y17d{bottom:589.653333pt;}
.y152{bottom:590.613333pt;}
.y101{bottom:592.773333pt;}
.y19e{bottom:597.653333pt;}
.y79{bottom:603.813333pt;}
.ya5{bottom:605.253333pt;}
.y10{bottom:605.333333pt;}
.y100{bottom:608.453333pt;}
.yda{bottom:608.933333pt;}
.y11d{bottom:609.413333pt;}
.y17c{bottom:613.333333pt;}
.y151{bottom:614.533333pt;}
.y78{bottom:619.413333pt;}
.ya4{bottom:620.853333pt;}
.yff{bottom:624.053333pt;}
.y11c{bottom:625.013333pt;}
.y17b{bottom:628.933333pt;}
.y19d{bottom:636.933333pt;}
.yf{bottom:637.173333pt;}
.y11b{bottom:640.693333pt;}
.y77{bottom:643.013333pt;}
.yd9{bottom:651.893333pt;}
.ya3{bottom:652.453333pt;}
.y17a{bottom:652.613333pt;}
.yfe{bottom:655.733333pt;}
.y11a{bottom:656.293333pt;}
.y150{bottom:657.413333pt;}
.yd8{bottom:667.493333pt;}
.y65{bottom:667.573333pt;}
.ya2{bottom:668.133333pt;}
.y179{bottom:668.213333pt;}
.ye{bottom:669.173333pt;}
.yfd{bottom:671.333333pt;}
.y119{bottom:671.973333pt;}
.y14f{bottom:673.013333pt;}
.y76{bottom:674.933333pt;}
.y19c{bottom:676.213333pt;}
.y52{bottom:677.573333pt;}
.yd7{bottom:683.173333pt;}
.ya1{bottom:683.733333pt;}
.yfc{bottom:686.933333pt;}
.y14e{bottom:688.693333pt;}
.y13e{bottom:689.413333pt;}
.y178{bottom:691.813333pt;}
.yd6{bottom:695.893333pt;}
.yd5{bottom:702.613333pt;}
.y118{bottom:703.573333pt;}
.yd{bottom:704.293333pt;}
.y177{bottom:707.493333pt;}
.y19b{bottom:715.493333pt;}
.y75{bottom:715.573333pt;}
.yc{bottom:716.533333pt;}
.y9f{bottom:716.853333pt;}
.y3c{bottom:719.813333pt;}
.y14d{bottom:719.973333pt;}
.ya0{bottom:721.013333pt;}
.y13d{bottom:721.093333pt;}
.yd4{bottom:721.893333pt;}
.y117{bottom:724.213333pt;}
.y9e{bottom:729.973333pt;}
.y176{bottom:731.093333pt;}
.yfb{bottom:734.213333pt;}
.yb{bottom:735.573333pt;}
.y13c{bottom:736.693333pt;}
.y175{bottom:746.693333pt;}
.yfa{bottom:749.813333pt;}
.ya{bottom:751.173333pt;}
.y14c{bottom:751.573333pt;}
.y13b{bottom:752.293333pt;}
.yd3{bottom:753.493333pt;}
.y19a{bottom:754.693333pt;}
.y174{bottom:762.373333pt;}
.y3b{bottom:763.093333pt;}
.y9{bottom:763.493333pt;}
.yf9{bottom:765.493333pt;}
.y13a{bottom:767.973333pt;}
.y199{bottom:770.373333pt;}
.y9d{bottom:776.133333pt;}
.y14b{bottom:780.213333pt;}
.yf8{bottom:781.093333pt;}
.y8{bottom:782.453333pt;}
.y138{bottom:783.573333pt;}
.yd2{bottom:785.173333pt;}
.y173{bottom:785.973333pt;}
.y139{bottom:788.453333pt;}
.y9c{bottom:791.733333pt;}
.y198{bottom:793.973333pt;}
.y3a{bottom:794.693333pt;}
.y7{bottom:798.053333pt;}
.y137{bottom:799.653333pt;}
.y172{bottom:801.653333pt;}
.y197{bottom:809.653333pt;}
.y39{bottom:810.373333pt;}
.yf7{bottom:812.693333pt;}
.y136{bottom:815.333333pt;}
.yd1{bottom:817.973333pt;}
.y9b{bottom:823.333333pt;}
.y171{bottom:825.253333pt;}
.y38{bottom:825.973333pt;}
.y6{bottom:826.613333pt;}
.y135{bottom:830.933333pt;}
.y196{bottom:833.253333pt;}
.yd0{bottom:833.653333pt;}
.y9a{bottom:839.973333pt;}
.y37{bottom:841.653333pt;}
.y5{bottom:843.813333pt;}
.yf6{bottom:845.093333pt;}
.y133{bottom:846.533333pt;}
.y170{bottom:848.853333pt;}
.ycf{bottom:849.253333pt;}
.y134{bottom:850.533333pt;}
.y99{bottom:857.173333pt;}
.y36{bottom:857.253333pt;}
.y16f{bottom:864.533333pt;}
.yce{bottom:864.853333pt;}
.y132{bottom:865.733333pt;}
.y195{bottom:872.533333pt;}
.y35{bottom:872.853333pt;}
.y98{bottom:874.293333pt;}
.yf5{bottom:876.773333pt;}
.y4{bottom:877.893333pt;}
.y16e{bottom:880.133333pt;}
.ycd{bottom:880.533333pt;}
.y130{bottom:881.413333pt;}
.y131{bottom:886.293333pt;}
.y194{bottom:888.133333pt;}
.y34{bottom:888.533333pt;}
.yf4{bottom:892.373333pt;}
.ycc{bottom:896.133333pt;}
.y12f{bottom:897.520000pt;}
.y3{bottom:899.840000pt;}
.y16d{bottom:903.840000pt;}
.y33{bottom:904.160000pt;}
.y97{bottom:906.000000pt;}
.ycb{bottom:911.840000pt;}
.y12e{bottom:913.120000pt;}
.y16c{bottom:919.440000pt;}
.y32{bottom:919.840000pt;}
.yf3{bottom:921.680000pt;}
.y96{bottom:923.120000pt;}
.yca{bottom:927.440000pt;}
.y16b{bottom:935.040000pt;}
.y31{bottom:935.440000pt;}
.y95{bottom:936.240000pt;}
.y12d{bottom:942.480000pt;}
.yc9{bottom:943.040000pt;}
.yf2{bottom:946.000000pt;}
.y30{bottom:951.040000pt;}
.yc8{bottom:958.720000pt;}
.y2f{bottom:966.720000pt;}
.yf1{bottom:970.320000pt;}
.yc7{bottom:974.320000pt;}
.y2e{bottom:982.320000pt;}
.yc6{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h9{height:23.600000pt;}
.h26{height:23.626667pt;}
.h25{height:23.680000pt;}
.h27{height:24.080000pt;}
.h2{height:26.686562pt;}
.h29{height:27.200000pt;}
.h6{height:33.059063pt;}
.h3{height:34.804688pt;}
.h1e{height:35.546875pt;}
.h1c{height:41.589844pt;}
.h21{height:41.763281pt;}
.h20{height:42.083281pt;}
.h11{height:43.280000pt;}
.h2a{height:43.363281pt;}
.ha{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h28{height:54.927899pt;}
.h14{height:55.631875pt;}
.h18{height:59.363281pt;}
.h13{height:60.961875pt;}
.h22{height:61.109844pt;}
.h15{height:61.603281pt;}
.h4{height:64.875937pt;}
.h23{height:72.949844pt;}
.h24{height:73.379062pt;}
.h1d{height:73.909844pt;}
.h1f{height:86.243281pt;}
.h1a{height:95.203281pt;}
.h1b{height:99.189844pt;}
.h17{height:111.843281pt;}
.h16{height:118.709844pt;}
.h19{height:152.163281pt;}
.hb{height:266.000000pt;}
.hc{height:290.026667pt;}
.h12{height:310.026667pt;}
.hd{height:348.026667pt;}
.hf{height:358.026667pt;}
.he{height:374.026667pt;}
.h10{height:380.026667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:4.000000pt;}
.w3{width:48.746667pt;}
.w11{width:53.440000pt;}
.w12{width:60.826667pt;}
.w6{width:66.240000pt;}
.wf{width:79.280000pt;}
.w10{width:79.306667pt;}
.we{width:79.520000pt;}
.wa{width:79.600000pt;}
.wb{width:79.626667pt;}
.w5{width:96.320000pt;}
.w9{width:98.560000pt;}
.w13{width:100.000000pt;}
.w14{width:100.026667pt;}
.wc{width:116.400000pt;}
.wd{width:376.186667pt;}
.w4{width:403.786667pt;}
.w8{width:723.840000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x1d{left:-1.760000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x35{left:16.400000pt;}
.x33{left:19.040000pt;}
.x45{left:22.640000pt;}
.x36{left:26.160000pt;}
.x46{left:29.840000pt;}
.x43{left:33.840000pt;}
.x40{left:41.760000pt;}
.x41{left:48.960000pt;}
.x1{left:60.480000pt;}
.x1c{left:66.160000pt;}
.x1b{left:67.439988pt;}
.x17{left:69.999988pt;}
.x1e{left:77.759988pt;}
.x25{left:95.839988pt;}
.x4f{left:98.879988pt;}
.x1f{left:101.039988pt;}
.x21{left:110.879988pt;}
.x3a{left:116.719988pt;}
.x4{left:121.920000pt;}
.x20{left:123.199988pt;}
.x6{left:171.306667pt;}
.x2{left:187.626655pt;}
.x3f{left:196.026667pt;}
.x31{left:197.386655pt;}
.x29{left:204.826655pt;}
.x22{left:208.346655pt;}
.x26{left:226.186655pt;}
.x13{left:230.106655pt;}
.x4c{left:238.266655pt;}
.x14{left:239.866655pt;}
.x2b{left:240.906655pt;}
.x23{left:243.546655pt;}
.x4e{left:256.586655pt;}
.x1a{left:258.906655pt;}
.x3c{left:264.026655pt;}
.x10{left:265.546655pt;}
.x24{left:275.786655pt;}
.x2f{left:277.226667pt;}
.x27{left:283.146655pt;}
.x3e{left:284.266655pt;}
.x32{left:285.466667pt;}
.xe{left:288.026655pt;}
.x11{left:290.506655pt;}
.x42{left:296.666667pt;}
.x2c{left:308.106667pt;}
.xd{left:315.466655pt;}
.x47{left:318.666655pt;}
.x15{left:329.146655pt;}
.x34{left:339.546667pt;}
.xf{left:345.706655pt;}
.x2a{left:346.826655pt;}
.xc{left:356.906667pt;}
.x39{left:365.706655pt;}
.x9{left:366.906667pt;}
.x8{left:368.906667pt;}
.xa{left:384.906667pt;}
.x2d{left:388.346667pt;}
.x37{left:393.626667pt;}
.xb{left:396.906667pt;}
.x28{left:419.066655pt;}
.x12{left:432.586655pt;}
.x30{left:437.466667pt;}
.x49{left:448.106655pt;}
.x38{left:455.093333pt;}
.x2e{left:468.693333pt;}
.x44{left:498.053333pt;}
.x4a{left:563.573322pt;}
.x16{left:572.933322pt;}
.x7{left:575.733333pt;}
.x4d{left:621.013322pt;}
.x48{left:625.733322pt;}
.x3b{left:638.053322pt;}
.x18{left:660.293322pt;}
.x4b{left:662.053322pt;}
.x3d{left:675.013322pt;}
.x3{left:711.413322pt;}
.x19{left:720.693322pt;}
}




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