
    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_9061de5ddedadf927d4f7c5c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_38c1011523a2519a081a7216.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d21791143e58cfc17172d46c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d778e242a1911f187817b64b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940918;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_b92f4c4a140b53eed111ee48.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.053223;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0fc7b215783bb0ad0a81a61d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9666dbc34afa22a1240881e2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_dc62600c14a57d127a27013c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8e2e98685962bf453b8a1744.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.948242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-0.463800px;}
.ls12{letter-spacing:-0.326400px;}
.ls7{letter-spacing:-0.303000px;}
.ls1e{letter-spacing:-0.269400px;}
.lse{letter-spacing:-0.228000px;}
.ls19{letter-spacing:-0.175800px;}
.ls4{letter-spacing:-0.132600px;}
.ls8{letter-spacing:-0.108600px;}
.ls29{letter-spacing:-0.107400px;}
.ls2b{letter-spacing:-0.078600px;}
.ls30{letter-spacing:-0.064800px;}
.lsc{letter-spacing:-0.058320px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.023760px;}
.ls3{letter-spacing:0.038880px;}
.ls1a{letter-spacing:0.060600px;}
.ls13{letter-spacing:0.064200px;}
.ls9{letter-spacing:0.066000px;}
.ls17{letter-spacing:0.126600px;}
.lsb{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.ls6{letter-spacing:0.150000px;}
.lsd{letter-spacing:0.169200px;}
.ls16{letter-spacing:0.174240px;}
.ls2a{letter-spacing:0.175200px;}
.ls26{letter-spacing:0.179280px;}
.ls1d{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.209400px;}
.ls1f{letter-spacing:0.218400px;}
.ls1b{letter-spacing:0.249000px;}
.ls1{letter-spacing:0.306000px;}
.lsa{letter-spacing:0.393600px;}
.ls11{letter-spacing:0.660000px;}
.lsf{letter-spacing:0.744000px;}
.ls2d{letter-spacing:0.780480px;}
.ls28{letter-spacing:4.986720px;}
.ls2f{letter-spacing:12.186720px;}
.ls24{letter-spacing:21.546720px;}
.ls23{letter-spacing:24.426720px;}
.ls25{letter-spacing:28.026720px;}
.ls2c{letter-spacing:40.986720px;}
.ls2e{letter-spacing:42.426720px;}
.ls14{letter-spacing:43.866720px;}
.ls21{letter-spacing:44.586720px;}
.ls20{letter-spacing:47.466720px;}
.ls22{letter-spacing:51.066720px;}
.ls15{letter-spacing:60.588000px;}
.ls1c{letter-spacing:65.610720px;}
.ls27{letter-spacing:129.546720px;}
.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;}
}
.ws11{word-spacing:-59.760000px;}
.ws12{word-spacing:-54.000000px;}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.wsc{word-spacing:-14.249760px;}
.wse{word-spacing:-14.165760px;}
.ws9{word-spacing:-13.811760px;}
.ws17{word-spacing:-13.724160px;}
.ws13{word-spacing:-13.715160px;}
.ws1b{word-spacing:-13.685040px;}
.ws19{word-spacing:-13.680960px;}
.wsf{word-spacing:-13.674960px;}
.ws7{word-spacing:-13.646160px;}
.ws14{word-spacing:-13.632360px;}
.ws10{word-spacing:-13.569960px;}
.wsd{word-spacing:-13.529520px;}
.ws6{word-spacing:-13.505760px;}
.ws8{word-spacing:-13.447440px;}
.ws1c{word-spacing:-13.440960px;}
.ws1a{word-spacing:-13.427160px;}
.ws16{word-spacing:-13.410720px;}
.ws18{word-spacing:-13.398360px;}
.wsb{word-spacing:-13.277760px;}
.ws15{word-spacing:-13.141320px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.wsa{word-spacing:0.000000px;}
._1e{margin-left:-533.278560px;}
._1f{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._12{margin-left:-292.350240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.330240px;}
._16{margin-left:-222.594000px;}
._22{margin-left:-207.538560px;}
._f{margin-left:-202.866240px;}
._19{margin-left:-201.453120px;}
._18{margin-left:-199.689600px;}
._21{margin-left:-189.220320px;}
._26{margin-left:-179.841600px;}
._e{margin-left:-171.054720px;}
._17{margin-left:-166.147200px;}
._d{margin-left:-164.962080px;}
._9{margin-left:-153.774720px;}
._10{margin-left:-152.486400px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._25{margin-left:-145.392000px;}
._c{margin-left:-134.552160px;}
._23{margin-left:-133.199760px;}
._11{margin-left:-114.982560px;}
._24{margin-left:-109.266240px;}
._1d{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1c{margin-left:-86.399760px;}
._1b{margin-left:-83.520000px;}
._13{margin-left:-81.171360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.303920px;}
._1a{margin-left:-31.530240px;}
._49{margin-left:-14.314080px;}
._28{margin-left:-5.127120px;}
._56{margin-left:-3.962160px;}
._27{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._20{width:1.046880px;}
._2a{width:2.387280px;}
._42{width:3.411120px;}
._2d{width:4.422240px;}
._30{width:5.736960px;}
._2f{width:7.649280px;}
._2c{width:9.434160px;}
._2b{width:10.891200px;}
._2e{width:12.147120px;}
._43{width:14.581440px;}
._3d{width:15.836400px;}
._38{width:17.270640px;}
._37{width:18.645120px;}
._47{width:19.720800px;}
._3c{width:21.812400px;}
._35{width:22.888080px;}
._29{width:24.344640px;}
._3a{width:26.099280px;}
._3e{width:27.310320px;}
._3f{width:28.864080px;}
._34{width:31.880880px;}
._33{width:33.047280px;}
._50{width:34.063200px;}
._31{width:37.290240px;}
._4d{width:38.306160px;}
._40{width:40.338000px;}
._41{width:41.382720px;}
._45{width:43.295040px;}
._39{width:44.820000px;}
._54{width:45.953280px;}
._4a{width:47.568960px;}
._53{width:51.214320px;}
._36{width:60.417360px;}
._48{width:62.210160px;}
._4c{width:66.393360px;}
._51{width:69.441120px;}
._4f{width:72.159120px;}
._4e{width:73.564560px;}
._32{width:89.102160px;}
._52{width:91.134000px;}
._55{width:92.568240px;}
._44{width:113.544000px;}
._4b{width:137.029680px;}
._46{width:231.649440px;}
._3b{width:700.865280px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.ye8{bottom:-15.660000px;}
.ydd{bottom:-15.480000px;}
.y0{bottom:0.000000px;}
.yd7{bottom:0.720000px;}
.yd5{bottom:1.800000px;}
.yd0{bottom:2.340000px;}
.ydb{bottom:2.520000px;}
.yec{bottom:2.880000px;}
.yd9{bottom:3.060000px;}
.yea{bottom:3.780000px;}
.ye2{bottom:4.500000px;}
.ye4{bottom:5.220000px;}
.y2a{bottom:6.660000px;}
.y119{bottom:7.380000px;}
.y20{bottom:7.740000px;}
.y113{bottom:8.100000px;}
.yf7{bottom:9.720000px;}
.y30{bottom:10.980000px;}
.ye7{bottom:12.600000px;}
.yd3{bottom:12.780000px;}
.y12c{bottom:12.960000px;}
.y146{bottom:13.680000px;}
.ydf{bottom:14.220000px;}
.y126{bottom:14.580000px;}
.y156{bottom:16.554000px;}
.y36{bottom:17.100000px;}
.y26{bottom:17.280000px;}
.y12f{bottom:17.640000px;}
.y10e{bottom:17.820000px;}
.y11a{bottom:17.994000px;}
.y11f{bottom:18.000000px;}
.y140{bottom:18.180000px;}
.y117{bottom:18.540000px;}
.y133{bottom:20.160000px;}
.y32{bottom:21.420000px;}
.y12e{bottom:23.040000px;}
.y148{bottom:23.400000px;}
.ye6{bottom:26.460000px;}
.yd2{bottom:26.640000px;}
.y157{bottom:26.994000px;}
.y10f{bottom:27.000000px;}
.y13e{bottom:27.390000px;}
.y153{bottom:27.714000px;}
.y29{bottom:27.720000px;}
.y3d{bottom:27.750000px;}
.y124{bottom:27.765000px;}
.yde{bottom:28.080000px;}
.y118{bottom:28.434000px;}
.y13c{bottom:28.440000px;}
.y141{bottom:28.800000px;}
.y112{bottom:29.160000px;}
.y135{bottom:30.600000px;}
.yf6{bottom:30.780000px;}
.y2f{bottom:32.085000px;}
.y12b{bottom:34.020000px;}
.y145{bottom:34.740000px;}
.y155{bottom:37.614000px;}
.y14e{bottom:37.620000px;}
.y34{bottom:38.160000px;}
.y25{bottom:38.340000px;}
.y13f{bottom:39.240000px;}
.y116{bottom:39.600000px;}
.y127{bottom:40.725000px;}
.y132{bottom:41.220000px;}
.y2c{bottom:42.525000px;}
.y150{bottom:47.160000px;}
.y152{bottom:48.774000px;}
.y22{bottom:48.780000px;}
.y10c{bottom:48.825000px;}
.yff{bottom:49.140000px;}
.y13b{bottom:49.500000px;}
.y111{bottom:50.220000px;}
.yf5{bottom:51.840000px;}
.y2e{bottom:53.145000px;}
.y12a{bottom:55.080000px;}
.y144{bottom:55.800000px;}
.y14d{bottom:58.725000px;}
.y38{bottom:59.214000px;}
.y35{bottom:59.220000px;}
.y24{bottom:59.400000px;}
.y115{bottom:60.660000px;}
.y6{bottom:61.416000px;}
.y131{bottom:62.280000px;}
.y31{bottom:63.585000px;}
.y39{bottom:69.834000px;}
.y28{bottom:69.840000px;}
.y11c{bottom:69.870000px;}
.y10b{bottom:69.885000px;}
.yfe{bottom:70.200000px;}
.y13a{bottom:70.590000px;}
.y110{bottom:71.280000px;}
.yf4{bottom:72.900000px;}
.y2d{bottom:74.205000px;}
.y129{bottom:76.140000px;}
.y143{bottom:76.860000px;}
.y14c{bottom:79.785000px;}
.y23{bottom:80.460000px;}
.y44{bottom:80.505000px;}
.y130{bottom:83.340000px;}
.y107{bottom:89.136000px;}
.y151{bottom:90.894000px;}
.y27{bottom:90.900000px;}
.y106{bottom:90.930000px;}
.y42{bottom:90.945000px;}
.y19c{bottom:91.116000px;}
.yfd{bottom:91.260000px;}
.y139{bottom:91.650000px;}
.y82{bottom:91.836000px;}
.y37{bottom:93.816000px;}
.ycb{bottom:94.896000px;}
.y14b{bottom:100.845000px;}
.y43{bottom:101.565000px;}
.yad{bottom:103.176000px;}
.y17d{bottom:106.776000px;}
.y57{bottom:111.456000px;}
.y46{bottom:111.960000px;}
.y103{bottom:111.990000px;}
.y41{bottom:112.005000px;}
.y19b{bottom:112.176000px;}
.yfc{bottom:112.320000px;}
.y81{bottom:112.896000px;}
.yca{bottom:115.956000px;}
.y14a{bottom:121.905000px;}
.yac{bottom:124.236000px;}
.y109{bottom:125.094000px;}
.y17c{bottom:127.836000px;}
.y56{bottom:132.516000px;}
.y4c{bottom:132.840000px;}
.y48{bottom:133.020000px;}
.y102{bottom:133.050000px;}
.y19a{bottom:133.236000px;}
.yfb{bottom:133.380000px;}
.y80{bottom:133.956000px;}
.y136{bottom:135.216000px;}
.yc9{bottom:137.016000px;}
.yab{bottom:145.296000px;}
.y1a9{bottom:145.656000px;}
.y108{bottom:146.154000px;}
.y17b{bottom:148.896000px;}
.y122{bottom:152.820000px;}
.y55{bottom:153.570000px;}
.y4b{bottom:153.930000px;}
.y47{bottom:154.080000px;}
.y105{bottom:154.110000px;}
.y199{bottom:154.290000px;}
.yfa{bottom:154.440000px;}
.y7f{bottom:155.010000px;}
.yc8{bottom:158.070000px;}
.yaa{bottom:166.350000px;}
.y17a{bottom:169.950000px;}
.yce{bottom:173.745000px;}
.y121{bottom:173.880000px;}
.y54{bottom:174.630000px;}
.y4a{bottom:174.990000px;}
.y198{bottom:175.350000px;}
.y7e{bottom:176.070000px;}
.y33{bottom:178.050000px;}
.yc7{bottom:179.130000px;}
.ya9{bottom:187.230000px;}
.ycc{bottom:189.765000px;}
.y179{bottom:191.010000px;}
.y53{bottom:195.690000px;}
.y197{bottom:196.230000px;}
.y154{bottom:196.950000px;}
.y7d{bottom:197.130000px;}
.yc6{bottom:200.190000px;}
.ya8{bottom:208.290000px;}
.y178{bottom:212.790000px;}
.y52{bottom:216.750000px;}
.y196{bottom:217.290000px;}
.y7c{bottom:218.190000px;}
.y114{bottom:219.630000px;}
.yc5{bottom:221.250000px;}
.ya7{bottom:229.350000px;}
.y1a8{bottom:230.610000px;}
.y177{bottom:233.850000px;}
.y51{bottom:237.810000px;}
.y195{bottom:238.350000px;}
.y7b{bottom:239.250000px;}
.y149{bottom:240.510000px;}
.yc4{bottom:242.310000px;}
.y137{bottom:245.379000px;}
.y1a7{bottom:248.970000px;}
.ya6{bottom:250.410000px;}
.y176{bottom:254.910000px;}
.y50{bottom:258.870000px;}
.y194{bottom:259.410000px;}
.y7a{bottom:260.310000px;}
.y2b{bottom:262.290000px;}
.y10a{bottom:263.010000px;}
.yc3{bottom:263.370000px;}
.y1a6{bottom:267.330000px;}
.ya5{bottom:271.470000px;}
.y175{bottom:275.970000px;}
.y4f{bottom:279.930000px;}
.y193{bottom:280.470000px;}
.y79{bottom:281.370000px;}
.yc2{bottom:284.430000px;}
.y1a5{bottom:285.690000px;}
.ya4{bottom:292.530000px;}
.y174{bottom:297.075000px;}
.y4e{bottom:301.035000px;}
.y192{bottom:301.575000px;}
.y78{bottom:302.475000px;}
.y1a4{bottom:303.915000px;}
.yc1{bottom:305.535000px;}
.y14f{bottom:305.715000px;}
.ya3{bottom:313.635000px;}
.y4d{bottom:316.155000px;}
.y173{bottom:318.135000px;}
.y1a3{bottom:322.275000px;}
.y191{bottom:322.635000px;}
.y77{bottom:323.535000px;}
.y10d{bottom:324.975000px;}
.yc0{bottom:326.595000px;}
.ya2{bottom:334.695000px;}
.y172{bottom:339.195000px;}
.y1a2{bottom:340.635000px;}
.y190{bottom:343.695000px;}
.y76{bottom:344.595000px;}
.ybf{bottom:347.655000px;}
.y21{bottom:355.215000px;}
.ya1{bottom:355.755000px;}
.yf0{bottom:357.690000px;}
.y1a1{bottom:358.995000px;}
.y171{bottom:360.255000px;}
.y18f{bottom:364.755000px;}
.y75{bottom:365.655000px;}
.yee{bottom:368.355000px;}
.ybe{bottom:368.715000px;}
.ya0{bottom:376.815000px;}
.y1a0{bottom:377.175000px;}
.yef{bottom:378.750000px;}
.y170{bottom:381.315000px;}
.y18e{bottom:385.815000px;}
.y74{bottom:386.715000px;}
.ybd{bottom:389.775000px;}
.y19f{bottom:395.535000px;}
.y9f{bottom:397.875000px;}
.y16f{bottom:402.375000px;}
.y18d{bottom:406.875000px;}
.y142{bottom:407.595000px;}
.y73{bottom:407.775000px;}
.ybc{bottom:410.835000px;}
.y19e{bottom:413.895000px;}
.y9e{bottom:418.935000px;}
.y49{bottom:421.455000px;}
.y16e{bottom:424.155000px;}
.y18c{bottom:427.935000px;}
.y72{bottom:428.835000px;}
.ybb{bottom:431.895000px;}
.y9d{bottom:439.995000px;}
.y16d{bottom:445.215000px;}
.y18b{bottom:448.995000px;}
.y71{bottom:449.895000px;}
.y19d{bottom:450.075000px;}
.y147{bottom:451.155000px;}
.y9c{bottom:461.055000px;}
.y1f{bottom:461.235000px;}
.yba{bottom:461.955000px;}
.y16c{bottom:466.275000px;}
.y18a{bottom:470.055000px;}
.y70{bottom:470.955000px;}
.y101{bottom:473.655000px;}
.y9b{bottom:482.115000px;}
.yb9{bottom:483.015000px;}
.y16b{bottom:487.335000px;}
.y189{bottom:491.115000px;}
.y1e{bottom:492.015000px;}
.y104{bottom:494.715000px;}
.y9a{bottom:503.175000px;}
.yb8{bottom:504.075000px;}
.y138{bottom:505.875000px;}
.y16a{bottom:508.395000px;}
.y188{bottom:512.175000px;}
.y1d{bottom:513.075000px;}
.y99{bottom:524.235000px;}
.yb7{bottom:525.135000px;}
.y169{bottom:529.455000px;}
.y187{bottom:533.235000px;}
.y1c{bottom:534.135000px;}
.y98{bottom:545.295000px;}
.yb6{bottom:546.195000px;}
.y168{bottom:550.515000px;}
.y186{bottom:554.295000px;}
.y1b{bottom:555.195000px;}
.y97{bottom:566.355000px;}
.yb5{bottom:567.255000px;}
.y13d{bottom:571.215000px;}
.y167{bottom:571.575000px;}
.y185{bottom:575.385000px;}
.y1a{bottom:576.285000px;}
.y96{bottom:587.445000px;}
.yb4{bottom:588.345000px;}
.y166{bottom:592.845000px;}
.y184{bottom:596.445000px;}
.y19{bottom:597.345000px;}
.y95{bottom:608.505000px;}
.yb3{bottom:609.405000px;}
.y45{bottom:610.845000px;}
.y165{bottom:614.625000px;}
.y183{bottom:617.505000px;}
.y18{bottom:618.405000px;}
.y94{bottom:629.565000px;}
.yb2{bottom:630.465000px;}
.y120{bottom:633.705000px;}
.y164{bottom:635.505000px;}
.y182{bottom:638.565000px;}
.y17{bottom:639.465000px;}
.y93{bottom:650.625000px;}
.yb1{bottom:651.525000px;}
.y163{bottom:656.565000px;}
.y181{bottom:659.625000px;}
.y16{bottom:660.345000px;}
.y6f{bottom:660.525000px;}
.yf9{bottom:663.225000px;}
.y92{bottom:671.685000px;}
.yb0{bottom:672.585000px;}
.y162{bottom:677.625000px;}
.y180{bottom:680.685000px;}
.y15{bottom:681.405000px;}
.y6e{bottom:681.585000px;}
.y100{bottom:684.285000px;}
.y91{bottom:692.745000px;}
.yaf{bottom:693.645000px;}
.y161{bottom:698.685000px;}
.y17f{bottom:701.745000px;}
.y6d{bottom:702.645000px;}
.y134{bottom:702.825000px;}
.y14{bottom:704.985000px;}
.yae{bottom:714.705000px;}
.y160{bottom:719.745000px;}
.y90{bottom:722.805000px;}
.y6c{bottom:723.705000px;}
.y13{bottom:734.865000px;}
.y15f{bottom:740.805000px;}
.y8f{bottom:743.865000px;}
.y17e{bottom:744.045000px;}
.y6b{bottom:744.765000px;}
.y128{bottom:744.945000px;}
.y12{bottom:755.925000px;}
.ycd{bottom:762.045000px;}
.y8e{bottom:764.925000px;}
.y6a{bottom:765.645000px;}
.yeb{bottom:771.045000px;}
.y11{bottom:776.985000px;}
.y40{bottom:779.325000px;}
.y15e{bottom:783.825000px;}
.y8d{bottom:785.985000px;}
.y69{bottom:786.705000px;}
.y12d{bottom:787.965000px;}
.y10{bottom:798.045000px;}
.ye9{bottom:801.825000px;}
.ye5{bottom:802.545000px;}
.y15d{bottom:804.885000px;}
.y8c{bottom:807.045000px;}
.y68{bottom:807.765000px;}
.yf{bottom:819.105000px;}
.y15c{bottom:825.945000px;}
.y8b{bottom:828.105000px;}
.y67{bottom:828.825000px;}
.ye{bottom:840.165000px;}
.y123{bottom:841.785000px;}
.y15b{bottom:847.005000px;}
.y8a{bottom:849.165000px;}
.y66{bottom:849.885000px;}
.yd{bottom:861.270000px;}
.y15a{bottom:868.110000px;}
.y89{bottom:870.270000px;}
.y65{bottom:870.990000px;}
.yf3{bottom:874.770000px;}
.yc{bottom:884.490000px;}
.y88{bottom:891.330000px;}
.y64{bottom:892.050000px;}
.yf8{bottom:895.830000px;}
.y158{bottom:905.010000px;}
.y3f{bottom:905.730000px;}
.ye3{bottom:910.230000px;}
.yb{bottom:910.770000px;}
.y87{bottom:912.390000px;}
.y63{bottom:913.110000px;}
.ye1{bottom:913.830000px;}
.ydc{bottom:924.270000px;}
.ya{bottom:927.510000px;}
.y125{bottom:931.110000px;}
.y86{bottom:933.450000px;}
.y62{bottom:934.170000px;}
.y9{bottom:949.830000px;}
.y85{bottom:954.510000px;}
.y61{bottom:955.230000px;}
.yf1{bottom:965.310000px;}
.yda{bottom:965.490000px;}
.ye0{bottom:967.290000px;}
.y11d{bottom:968.190000px;}
.y8{bottom:975.030000px;}
.y84{bottom:975.570000px;}
.y60{bottom:976.290000px;}
.yf2{bottom:986.370000px;}
.yd8{bottom:987.630000px;}
.y159{bottom:989.250000px;}
.y83{bottom:996.630000px;}
.y5f{bottom:997.350000px;}
.y7{bottom:1008.690000px;}
.y3e{bottom:1011.030000px;}
.y5e{bottom:1018.410000px;}
.y11e{bottom:1029.930000px;}
.y5d{bottom:1039.470000px;}
.yd1{bottom:1043.070000px;}
.y5{bottom:1048.830000px;}
.y5c{bottom:1060.530000px;}
.yd6{bottom:1072.590000px;}
.y11b{bottom:1073.490000px;}
.yd4{bottom:1076.010000px;}
.y4{bottom:1081.050000px;}
.y5b{bottom:1081.590000px;}
.y5a{bottom:1102.650000px;}
.ycf{bottom:1107.150000px;}
.y3{bottom:1113.270000px;}
.yed{bottom:1113.450000px;}
.y3c{bottom:1116.330000px;}
.y59{bottom:1123.710000px;}
.y58{bottom:1144.800000px;}
.y2{bottom:1145.340000px;}
.y3b{bottom:1172.700000px;}
.y1{bottom:1179.360000px;}
.y3a{bottom:1192.860000px;}
.h19{height:12.060000px;}
.h18{height:13.140000px;}
.h15{height:13.500000px;}
.h1b{height:13.860000px;}
.h21{height:14.220000px;}
.h1a{height:14.400000px;}
.h20{height:15.120000px;}
.h1d{height:15.840000px;}
.h1e{height:16.560000px;}
.h27{height:21.060000px;}
.ha{height:23.220000px;}
.h22{height:23.256000px;}
.h17{height:35.591133px;}
.h37{height:37.080000px;}
.h8{height:38.671172px;}
.h3d{height:42.120000px;}
.he{height:42.156000px;}
.h3b{height:43.020000px;}
.h30{height:43.380000px;}
.h33{height:43.560000px;}
.h1f{height:46.620000px;}
.h16{height:46.800000px;}
.h1c{height:48.240000px;}
.h13{height:49.992188px;}
.h24{height:52.260820px;}
.h3a{height:53.820000px;}
.h44{height:54.720000px;}
.h6{height:59.439023px;}
.h9{height:61.189805px;}
.h35{height:61.740000px;}
.h31{height:61.956000px;}
.h41{height:62.496000px;}
.h47{height:65.196000px;}
.h42{height:65.340000px;}
.h3{height:65.884219px;}
.h7{height:67.824844px;}
.h3e{height:69.120000px;}
.h29{height:69.480000px;}
.h4{height:83.787539px;}
.hd{height:84.240000px;}
.h34{height:84.276000px;}
.h2{height:86.255508px;}
.h32{height:86.940000px;}
.h38{height:89.316000px;}
.h28{height:90.540000px;}
.hc{height:92.916000px;}
.h39{height:96.840000px;}
.h5{height:98.051133px;}
.h43{height:98.280000px;}
.h46{height:101.880000px;}
.hb{height:105.300000px;}
.h2f{height:105.336000px;}
.h3c{height:111.240000px;}
.h26{height:126.360000px;}
.hf{height:126.396000px;}
.h40{height:127.836000px;}
.h25{height:147.420000px;}
.h45{height:167.070000px;}
.h10{height:168.480000px;}
.h2d{height:168.510000px;}
.h11{height:189.390000px;}
.h2c{height:189.570000px;}
.h2b{height:190.470000px;}
.h2a{height:211.530000px;}
.h48{height:252.750000px;}
.h2e{height:279.210000px;}
.h36{height:334.470000px;}
.h14{height:360.210000px;}
.h12{height:392.475000px;}
.h3f{height:498.495000px;}
.h23{height:744.375000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w9{width:38.700000px;}
.wb{width:38.736000px;}
.wc{width:39.240000px;}
.wd{width:39.420000px;}
.w16{width:40.140000px;}
.w15{width:40.320000px;}
.we{width:41.580000px;}
.w12{width:42.300000px;}
.w13{width:44.280000px;}
.w3{width:50.940000px;}
.w4{width:63.720000px;}
.w1a{width:74.160000px;}
.w10{width:103.896000px;}
.w11{width:114.336000px;}
.w17{width:141.516000px;}
.w14{width:142.956000px;}
.wa{width:143.280000px;}
.wf{width:143.496000px;}
.w8{width:180.030000px;}
.w19{width:184.755000px;}
.w5{width:265.575000px;}
.w6{width:281.595000px;}
.w18{width:384.915000px;}
.w7{width:425.265000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2f{left:6.840000px;}
.x9{left:8.100000px;}
.x15{left:10.800000px;}
.x20{left:13.140000px;}
.x1c{left:19.620000px;}
.x2e{left:24.525000px;}
.x19{left:25.920000px;}
.x18{left:28.620000px;}
.x25{left:31.320000px;}
.x2c{left:35.145000px;}
.x26{left:38.340000px;}
.x1d{left:44.994000px;}
.x22{left:49.545000px;}
.x6{left:53.999987px;}
.x2d{left:62.145000px;}
.x30{left:64.619987px;}
.x14{left:66.780000px;}
.x1e{left:71.634000px;}
.x13{left:75.239987px;}
.x11{left:79.919987px;}
.xd{left:85.895987px;}
.xe{left:96.515987px;}
.x31{left:102.275987px;}
.x17{left:106.596000px;}
.x7{left:108.035987px;}
.xf{left:112.895987px;}
.x8{left:115.776000px;}
.x10{left:128.375987px;}
.x16{left:131.616000px;}
.x28{left:135.036000px;}
.x1b{left:139.536000px;}
.xa{left:166.710000px;}
.x5{left:173.189987px;}
.x29{left:195.510000px;}
.xb{left:230.430000px;}
.x1a{left:264.135000px;}
.x27{left:265.575000px;}
.x3{left:286.634987px;}
.x12{left:313.994987px;}
.x2{left:350.534987px;}
.x1f{left:359.355000px;}
.x4{left:419.114987px;}
.x1{left:479.264987px;}
.xc{left:496.005000px;}
.x24{left:519.045000px;}
.x23{left:520.665000px;}
.x21{left:570.885000px;}
.x2a{left:580.425000px;}
.x2b{left:765.180000px;}
.x32{left:839.339987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls12{letter-spacing:-0.290133pt;}
.ls7{letter-spacing:-0.269333pt;}
.ls1e{letter-spacing:-0.239467pt;}
.lse{letter-spacing:-0.202667pt;}
.ls19{letter-spacing:-0.156267pt;}
.ls4{letter-spacing:-0.117867pt;}
.ls8{letter-spacing:-0.096533pt;}
.ls29{letter-spacing:-0.095467pt;}
.ls2b{letter-spacing:-0.069867pt;}
.ls30{letter-spacing:-0.057600pt;}
.lsc{letter-spacing:-0.051840pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.021120pt;}
.ls3{letter-spacing:0.034560pt;}
.ls1a{letter-spacing:0.053867pt;}
.ls13{letter-spacing:0.057067pt;}
.ls9{letter-spacing:0.058667pt;}
.ls17{letter-spacing:0.112533pt;}
.lsb{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.ls6{letter-spacing:0.133333pt;}
.lsd{letter-spacing:0.150400pt;}
.ls16{letter-spacing:0.154880pt;}
.ls2a{letter-spacing:0.155733pt;}
.ls26{letter-spacing:0.159360pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.186133pt;}
.ls1f{letter-spacing:0.194133pt;}
.ls1b{letter-spacing:0.221333pt;}
.ls1{letter-spacing:0.272000pt;}
.lsa{letter-spacing:0.349867pt;}
.ls11{letter-spacing:0.586667pt;}
.lsf{letter-spacing:0.661333pt;}
.ls2d{letter-spacing:0.693760pt;}
.ls28{letter-spacing:4.432640pt;}
.ls2f{letter-spacing:10.832640pt;}
.ls24{letter-spacing:19.152640pt;}
.ls23{letter-spacing:21.712640pt;}
.ls25{letter-spacing:24.912640pt;}
.ls2c{letter-spacing:36.432640pt;}
.ls2e{letter-spacing:37.712640pt;}
.ls14{letter-spacing:38.992640pt;}
.ls21{letter-spacing:39.632640pt;}
.ls20{letter-spacing:42.192640pt;}
.ls22{letter-spacing:45.392640pt;}
.ls15{letter-spacing:53.856000pt;}
.ls1c{letter-spacing:58.320640pt;}
.ls27{letter-spacing:115.152640pt;}
.ws11{word-spacing:-53.120000pt;}
.ws12{word-spacing:-48.000000pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.wsc{word-spacing:-12.666453pt;}
.wse{word-spacing:-12.591787pt;}
.ws9{word-spacing:-12.277120pt;}
.ws17{word-spacing:-12.199253pt;}
.ws13{word-spacing:-12.191253pt;}
.ws1b{word-spacing:-12.164480pt;}
.ws19{word-spacing:-12.160853pt;}
.wsf{word-spacing:-12.155520pt;}
.ws7{word-spacing:-12.129920pt;}
.ws14{word-spacing:-12.117653pt;}
.ws10{word-spacing:-12.062187pt;}
.wsd{word-spacing:-12.026240pt;}
.ws6{word-spacing:-12.005120pt;}
.ws8{word-spacing:-11.953280pt;}
.ws1c{word-spacing:-11.947520pt;}
.ws1a{word-spacing:-11.935253pt;}
.ws16{word-spacing:-11.920640pt;}
.ws18{word-spacing:-11.909653pt;}
.wsb{word-spacing:-11.802453pt;}
.ws15{word-spacing:-11.681173pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.wsa{word-spacing:0.000000pt;}
._1e{margin-left:-474.025387pt;}
._1f{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._12{margin-left:-259.866880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.626880pt;}
._16{margin-left:-197.861333pt;}
._22{margin-left:-184.478720pt;}
._f{margin-left:-180.325547pt;}
._19{margin-left:-179.069440pt;}
._18{margin-left:-177.501867pt;}
._21{margin-left:-168.195840pt;}
._26{margin-left:-159.859200pt;}
._e{margin-left:-152.048640pt;}
._17{margin-left:-147.686400pt;}
._d{margin-left:-146.632960pt;}
._9{margin-left:-136.688640pt;}
._10{margin-left:-135.543467pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._25{margin-left:-129.237333pt;}
._c{margin-left:-119.601920pt;}
._23{margin-left:-118.399787pt;}
._11{margin-left:-102.206720pt;}
._24{margin-left:-97.125547pt;}
._1d{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1c{margin-left:-76.799787pt;}
._1b{margin-left:-74.240000pt;}
._13{margin-left:-72.152320pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.825707pt;}
._1a{margin-left:-28.026880pt;}
._49{margin-left:-12.723627pt;}
._28{margin-left:-4.557440pt;}
._56{margin-left:-3.521920pt;}
._27{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._20{width:0.930560pt;}
._2a{width:2.122027pt;}
._42{width:3.032107pt;}
._2d{width:3.930880pt;}
._30{width:5.099520pt;}
._2f{width:6.799360pt;}
._2c{width:8.385920pt;}
._2b{width:9.681067pt;}
._2e{width:10.797440pt;}
._43{width:12.961280pt;}
._3d{width:14.076800pt;}
._38{width:15.351680pt;}
._37{width:16.573440pt;}
._47{width:17.529600pt;}
._3c{width:19.388800pt;}
._35{width:20.344960pt;}
._29{width:21.639680pt;}
._3a{width:23.199360pt;}
._3e{width:24.275840pt;}
._3f{width:25.656960pt;}
._34{width:28.338560pt;}
._33{width:29.375360pt;}
._50{width:30.278400pt;}
._31{width:33.146880pt;}
._4d{width:34.049920pt;}
._40{width:35.856000pt;}
._41{width:36.784640pt;}
._45{width:38.484480pt;}
._39{width:39.840000pt;}
._54{width:40.847360pt;}
._4a{width:42.283520pt;}
._53{width:45.523840pt;}
._36{width:53.704320pt;}
._48{width:55.297920pt;}
._4c{width:59.016320pt;}
._51{width:61.725440pt;}
._4f{width:64.141440pt;}
._4e{width:65.390720pt;}
._32{width:79.201920pt;}
._52{width:81.008000pt;}
._55{width:82.282880pt;}
._44{width:100.928000pt;}
._4b{width:121.804160pt;}
._46{width:205.910613pt;}
._3b{width:622.991360pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.ye8{bottom:-13.920000pt;}
.ydd{bottom:-13.760000pt;}
.y0{bottom:0.000000pt;}
.yd7{bottom:0.640000pt;}
.yd5{bottom:1.600000pt;}
.yd0{bottom:2.080000pt;}
.ydb{bottom:2.240000pt;}
.yec{bottom:2.560000pt;}
.yd9{bottom:2.720000pt;}
.yea{bottom:3.360000pt;}
.ye2{bottom:4.000000pt;}
.ye4{bottom:4.640000pt;}
.y2a{bottom:5.920000pt;}
.y119{bottom:6.560000pt;}
.y20{bottom:6.880000pt;}
.y113{bottom:7.200000pt;}
.yf7{bottom:8.640000pt;}
.y30{bottom:9.760000pt;}
.ye7{bottom:11.200000pt;}
.yd3{bottom:11.360000pt;}
.y12c{bottom:11.520000pt;}
.y146{bottom:12.160000pt;}
.ydf{bottom:12.640000pt;}
.y126{bottom:12.960000pt;}
.y156{bottom:14.714667pt;}
.y36{bottom:15.200000pt;}
.y26{bottom:15.360000pt;}
.y12f{bottom:15.680000pt;}
.y10e{bottom:15.840000pt;}
.y11a{bottom:15.994667pt;}
.y11f{bottom:16.000000pt;}
.y140{bottom:16.160000pt;}
.y117{bottom:16.480000pt;}
.y133{bottom:17.920000pt;}
.y32{bottom:19.040000pt;}
.y12e{bottom:20.480000pt;}
.y148{bottom:20.800000pt;}
.ye6{bottom:23.520000pt;}
.yd2{bottom:23.680000pt;}
.y157{bottom:23.994667pt;}
.y10f{bottom:24.000000pt;}
.y13e{bottom:24.346667pt;}
.y153{bottom:24.634667pt;}
.y29{bottom:24.640000pt;}
.y3d{bottom:24.666667pt;}
.y124{bottom:24.680000pt;}
.yde{bottom:24.960000pt;}
.y118{bottom:25.274667pt;}
.y13c{bottom:25.280000pt;}
.y141{bottom:25.600000pt;}
.y112{bottom:25.920000pt;}
.y135{bottom:27.200000pt;}
.yf6{bottom:27.360000pt;}
.y2f{bottom:28.520000pt;}
.y12b{bottom:30.240000pt;}
.y145{bottom:30.880000pt;}
.y155{bottom:33.434667pt;}
.y14e{bottom:33.440000pt;}
.y34{bottom:33.920000pt;}
.y25{bottom:34.080000pt;}
.y13f{bottom:34.880000pt;}
.y116{bottom:35.200000pt;}
.y127{bottom:36.200000pt;}
.y132{bottom:36.640000pt;}
.y2c{bottom:37.800000pt;}
.y150{bottom:41.920000pt;}
.y152{bottom:43.354667pt;}
.y22{bottom:43.360000pt;}
.y10c{bottom:43.400000pt;}
.yff{bottom:43.680000pt;}
.y13b{bottom:44.000000pt;}
.y111{bottom:44.640000pt;}
.yf5{bottom:46.080000pt;}
.y2e{bottom:47.240000pt;}
.y12a{bottom:48.960000pt;}
.y144{bottom:49.600000pt;}
.y14d{bottom:52.200000pt;}
.y38{bottom:52.634667pt;}
.y35{bottom:52.640000pt;}
.y24{bottom:52.800000pt;}
.y115{bottom:53.920000pt;}
.y6{bottom:54.592000pt;}
.y131{bottom:55.360000pt;}
.y31{bottom:56.520000pt;}
.y39{bottom:62.074667pt;}
.y28{bottom:62.080000pt;}
.y11c{bottom:62.106667pt;}
.y10b{bottom:62.120000pt;}
.yfe{bottom:62.400000pt;}
.y13a{bottom:62.746667pt;}
.y110{bottom:63.360000pt;}
.yf4{bottom:64.800000pt;}
.y2d{bottom:65.960000pt;}
.y129{bottom:67.680000pt;}
.y143{bottom:68.320000pt;}
.y14c{bottom:70.920000pt;}
.y23{bottom:71.520000pt;}
.y44{bottom:71.560000pt;}
.y130{bottom:74.080000pt;}
.y107{bottom:79.232000pt;}
.y151{bottom:80.794667pt;}
.y27{bottom:80.800000pt;}
.y106{bottom:80.826667pt;}
.y42{bottom:80.840000pt;}
.y19c{bottom:80.992000pt;}
.yfd{bottom:81.120000pt;}
.y139{bottom:81.466667pt;}
.y82{bottom:81.632000pt;}
.y37{bottom:83.392000pt;}
.ycb{bottom:84.352000pt;}
.y14b{bottom:89.640000pt;}
.y43{bottom:90.280000pt;}
.yad{bottom:91.712000pt;}
.y17d{bottom:94.912000pt;}
.y57{bottom:99.072000pt;}
.y46{bottom:99.520000pt;}
.y103{bottom:99.546667pt;}
.y41{bottom:99.560000pt;}
.y19b{bottom:99.712000pt;}
.yfc{bottom:99.840000pt;}
.y81{bottom:100.352000pt;}
.yca{bottom:103.072000pt;}
.y14a{bottom:108.360000pt;}
.yac{bottom:110.432000pt;}
.y109{bottom:111.194667pt;}
.y17c{bottom:113.632000pt;}
.y56{bottom:117.792000pt;}
.y4c{bottom:118.080000pt;}
.y48{bottom:118.240000pt;}
.y102{bottom:118.266667pt;}
.y19a{bottom:118.432000pt;}
.yfb{bottom:118.560000pt;}
.y80{bottom:119.072000pt;}
.y136{bottom:120.192000pt;}
.yc9{bottom:121.792000pt;}
.yab{bottom:129.152000pt;}
.y1a9{bottom:129.472000pt;}
.y108{bottom:129.914667pt;}
.y17b{bottom:132.352000pt;}
.y122{bottom:135.840000pt;}
.y55{bottom:136.506667pt;}
.y4b{bottom:136.826667pt;}
.y47{bottom:136.960000pt;}
.y105{bottom:136.986667pt;}
.y199{bottom:137.146667pt;}
.yfa{bottom:137.280000pt;}
.y7f{bottom:137.786667pt;}
.yc8{bottom:140.506667pt;}
.yaa{bottom:147.866667pt;}
.y17a{bottom:151.066667pt;}
.yce{bottom:154.440000pt;}
.y121{bottom:154.560000pt;}
.y54{bottom:155.226667pt;}
.y4a{bottom:155.546667pt;}
.y198{bottom:155.866667pt;}
.y7e{bottom:156.506667pt;}
.y33{bottom:158.266667pt;}
.yc7{bottom:159.226667pt;}
.ya9{bottom:166.426667pt;}
.ycc{bottom:168.680000pt;}
.y179{bottom:169.786667pt;}
.y53{bottom:173.946667pt;}
.y197{bottom:174.426667pt;}
.y154{bottom:175.066667pt;}
.y7d{bottom:175.226667pt;}
.yc6{bottom:177.946667pt;}
.ya8{bottom:185.146667pt;}
.y178{bottom:189.146667pt;}
.y52{bottom:192.666667pt;}
.y196{bottom:193.146667pt;}
.y7c{bottom:193.946667pt;}
.y114{bottom:195.226667pt;}
.yc5{bottom:196.666667pt;}
.ya7{bottom:203.866667pt;}
.y1a8{bottom:204.986667pt;}
.y177{bottom:207.866667pt;}
.y51{bottom:211.386667pt;}
.y195{bottom:211.866667pt;}
.y7b{bottom:212.666667pt;}
.y149{bottom:213.786667pt;}
.yc4{bottom:215.386667pt;}
.y137{bottom:218.114667pt;}
.y1a7{bottom:221.306667pt;}
.ya6{bottom:222.586667pt;}
.y176{bottom:226.586667pt;}
.y50{bottom:230.106667pt;}
.y194{bottom:230.586667pt;}
.y7a{bottom:231.386667pt;}
.y2b{bottom:233.146667pt;}
.y10a{bottom:233.786667pt;}
.yc3{bottom:234.106667pt;}
.y1a6{bottom:237.626667pt;}
.ya5{bottom:241.306667pt;}
.y175{bottom:245.306667pt;}
.y4f{bottom:248.826667pt;}
.y193{bottom:249.306667pt;}
.y79{bottom:250.106667pt;}
.yc2{bottom:252.826667pt;}
.y1a5{bottom:253.946667pt;}
.ya4{bottom:260.026667pt;}
.y174{bottom:264.066667pt;}
.y4e{bottom:267.586667pt;}
.y192{bottom:268.066667pt;}
.y78{bottom:268.866667pt;}
.y1a4{bottom:270.146667pt;}
.yc1{bottom:271.586667pt;}
.y14f{bottom:271.746667pt;}
.ya3{bottom:278.786667pt;}
.y4d{bottom:281.026667pt;}
.y173{bottom:282.786667pt;}
.y1a3{bottom:286.466667pt;}
.y191{bottom:286.786667pt;}
.y77{bottom:287.586667pt;}
.y10d{bottom:288.866667pt;}
.yc0{bottom:290.306667pt;}
.ya2{bottom:297.506667pt;}
.y172{bottom:301.506667pt;}
.y1a2{bottom:302.786667pt;}
.y190{bottom:305.506667pt;}
.y76{bottom:306.306667pt;}
.ybf{bottom:309.026667pt;}
.y21{bottom:315.746667pt;}
.ya1{bottom:316.226667pt;}
.yf0{bottom:317.946667pt;}
.y1a1{bottom:319.106667pt;}
.y171{bottom:320.226667pt;}
.y18f{bottom:324.226667pt;}
.y75{bottom:325.026667pt;}
.yee{bottom:327.426667pt;}
.ybe{bottom:327.746667pt;}
.ya0{bottom:334.946667pt;}
.y1a0{bottom:335.266667pt;}
.yef{bottom:336.666667pt;}
.y170{bottom:338.946667pt;}
.y18e{bottom:342.946667pt;}
.y74{bottom:343.746667pt;}
.ybd{bottom:346.466667pt;}
.y19f{bottom:351.586667pt;}
.y9f{bottom:353.666667pt;}
.y16f{bottom:357.666667pt;}
.y18d{bottom:361.666667pt;}
.y142{bottom:362.306667pt;}
.y73{bottom:362.466667pt;}
.ybc{bottom:365.186667pt;}
.y19e{bottom:367.906667pt;}
.y9e{bottom:372.386667pt;}
.y49{bottom:374.626667pt;}
.y16e{bottom:377.026667pt;}
.y18c{bottom:380.386667pt;}
.y72{bottom:381.186667pt;}
.ybb{bottom:383.906667pt;}
.y9d{bottom:391.106667pt;}
.y16d{bottom:395.746667pt;}
.y18b{bottom:399.106667pt;}
.y71{bottom:399.906667pt;}
.y19d{bottom:400.066667pt;}
.y147{bottom:401.026667pt;}
.y9c{bottom:409.826667pt;}
.y1f{bottom:409.986667pt;}
.yba{bottom:410.626667pt;}
.y16c{bottom:414.466667pt;}
.y18a{bottom:417.826667pt;}
.y70{bottom:418.626667pt;}
.y101{bottom:421.026667pt;}
.y9b{bottom:428.546667pt;}
.yb9{bottom:429.346667pt;}
.y16b{bottom:433.186667pt;}
.y189{bottom:436.546667pt;}
.y1e{bottom:437.346667pt;}
.y104{bottom:439.746667pt;}
.y9a{bottom:447.266667pt;}
.yb8{bottom:448.066667pt;}
.y138{bottom:449.666667pt;}
.y16a{bottom:451.906667pt;}
.y188{bottom:455.266667pt;}
.y1d{bottom:456.066667pt;}
.y99{bottom:465.986667pt;}
.yb7{bottom:466.786667pt;}
.y169{bottom:470.626667pt;}
.y187{bottom:473.986667pt;}
.y1c{bottom:474.786667pt;}
.y98{bottom:484.706667pt;}
.yb6{bottom:485.506667pt;}
.y168{bottom:489.346667pt;}
.y186{bottom:492.706667pt;}
.y1b{bottom:493.506667pt;}
.y97{bottom:503.426667pt;}
.yb5{bottom:504.226667pt;}
.y13d{bottom:507.746667pt;}
.y167{bottom:508.066667pt;}
.y185{bottom:511.453333pt;}
.y1a{bottom:512.253333pt;}
.y96{bottom:522.173333pt;}
.yb4{bottom:522.973333pt;}
.y166{bottom:526.973333pt;}
.y184{bottom:530.173333pt;}
.y19{bottom:530.973333pt;}
.y95{bottom:540.893333pt;}
.yb3{bottom:541.693333pt;}
.y45{bottom:542.973333pt;}
.y165{bottom:546.333333pt;}
.y183{bottom:548.893333pt;}
.y18{bottom:549.693333pt;}
.y94{bottom:559.613333pt;}
.yb2{bottom:560.413333pt;}
.y120{bottom:563.293333pt;}
.y164{bottom:564.893333pt;}
.y182{bottom:567.613333pt;}
.y17{bottom:568.413333pt;}
.y93{bottom:578.333333pt;}
.yb1{bottom:579.133333pt;}
.y163{bottom:583.613333pt;}
.y181{bottom:586.333333pt;}
.y16{bottom:586.973333pt;}
.y6f{bottom:587.133333pt;}
.yf9{bottom:589.533333pt;}
.y92{bottom:597.053333pt;}
.yb0{bottom:597.853333pt;}
.y162{bottom:602.333333pt;}
.y180{bottom:605.053333pt;}
.y15{bottom:605.693333pt;}
.y6e{bottom:605.853333pt;}
.y100{bottom:608.253333pt;}
.y91{bottom:615.773333pt;}
.yaf{bottom:616.573333pt;}
.y161{bottom:621.053333pt;}
.y17f{bottom:623.773333pt;}
.y6d{bottom:624.573333pt;}
.y134{bottom:624.733333pt;}
.y14{bottom:626.653333pt;}
.yae{bottom:635.293333pt;}
.y160{bottom:639.773333pt;}
.y90{bottom:642.493333pt;}
.y6c{bottom:643.293333pt;}
.y13{bottom:653.213333pt;}
.y15f{bottom:658.493333pt;}
.y8f{bottom:661.213333pt;}
.y17e{bottom:661.373333pt;}
.y6b{bottom:662.013333pt;}
.y128{bottom:662.173333pt;}
.y12{bottom:671.933333pt;}
.ycd{bottom:677.373333pt;}
.y8e{bottom:679.933333pt;}
.y6a{bottom:680.573333pt;}
.yeb{bottom:685.373333pt;}
.y11{bottom:690.653333pt;}
.y40{bottom:692.733333pt;}
.y15e{bottom:696.733333pt;}
.y8d{bottom:698.653333pt;}
.y69{bottom:699.293333pt;}
.y12d{bottom:700.413333pt;}
.y10{bottom:709.373333pt;}
.ye9{bottom:712.733333pt;}
.ye5{bottom:713.373333pt;}
.y15d{bottom:715.453333pt;}
.y8c{bottom:717.373333pt;}
.y68{bottom:718.013333pt;}
.yf{bottom:728.093333pt;}
.y15c{bottom:734.173333pt;}
.y8b{bottom:736.093333pt;}
.y67{bottom:736.733333pt;}
.ye{bottom:746.813333pt;}
.y123{bottom:748.253333pt;}
.y15b{bottom:752.893333pt;}
.y8a{bottom:754.813333pt;}
.y66{bottom:755.453333pt;}
.yd{bottom:765.573333pt;}
.y15a{bottom:771.653333pt;}
.y89{bottom:773.573333pt;}
.y65{bottom:774.213333pt;}
.yf3{bottom:777.573333pt;}
.yc{bottom:786.213333pt;}
.y88{bottom:792.293333pt;}
.y64{bottom:792.933333pt;}
.yf8{bottom:796.293333pt;}
.y158{bottom:804.453333pt;}
.y3f{bottom:805.093333pt;}
.ye3{bottom:809.093333pt;}
.yb{bottom:809.573333pt;}
.y87{bottom:811.013333pt;}
.y63{bottom:811.653333pt;}
.ye1{bottom:812.293333pt;}
.ydc{bottom:821.573333pt;}
.ya{bottom:824.453333pt;}
.y125{bottom:827.653333pt;}
.y86{bottom:829.733333pt;}
.y62{bottom:830.373333pt;}
.y9{bottom:844.293333pt;}
.y85{bottom:848.453333pt;}
.y61{bottom:849.093333pt;}
.yf1{bottom:858.053333pt;}
.yda{bottom:858.213333pt;}
.ye0{bottom:859.813333pt;}
.y11d{bottom:860.613333pt;}
.y8{bottom:866.693333pt;}
.y84{bottom:867.173333pt;}
.y60{bottom:867.813333pt;}
.yf2{bottom:876.773333pt;}
.yd8{bottom:877.893333pt;}
.y159{bottom:879.333333pt;}
.y83{bottom:885.893333pt;}
.y5f{bottom:886.533333pt;}
.y7{bottom:896.613333pt;}
.y3e{bottom:898.693333pt;}
.y5e{bottom:905.253333pt;}
.y11e{bottom:915.493333pt;}
.y5d{bottom:923.973333pt;}
.yd1{bottom:927.173333pt;}
.y5{bottom:932.293333pt;}
.y5c{bottom:942.693333pt;}
.yd6{bottom:953.413333pt;}
.y11b{bottom:954.213333pt;}
.yd4{bottom:956.453333pt;}
.y4{bottom:960.933333pt;}
.y5b{bottom:961.413333pt;}
.y5a{bottom:980.133333pt;}
.ycf{bottom:984.133333pt;}
.y3{bottom:989.573333pt;}
.yed{bottom:989.733333pt;}
.y3c{bottom:992.293333pt;}
.y59{bottom:998.853333pt;}
.y58{bottom:1017.600000pt;}
.y2{bottom:1018.080000pt;}
.y3b{bottom:1042.400000pt;}
.y1{bottom:1048.320000pt;}
.y3a{bottom:1060.320000pt;}
.h19{height:10.720000pt;}
.h18{height:11.680000pt;}
.h15{height:12.000000pt;}
.h1b{height:12.320000pt;}
.h21{height:12.640000pt;}
.h1a{height:12.800000pt;}
.h20{height:13.440000pt;}
.h1d{height:14.080000pt;}
.h1e{height:14.720000pt;}
.h27{height:18.720000pt;}
.ha{height:20.640000pt;}
.h22{height:20.672000pt;}
.h17{height:31.636562pt;}
.h37{height:32.960000pt;}
.h8{height:34.374375pt;}
.h3d{height:37.440000pt;}
.he{height:37.472000pt;}
.h3b{height:38.240000pt;}
.h30{height:38.560000pt;}
.h33{height:38.720000pt;}
.h1f{height:41.440000pt;}
.h16{height:41.600000pt;}
.h1c{height:42.880000pt;}
.h13{height:44.437500pt;}
.h24{height:46.454062pt;}
.h3a{height:47.840000pt;}
.h44{height:48.640000pt;}
.h6{height:52.834688pt;}
.h9{height:54.390938pt;}
.h35{height:54.880000pt;}
.h31{height:55.072000pt;}
.h41{height:55.552000pt;}
.h47{height:57.952000pt;}
.h42{height:58.080000pt;}
.h3{height:58.563750pt;}
.h7{height:60.288750pt;}
.h3e{height:61.440000pt;}
.h29{height:61.760000pt;}
.h4{height:74.477812pt;}
.hd{height:74.880000pt;}
.h34{height:74.912000pt;}
.h2{height:76.671562pt;}
.h32{height:77.280000pt;}
.h38{height:79.392000pt;}
.h28{height:80.480000pt;}
.hc{height:82.592000pt;}
.h39{height:86.080000pt;}
.h5{height:87.156562pt;}
.h43{height:87.360000pt;}
.h46{height:90.560000pt;}
.hb{height:93.600000pt;}
.h2f{height:93.632000pt;}
.h3c{height:98.880000pt;}
.h26{height:112.320000pt;}
.hf{height:112.352000pt;}
.h40{height:113.632000pt;}
.h25{height:131.040000pt;}
.h45{height:148.506667pt;}
.h10{height:149.760000pt;}
.h2d{height:149.786667pt;}
.h11{height:168.346667pt;}
.h2c{height:168.506667pt;}
.h2b{height:169.306667pt;}
.h2a{height:188.026667pt;}
.h48{height:224.666667pt;}
.h2e{height:248.186667pt;}
.h36{height:297.306667pt;}
.h14{height:320.186667pt;}
.h12{height:348.866667pt;}
.h3f{height:443.106667pt;}
.h23{height:661.666667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w9{width:34.400000pt;}
.wb{width:34.432000pt;}
.wc{width:34.880000pt;}
.wd{width:35.040000pt;}
.w16{width:35.680000pt;}
.w15{width:35.840000pt;}
.we{width:36.960000pt;}
.w12{width:37.600000pt;}
.w13{width:39.360000pt;}
.w3{width:45.280000pt;}
.w4{width:56.640000pt;}
.w1a{width:65.920000pt;}
.w10{width:92.352000pt;}
.w11{width:101.632000pt;}
.w17{width:125.792000pt;}
.w14{width:127.072000pt;}
.wa{width:127.360000pt;}
.wf{width:127.552000pt;}
.w8{width:160.026667pt;}
.w19{width:164.226667pt;}
.w5{width:236.066667pt;}
.w6{width:250.306667pt;}
.w18{width:342.146667pt;}
.w7{width:378.013333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:6.080000pt;}
.x9{left:7.200000pt;}
.x15{left:9.600000pt;}
.x20{left:11.680000pt;}
.x1c{left:17.440000pt;}
.x2e{left:21.800000pt;}
.x19{left:23.040000pt;}
.x18{left:25.440000pt;}
.x25{left:27.840000pt;}
.x2c{left:31.240000pt;}
.x26{left:34.080000pt;}
.x1d{left:39.994667pt;}
.x22{left:44.040000pt;}
.x6{left:47.999988pt;}
.x2d{left:55.240000pt;}
.x30{left:57.439988pt;}
.x14{left:59.360000pt;}
.x1e{left:63.674667pt;}
.x13{left:66.879988pt;}
.x11{left:71.039988pt;}
.xd{left:76.351988pt;}
.xe{left:85.791988pt;}
.x31{left:90.911988pt;}
.x17{left:94.752000pt;}
.x7{left:96.031988pt;}
.xf{left:100.351988pt;}
.x8{left:102.912000pt;}
.x10{left:114.111988pt;}
.x16{left:116.992000pt;}
.x28{left:120.032000pt;}
.x1b{left:124.032000pt;}
.xa{left:148.186667pt;}
.x5{left:153.946655pt;}
.x29{left:173.786667pt;}
.xb{left:204.826667pt;}
.x1a{left:234.786667pt;}
.x27{left:236.066667pt;}
.x3{left:254.786655pt;}
.x12{left:279.106655pt;}
.x2{left:311.586655pt;}
.x1f{left:319.426667pt;}
.x4{left:372.546655pt;}
.x1{left:426.013322pt;}
.xc{left:440.893333pt;}
.x24{left:461.373333pt;}
.x23{left:462.813333pt;}
.x21{left:507.453333pt;}
.x2a{left:515.933333pt;}
.x2b{left:680.160000pt;}
.x32{left:746.079988pt;}
}




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