
    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_1ac1b4a81a39c5875a7b077f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.759766;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_1ab40772e221fdd85649eb1c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.759766;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_7855c1cb884be7a3f9e31284.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.759803;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_e78d45c896eae08ba65cb889.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_5e064608b5d029ef9bcae473.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_647310029f1e216f33e9a204.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.759766;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_139701e229f1d5c1e5a4ea61.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1da2369c5130c7951f2fa725.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9db8309051375418efae8674.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6bc240dcbc9031026a83c036.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f3450ed0d8dcd86146e22938.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_cc34d2530a46240f5a443017.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_fa145a45b9670073bb01dcc4.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_59fcaebf8dbf55f1f15d544e.woff2')format("woff");}.fff{font-family:fff;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-79.200000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000003px;}
.lsd{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.306000px;}
.ls1{letter-spacing:0.324000px;}
.lsf{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.432000px;}
.lse{letter-spacing:0.460200px;}
.ls7{letter-spacing:0.720000px;}
.lsb{letter-spacing:638.485920px;}
.lsc{letter-spacing:2871.204000px;}
.lsa{letter-spacing:2871.384000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.wsa{word-spacing:-63.360000px;}
.wsb{word-spacing:-59.760000px;}
.ws9{word-spacing:-38.160000px;}
.ws0{word-spacing:-36.000000px;}
.ws1{word-spacing:-28.800000px;}
.ws6{word-spacing:-16.272000px;}
.ws5{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.768000px;}
.ws4{word-spacing:-15.552000px;}
.wsd{word-spacing:-15.400200px;}
.wse{word-spacing:-15.300000px;}
.wsc{word-spacing:-14.940000px;}
.ws2{word-spacing:0.000000px;}
.ws8{word-spacing:74.520000px;}
._a{margin-left:-15.000000px;}
._30{margin-left:-13.294080px;}
._4{margin-left:-11.760000px;}
._c{margin-left:-9.660000px;}
._6{margin-left:-8.556000px;}
._2d{margin-left:-7.404000px;}
._8{margin-left:-5.424000px;}
._2f{margin-left:-3.214080px;}
._0{margin-left:-1.242000px;}
._1{width:1.026000px;}
._3{width:2.856000px;}
._5{width:4.320000px;}
._7{width:5.448000px;}
._2e{width:7.350000px;}
._b{width:10.128000px;}
._14{width:32.480640px;}
._27{width:49.040640px;}
._f{width:54.080640px;}
._2b{width:58.400640px;}
._1f{width:75.680640px;}
._10{width:87.200640px;}
._9{width:103.608000px;}
._d{width:105.200640px;}
._1b{width:114.560640px;}
._12{width:134.900640px;}
._1c{width:144.080640px;}
._24{width:156.320640px;}
._15{width:164.240640px;}
._26{width:194.480640px;}
._11{width:217.520640px;}
._16{width:221.240640px;}
._23{width:232.640640px;}
._20{width:240.560640px;}
._13{width:245.600640px;}
._19{width:258.560640px;}
._1e{width:264.200640px;}
._29{width:280.160640px;}
._22{width:289.700640px;}
._21{width:300.320640px;}
._25{width:349.400640px;}
._1d{width:368.180640px;}
._1a{width:387.560640px;}
._e{width:394.820640px;}
._18{width:397.520640px;}
._17{width:418.400640px;}
._28{width:425.720640px;}
._2a{width:444.320640px;}
._2c{width:1006.760640px;}
._2{width:2908.104000px;}
.fc3{color:rgb(0,132,117);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(68,68,68);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs4{font-size:63.360000px;}
.fs7{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.fs5{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y171{bottom:3.600000px;}
.y59{bottom:3.780000px;}
.y71{bottom:3.825000px;}
.y5b{bottom:3.960000px;}
.ybf{bottom:4.860000px;}
.ya2{bottom:6.660000px;}
.ye{bottom:7.020000px;}
.y20{bottom:8.280000px;}
.y146{bottom:12.054000px;}
.yd7{bottom:12.240000px;}
.yfd{bottom:12.420000px;}
.yee{bottom:12.600000px;}
.y139{bottom:12.645000px;}
.yf3{bottom:13.680000px;}
.yf7{bottom:13.860000px;}
.yf9{bottom:14.040000px;}
.y7{bottom:14.220000px;}
.y14c{bottom:14.400000px;}
.y14d{bottom:14.754000px;}
.y102{bottom:14.760000px;}
.y15{bottom:14.940000px;}
.y10{bottom:15.120000px;}
.y1b{bottom:15.150000px;}
.y14a{bottom:15.300000px;}
.yf0{bottom:16.200000px;}
.y105{bottom:17.640000px;}
.y17f{bottom:19.620000px;}
.y19c{bottom:19.800000px;}
.y1c6{bottom:20.874000px;}
.y170{bottom:20.880000px;}
.yfb{bottom:21.060000px;}
.yec{bottom:21.240000px;}
.y137{bottom:21.285000px;}
.yb1{bottom:23.400000px;}
.ya8{bottom:23.574000px;}
.y6c{bottom:23.580000px;}
.yba{bottom:23.610000px;}
.y70{bottom:23.625000px;}
.y8c{bottom:24.840000px;}
.y83{bottom:24.870000px;}
.y67{bottom:25.020000px;}
.y1a2{bottom:25.554000px;}
.y18b{bottom:25.560000px;}
.y19a{bottom:25.740000px;}
.ybe{bottom:26.820000px;}
.y17d{bottom:28.260000px;}
.y145{bottom:29.334000px;}
.y1b0{bottom:29.340000px;}
.y1a5{bottom:29.514000px;}
.y184{bottom:29.520000px;}
.y1a4{bottom:29.565000px;}
.y108{bottom:29.700000px;}
.yfc{bottom:29.730000px;}
.yed{bottom:29.880000px;}
.y160{bottom:29.910000px;}
.y138{bottom:29.925000px;}
.yb{bottom:31.140000px;}
.y1d{bottom:32.040000px;}
.y191{bottom:34.200000px;}
.y21{bottom:34.920000px;}
.y17{bottom:35.100000px;}
.y17e{bottom:36.900000px;}
.y8f{bottom:37.080000px;}
.yd{bottom:37.620000px;}
.y16f{bottom:38.154000px;}
.y14{bottom:38.160000px;}
.y12{bottom:38.340000px;}
.y1a{bottom:38.370000px;}
.yd6{bottom:38.520000px;}
.ydb{bottom:38.880000px;}
.yd1{bottom:39.456000px;}
.y29{bottom:39.600000px;}
.yc{bottom:40.500000px;}
.y1a1{bottom:42.834000px;}
.y18a{bottom:42.840000px;}
.y199{bottom:43.020000px;}
.y95{bottom:43.200000px;}
.yb9{bottom:43.230000px;}
.y6b{bottom:43.236000px;}
.y8b{bottom:44.460000px;}
.y66{bottom:44.640000px;}
.y144{bottom:46.614000px;}
.y1af{bottom:46.620000px;}
.y1b5{bottom:46.650000px;}
.y183{bottom:46.830000px;}
.ya{bottom:46.980000px;}
.y194{bottom:47.010000px;}
.y107{bottom:47.025000px;}
.y130{bottom:47.160000px;}
.y15f{bottom:47.190000px;}
.ybd{bottom:48.780000px;}
.y17b{bottom:51.114000px;}
.y190{bottom:51.480000px;}
.y106{bottom:52.245000px;}
.y16e{bottom:55.254000px;}
.yda{bottom:56.160000px;}
.y1c3{bottom:58.860000px;}
.y1a0{bottom:60.114000px;}
.y198{bottom:60.120000px;}
.y189{bottom:60.165000px;}
.y9{bottom:62.820000px;}
.ya0{bottom:62.850000px;}
.y94{bottom:63.000000px;}
.y6f{bottom:63.045000px;}
.y143{bottom:63.939000px;}
.y8a{bottom:64.080000px;}
.y65{bottom:64.260000px;}
.y81{bottom:64.290000px;}
.y12f{bottom:64.440000px;}
.y15e{bottom:64.470000px;}
.yd5{bottom:64.800000px;}
.yf5{bottom:66.450000px;}
.y17a{bottom:68.394000px;}
.y18f{bottom:68.760000px;}
.y181{bottom:69.114000px;}
.yd0{bottom:69.876000px;}
.y28{bottom:70.020000px;}
.y16d{bottom:72.534000px;}
.y132{bottom:72.720000px;}
.yd9{bottom:73.440000px;}
.y1a9{bottom:73.485000px;}
.y19f{bottom:77.394000px;}
.y197{bottom:77.400000px;}
.y188{bottom:77.445000px;}
.y8{bottom:78.660000px;}
.y142{bottom:81.039000px;}
.y12e{bottom:81.570000px;}
.y15d{bottom:81.750000px;}
.yea{bottom:82.080000px;}
.yad{bottom:82.620000px;}
.y91{bottom:82.650000px;}
.y89{bottom:83.880000px;}
.y64{bottom:84.060000px;}
.y1c1{bottom:85.320000px;}
.y179{bottom:85.719000px;}
.y1ad{bottom:85.860000px;}
.y18e{bottom:86.040000px;}
.y16c{bottom:89.859000px;}
.yd8{bottom:90.720000px;}
.y1a8{bottom:90.765000px;}
.yd4{bottom:91.080000px;}
.y74{bottom:93.060000px;}
.y9e{bottom:93.240000px;}
.y187{bottom:94.545000px;}
.y196{bottom:94.680000px;}
.y19e{bottom:94.719000px;}
.y141{bottom:98.319000px;}
.y12d{bottom:98.850000px;}
.y15c{bottom:99.030000px;}
.yac{bottom:102.240000px;}
.y6a{bottom:102.270000px;}
.y1c0{bottom:102.600000px;}
.y68{bottom:102.960000px;}
.y13b{bottom:102.990000px;}
.y178{bottom:102.999000px;}
.y88{bottom:103.500000px;}
.y63{bottom:103.680000px;}
.y1b3{bottom:103.905000px;}
.y16b{bottom:107.139000px;}
.y1a7{bottom:107.865000px;}
.y1b9{bottom:108.000000px;}
.y55{bottom:111.060000px;}
.y134{bottom:115.560000px;}
.y140{bottom:115.599000px;}
.y12c{bottom:116.130000px;}
.yd3{bottom:117.210000px;}
.y1bf{bottom:119.880000px;}
.y177{bottom:120.279000px;}
.yb3{bottom:120.285000px;}
.y1b2{bottom:121.185000px;}
.y98{bottom:122.040000px;}
.y62{bottom:123.300000px;}
.y16a{bottom:124.419000px;}
.y117{bottom:124.770000px;}
.y19d{bottom:125.676000px;}
.y162{bottom:127.296000px;}
.y133{bottom:132.870000px;}
.y13f{bottom:132.879000px;}
.y12b{bottom:133.410000px;}
.y54{bottom:133.740000px;}
.yb6{bottom:135.180000px;}
.ya7{bottom:135.576000px;}
.y1be{bottom:137.160000px;}
.y176{bottom:137.559000px;}
.y1b1{bottom:138.465000px;}
.y169{bottom:141.519000px;}
.yab{bottom:141.660000px;}
.y116{bottom:142.050000px;}
.y69{bottom:142.230000px;}
.y8d{bottom:142.236000px;}
.y87{bottom:142.920000px;}
.y61{bottom:143.100000px;}
.y1b8{bottom:143.856000px;}
.y80{bottom:144.390000px;}
.y1c5{bottom:146.376000px;}
.y13c{bottom:149.616000px;}
.y13e{bottom:150.159000px;}
.y12a{bottom:150.690000px;}
.y1bd{bottom:154.440000px;}
.y175{bottom:154.659000px;}
.y53{bottom:156.450000px;}
.y100{bottom:157.725000px;}
.y168{bottom:158.799000px;}
.ye8{bottom:158.805000px;}
.y115{bottom:159.330000px;}
.yaa{bottom:161.460000px;}
.y60{bottom:162.720000px;}
.y7f{bottom:164.010000px;}
.y13d{bottom:167.439000px;}
.y129{bottom:167.790000px;}
.y15b{bottom:170.310000px;}
.y174{bottom:171.939000px;}
.y48{bottom:172.110000px;}
.ydc{bottom:174.090000px;}
.yff{bottom:175.005000px;}
.y167{bottom:176.079000px;}
.ye7{bottom:176.085000px;}
.y114{bottom:176.430000px;}
.y52{bottom:179.130000px;}
.ya9{bottom:181.080000px;}
.yb8{bottom:181.110000px;}
.y9f{bottom:183.630000px;}
.y128{bottom:185.070000px;}
.y1a3{bottom:186.690000px;}
.y15a{bottom:187.590000px;}
.y173{bottom:189.219000px;}
.yfe{bottom:192.285000px;}
.y166{bottom:193.359000px;}
.ye6{bottom:193.365000px;}
.y113{bottom:193.710000px;}
.y97{bottom:200.730000px;}
.ycc{bottom:201.630000px;}
.y51{bottom:201.810000px;}
.y127{bottom:202.350000px;}
.y47{bottom:202.890000px;}
.y5f{bottom:203.400000px;}
.y1bb{bottom:204.195000px;}
.y159{bottom:204.870000px;}
.y172{bottom:206.499000px;}
.y1bc{bottom:207.435000px;}
.y165{bottom:210.639000px;}
.ye5{bottom:210.645000px;}
.y112{bottom:210.990000px;}
.y14b{bottom:213.375000px;}
.y161{bottom:213.510000px;}
.ya6{bottom:215.130000px;}
.y126{bottom:219.630000px;}
.yb7{bottom:220.350000px;}
.y1ba{bottom:221.475000px;}
.y158{bottom:222.195000px;}
.y50{bottom:224.310000px;}
.y164{bottom:227.919000px;}
.ye4{bottom:227.925000px;}
.y111{bottom:228.270000px;}
.y46{bottom:233.490000px;}
.y125{bottom:236.910000px;}
.y157{bottom:239.475000px;}
.y7e{bottom:242.850000px;}
.y5e{bottom:244.110000px;}
.y149{bottom:244.155000px;}
.y163{bottom:245.019000px;}
.ye3{bottom:245.235000px;}
.y110{bottom:245.550000px;}
.y195{bottom:247.755000px;}
.y124{bottom:254.190000px;}
.y156{bottom:256.755000px;}
.ye2{bottom:262.335000px;}
.y7d{bottom:262.470000px;}
.y10f{bottom:262.875000px;}
.y45{bottom:264.270000px;}
.y1b7{bottom:265.935000px;}
.y180{bottom:267.375000px;}
.y1c4{bottom:268.455000px;}
.y123{bottom:271.335000px;}
.y155{bottom:273.855000px;}
.y148{bottom:276.555000px;}
.y4f{bottom:279.390000px;}
.ye1{bottom:279.615000px;}
.y10e{bottom:279.975000px;}
.y104{bottom:280.515000px;}
.y5d{bottom:284.790000px;}
.y122{bottom:288.615000px;}
.y154{bottom:291.135000px;}
.y9d{bottom:293.430000px;}
.y44{bottom:295.050000px;}
.ye0{bottom:296.895000px;}
.y10d{bottom:297.255000px;}
.y93{bottom:305.310000px;}
.y121{bottom:305.895000px;}
.y147{bottom:308.415000px;}
.y19b{bottom:308.775000px;}
.ydf{bottom:314.175000px;}
.y10c{bottom:314.535000px;}
.y103{bottom:317.595000px;}
.y7c{bottom:321.555000px;}
.y120{bottom:323.175000px;}
.y43{bottom:325.650000px;}
.y1b6{bottom:326.955000px;}
.y17c{bottom:328.395000px;}
.y1c2{bottom:329.475000px;}
.yb2{bottom:331.230000px;}
.yde{bottom:331.455000px;}
.y10b{bottom:331.815000px;}
.y109{bottom:339.915000px;}
.y11f{bottom:340.455000px;}
.y153{bottom:345.315000px;}
.ydd{bottom:348.555000px;}
.y10a{bottom:349.095000px;}
.y101{bottom:349.635000px;}
.y9c{bottom:353.370000px;}
.y42{bottom:356.430000px;}
.y11e{bottom:357.735000px;}
.y7b{bottom:362.235000px;}
.y152{bottom:362.595000px;}
.y193{bottom:369.975000px;}
.y11d{bottom:374.835000px;}
.yce{bottom:379.830000px;}
.y151{bottom:379.875000px;}
.yf4{bottom:381.135000px;}
.y7a{bottom:382.035000px;}
.y14e{bottom:386.715000px;}
.y41{bottom:387.390000px;}
.y1b4{bottom:387.975000px;}
.y11c{bottom:392.115000px;}
.y150{bottom:397.155000px;}
.y11b{bottom:409.395000px;}
.y14f{bottom:414.465000px;}
.y40{bottom:417.135000px;}
.yfa{bottom:425.265000px;}
.y11a{bottom:426.675000px;}
.y18d{bottom:431.385000px;}
.y5c{bottom:432.975000px;}
.y119{bottom:443.955000px;}
.y3f{bottom:446.655000px;}
.y1ac{bottom:449.205000px;}
.yf8{bottom:457.305000px;}
.y118{bottom:461.265000px;}
.y1f{bottom:471.135000px;}
.y3e{bottom:476.355000px;}
.y79{bottom:483.015000px;}
.yf6{bottom:487.185000px;}
.y86{bottom:488.055000px;}
.y192{bottom:492.405000px;}
.y4e{bottom:501.015000px;}
.y78{bottom:502.635000px;}
.y3d{bottom:505.875000px;}
.y92{bottom:506.955000px;}
.yb0{bottom:507.495000px;}
.y1ae{bottom:510.225000px;}
.ye9{bottom:516.705000px;}
.y1e{bottom:517.755000px;}
.ya5{bottom:524.235000px;}
.y3c{bottom:535.575000px;}
.y77{bottom:543.495000px;}
.y4d{bottom:544.395000px;}
.yf2{bottom:545.685000px;}
.y13a{bottom:547.665000px;}
.y186{bottom:553.605000px;}
.y1c{bottom:564.195000px;}
.y3b{bottom:565.095000px;}
.y1a6{bottom:571.245000px;}
.yf1{bottom:572.685000px;}
.y27{bottom:573.015000px;}
.y76{bottom:582.765000px;}
.y90{bottom:586.515000px;}
.yaf{bottom:586.875000px;}
.y136{bottom:591.945000px;}
.y75{bottom:602.565000px;}
.yef{bottom:604.770000px;}
.y26{bottom:608.115000px;}
.y18c{bottom:614.670000px;}
.y3a{bottom:623.955000px;}
.y19{bottom:627.555000px;}
.y1ab{bottom:632.310000px;}
.y135{bottom:636.270000px;}
.yeb{bottom:639.150000px;}
.y25{bottom:643.245000px;}
.y39{bottom:653.505000px;}
.y131{bottom:668.310000px;}
.yae{bottom:670.065000px;}
.y185{bottom:675.690000px;}
.y9b{bottom:677.805000px;}
.y24{bottom:678.345000px;}
.yc3{bottom:681.225000px;}
.y38{bottom:683.205000px;}
.yd2{bottom:683.430000px;}
.ycb{bottom:692.385000px;}
.y1aa{bottom:693.330000px;}
.y18{bottom:697.245000px;}
.y6{bottom:703.185000px;}
.yca{bottom:712.005000px;}
.y37{bottom:712.725000px;}
.y23{bottom:713.445000px;}
.ycd{bottom:720.105000px;}
.ya4{bottom:725.865000px;}
.y85{bottom:728.925000px;}
.y5{bottom:729.285000px;}
.y5a{bottom:734.325000px;}
.yc2{bottom:740.625000px;}
.y36{bottom:742.065000px;}
.y22{bottom:748.545000px;}
.yc9{bottom:751.425000px;}
.y73{bottom:752.865000px;}
.y182{bottom:754.350000px;}
.yc8{bottom:771.045000px;}
.y35{bottom:772.665000px;}
.y16{bottom:775.905000px;}
.yc1{bottom:785.265000px;}
.yc7{bottom:790.665000px;}
.y58{bottom:794.265000px;}
.y34{bottom:803.445000px;}
.ya3{bottom:805.425000px;}
.yc0{bottom:808.125000px;}
.y84{bottom:808.485000px;}
.y9a{bottom:817.665000px;}
.ybc{bottom:830.805000px;}
.y72{bottom:832.425000px;}
.y33{bottom:834.225000px;}
.y13{bottom:842.505000px;}
.yc6{bottom:849.885000px;}
.y32{bottom:864.825000px;}
.yc5{bottom:889.125000px;}
.y6e{bottom:892.185000px;}
.y31{bottom:895.650000px;}
.y99{bottom:897.270000px;}
.y30{bottom:926.430000px;}
.y2f{bottom:957.030000px;}
.y96{bottom:960.630000px;}
.y4c{bottom:963.870000px;}
.yb5{bottom:976.110000px;}
.y2e{bottom:987.810000px;}
.y11{bottom:993.210000px;}
.ybb{bottom:999.330000px;}
.y8e{bottom:1002.390000px;}
.y2d{bottom:1018.410000px;}
.y2c{bottom:1049.190000px;}
.yb4{bottom:1055.490000px;}
.ycf{bottom:1061.790000px;}
.yf{bottom:1062.870000px;}
.yc4{bottom:1067.910000px;}
.y4a{bottom:1070.610000px;}
.y2b{bottom:1079.970000px;}
.y6d{bottom:1098.510000px;}
.y2a{bottom:1110.570000px;}
.y4{bottom:1110.930000px;}
.y49{bottom:1113.990000px;}
.y82{bottom:1136.490000px;}
.y57{bottom:1139.370000px;}
.y3{bottom:1146.060000px;}
.y4b{bottom:1153.800000px;}
.ya1{bottom:1154.700000px;}
.y56{bottom:1162.080000px;}
.y2{bottom:1179.900000px;}
.y1{bottom:1202.400000px;}
.h33{height:21.960000px;}
.h2b{height:22.500000px;}
.h3f{height:26.280000px;}
.h40{height:28.260000px;}
.h42{height:28.800000px;}
.h43{height:29.160000px;}
.h52{height:30.060000px;}
.h47{height:30.600000px;}
.h50{height:30.780000px;}
.h44{height:31.140000px;}
.h4d{height:31.320000px;}
.h3e{height:31.356000px;}
.h53{height:31.536000px;}
.h51{height:31.680000px;}
.h8{height:32.220000px;}
.h3d{height:33.660000px;}
.h48{height:36.360000px;}
.h2c{height:39.240000px;}
.h21{height:39.420000px;}
.h20{height:40.716000px;}
.h5e{height:41.726953px;}
.h45{height:43.416000px;}
.h3b{height:43.560000px;}
.h34{height:43.920000px;}
.h2{height:44.820000px;}
.h5{height:45.720703px;}
.h6{height:47.520000px;}
.h19{height:48.045938px;}
.he{height:49.140000px;}
.h4b{height:49.255313px;}
.hb{height:52.200000px;}
.h3{height:54.000000px;}
.h9{height:55.440000px;}
.hd{height:55.476000px;}
.h56{height:57.600000px;}
.h3c{height:58.621992px;}
.h14{height:58.651172px;}
.h13{height:59.040000px;}
.h2d{height:59.076000px;}
.h15{height:59.220000px;}
.h38{height:60.226875px;}
.h57{height:60.300000px;}
.h59{height:60.336000px;}
.h5d{height:60.696000px;}
.h7{height:60.960938px;}
.h1b{height:61.423863px;}
.h18{height:62.184375px;}
.hf{height:63.019687px;}
.ha{height:64.296000px;}
.hc{height:64.440000px;}
.h12{height:65.124096px;}
.h24{height:65.884219px;}
.h31{height:65.916000px;}
.h16{height:70.664062px;}
.h32{height:71.613281px;}
.h5a{height:77.940000px;}
.h26{height:78.660000px;}
.h1c{height:78.696000px;}
.h1e{height:78.840000px;}
.h1d{height:78.876000px;}
.h4{height:91.620000px;}
.h23{height:95.400000px;}
.h11{height:98.426190px;}
.h2f{height:98.496000px;}
.h49{height:105.696000px;}
.h63{height:118.836000px;}
.h5c{height:121.320000px;}
.h5b{height:121.356000px;}
.h10{height:123.587773px;}
.h37{height:131.256000px;}
.h41{height:134.856000px;}
.h25{height:137.736000px;}
.h29{height:139.140000px;}
.h58{height:139.356000px;}
.h4c{height:146.376000px;}
.h3a{height:165.990000px;}
.h2e{height:175.350000px;}
.h1a{height:176.790000px;}
.h5f{height:182.370000px;}
.h4f{height:189.570000px;}
.h2a{height:199.470000px;}
.h27{height:200.910000px;}
.h46{height:206.130000px;}
.h4e{height:207.030000px;}
.h28{height:216.570000px;}
.h22{height:240.150000px;}
.h62{height:240.870000px;}
.h60{height:243.435000px;}
.h55{height:258.690000px;}
.h17{height:300.630000px;}
.h30{height:354.495000px;}
.h61{height:426.705000px;}
.h54{height:427.965000px;}
.h4a{height:474.765000px;}
.h39{height:508.605000px;}
.h1f{height:659.085000px;}
.h35{height:892.440000px;}
.h36{height:892.500000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w14{width:41.760000px;}
.w18{width:42.120000px;}
.wd{width:83.916000px;}
.we{width:96.300000px;}
.w6{width:105.336000px;}
.wc{width:117.540000px;}
.wb{width:117.936000px;}
.w8{width:124.236000px;}
.w16{width:126.756000px;}
.w1a{width:127.116000px;}
.wa{width:127.656000px;}
.wf{width:136.476000px;}
.w17{width:201.450000px;}
.w13{width:202.170000px;}
.w3{width:299.700000px;}
.w1b{width:328.935000px;}
.w1c{width:329.295000px;}
.w4{width:544.065000px;}
.w9{width:550.725000px;}
.w7{width:554.145000px;}
.w5{width:573.045000px;}
.w15{width:754.125000px;}
.w19{width:754.485000px;}
.w1d{width:754.845000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.w11{width:1263.000000px;}
.w12{width:1263.059981px;}
.w10{width:1263.060000px;}
.x0{left:0.000000px;}
.x8{left:4.860000px;}
.x5{left:6.225000px;}
.x1f{left:7.740000px;}
.x47{left:9.000000px;}
.x2b{left:10.800000px;}
.x4c{left:11.880000px;}
.x46{left:13.320000px;}
.x40{left:14.760000px;}
.x49{left:16.380000px;}
.x44{left:17.460000px;}
.x1b{left:19.080000px;}
.x20{left:20.520000px;}
.x4e{left:21.600000px;}
.x1a{left:23.220000px;}
.x48{left:24.840000px;}
.x21{left:25.920000px;}
.x42{left:27.720000px;}
.x22{left:29.700000px;}
.x41{left:31.320000px;}
.x50{left:33.696000px;}
.x1d{left:34.740000px;}
.x4d{left:36.360000px;}
.x53{left:37.476000px;}
.x3f{left:39.816000px;}
.x4a{left:42.840000px;}
.x45{left:44.100000px;}
.x43{left:46.260000px;}
.x18{left:56.016000px;}
.x3{left:63.719987px;}
.x4f{left:65.340000px;}
.x56{left:66.990000px;}
.x4b{left:77.400000px;}
.x11{left:81.539987px;}
.x19{left:82.656000px;}
.x3c{left:84.959981px;}
.x12{left:86.039987px;}
.x54{left:87.330000px;}
.x14{left:88.379987px;}
.x3a{left:90.359987px;}
.x13{left:91.439987px;}
.x51{left:93.270000px;}
.x52{left:94.350000px;}
.x15{left:97.055987px;}
.x37{left:98.495987px;}
.x25{left:100.440000px;}
.x24{left:103.725000px;}
.x2d{left:109.080000px;}
.x2a{left:114.300000px;}
.x55{left:126.930000px;}
.x17{left:150.705000px;}
.x39{left:153.569987px;}
.x38{left:157.169987px;}
.x16{left:170.490000px;}
.xd{left:171.749987px;}
.xb{left:173.549987px;}
.x10{left:178.049987px;}
.xf{left:179.849987px;}
.x1e{left:189.390000px;}
.xe{left:190.829987px;}
.x2f{left:192.810000px;}
.x3d{left:212.610000px;}
.xc{left:223.949987px;}
.x28{left:250.785000px;}
.x32{left:274.185000px;}
.x7{left:281.730000px;}
.x33{left:296.895000px;}
.x29{left:306.765000px;}
.x31{left:331.815000px;}
.x1{left:368.174987px;}
.x2e{left:384.015000px;}
.x23{left:400.755000px;}
.x2c{left:412.635000px;}
.x34{left:415.335000px;}
.x1c{left:430.995000px;}
.x30{left:450.435000px;}
.x3e{left:457.275000px;}
.x26{left:458.355000px;}
.x35{left:499.965000px;}
.x4{left:502.560000px;}
.x27{left:516.540000px;}
.x36{left:596.985000px;}
.x2{left:722.669987px;}
.x9{left:809.789987px;}
.x6{left:819.329987px;}
.xa{left:828.869987px;}
.x3b{left:1178.099981px;}
@media print{
.v1{vertical-align:-70.400000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000003pt;}
.lsd{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.272000pt;}
.ls1{letter-spacing:0.288000pt;}
.lsf{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.409067pt;}
.ls7{letter-spacing:0.640000pt;}
.lsb{letter-spacing:567.543040pt;}
.lsc{letter-spacing:2552.181333pt;}
.lsa{letter-spacing:2552.341333pt;}
.ws3{word-spacing:-64.000000pt;}
.wsa{word-spacing:-56.320000pt;}
.wsb{word-spacing:-53.120000pt;}
.ws9{word-spacing:-33.920000pt;}
.ws0{word-spacing:-32.000000pt;}
.ws1{word-spacing:-25.600000pt;}
.ws6{word-spacing:-14.464000pt;}
.ws5{word-spacing:-14.080000pt;}
.ws7{word-spacing:-14.016000pt;}
.ws4{word-spacing:-13.824000pt;}
.wsd{word-spacing:-13.689067pt;}
.wse{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.280000pt;}
.ws2{word-spacing:0.000000pt;}
.ws8{word-spacing:66.240000pt;}
._a{margin-left:-13.333333pt;}
._30{margin-left:-11.816960pt;}
._4{margin-left:-10.453333pt;}
._c{margin-left:-8.586667pt;}
._6{margin-left:-7.605333pt;}
._2d{margin-left:-6.581333pt;}
._8{margin-left:-4.821333pt;}
._2f{margin-left:-2.856960pt;}
._0{margin-left:-1.104000pt;}
._1{width:0.912000pt;}
._3{width:2.538667pt;}
._5{width:3.840000pt;}
._7{width:4.842667pt;}
._2e{width:6.533333pt;}
._b{width:9.002667pt;}
._14{width:28.871680pt;}
._27{width:43.591680pt;}
._f{width:48.071680pt;}
._2b{width:51.911680pt;}
._1f{width:67.271680pt;}
._10{width:77.511680pt;}
._9{width:92.096000pt;}
._d{width:93.511680pt;}
._1b{width:101.831680pt;}
._12{width:119.911680pt;}
._1c{width:128.071680pt;}
._24{width:138.951680pt;}
._15{width:145.991680pt;}
._26{width:172.871680pt;}
._11{width:193.351680pt;}
._16{width:196.658347pt;}
._23{width:206.791680pt;}
._20{width:213.831680pt;}
._13{width:218.311680pt;}
._19{width:229.831680pt;}
._1e{width:234.845013pt;}
._29{width:249.031680pt;}
._22{width:257.511680pt;}
._21{width:266.951680pt;}
._25{width:310.578347pt;}
._1d{width:327.271680pt;}
._1a{width:344.498347pt;}
._e{width:350.951680pt;}
._18{width:353.351680pt;}
._17{width:371.911680pt;}
._28{width:378.418347pt;}
._2a{width:394.951680pt;}
._2c{width:894.898347pt;}
._2{width:2584.981333pt;}
.fs0{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:56.320000pt;}
.fs7{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.fs5{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y171{bottom:3.200000pt;}
.y59{bottom:3.360000pt;}
.y71{bottom:3.400000pt;}
.y5b{bottom:3.520000pt;}
.ybf{bottom:4.320000pt;}
.ya2{bottom:5.920000pt;}
.ye{bottom:6.240000pt;}
.y20{bottom:7.360000pt;}
.y146{bottom:10.714667pt;}
.yd7{bottom:10.880000pt;}
.yfd{bottom:11.040000pt;}
.yee{bottom:11.200000pt;}
.y139{bottom:11.240000pt;}
.yf3{bottom:12.160000pt;}
.yf7{bottom:12.320000pt;}
.yf9{bottom:12.480000pt;}
.y7{bottom:12.640000pt;}
.y14c{bottom:12.800000pt;}
.y14d{bottom:13.114667pt;}
.y102{bottom:13.120000pt;}
.y15{bottom:13.280000pt;}
.y10{bottom:13.440000pt;}
.y1b{bottom:13.466667pt;}
.y14a{bottom:13.600000pt;}
.yf0{bottom:14.400000pt;}
.y105{bottom:15.680000pt;}
.y17f{bottom:17.440000pt;}
.y19c{bottom:17.600000pt;}
.y1c6{bottom:18.554667pt;}
.y170{bottom:18.560000pt;}
.yfb{bottom:18.720000pt;}
.yec{bottom:18.880000pt;}
.y137{bottom:18.920000pt;}
.yb1{bottom:20.800000pt;}
.ya8{bottom:20.954667pt;}
.y6c{bottom:20.960000pt;}
.yba{bottom:20.986667pt;}
.y70{bottom:21.000000pt;}
.y8c{bottom:22.080000pt;}
.y83{bottom:22.106667pt;}
.y67{bottom:22.240000pt;}
.y1a2{bottom:22.714667pt;}
.y18b{bottom:22.720000pt;}
.y19a{bottom:22.880000pt;}
.ybe{bottom:23.840000pt;}
.y17d{bottom:25.120000pt;}
.y145{bottom:26.074667pt;}
.y1b0{bottom:26.080000pt;}
.y1a5{bottom:26.234667pt;}
.y184{bottom:26.240000pt;}
.y1a4{bottom:26.280000pt;}
.y108{bottom:26.400000pt;}
.yfc{bottom:26.426667pt;}
.yed{bottom:26.560000pt;}
.y160{bottom:26.586667pt;}
.y138{bottom:26.600000pt;}
.yb{bottom:27.680000pt;}
.y1d{bottom:28.480000pt;}
.y191{bottom:30.400000pt;}
.y21{bottom:31.040000pt;}
.y17{bottom:31.200000pt;}
.y17e{bottom:32.800000pt;}
.y8f{bottom:32.960000pt;}
.yd{bottom:33.440000pt;}
.y16f{bottom:33.914667pt;}
.y14{bottom:33.920000pt;}
.y12{bottom:34.080000pt;}
.y1a{bottom:34.106667pt;}
.yd6{bottom:34.240000pt;}
.ydb{bottom:34.560000pt;}
.yd1{bottom:35.072000pt;}
.y29{bottom:35.200000pt;}
.yc{bottom:36.000000pt;}
.y1a1{bottom:38.074667pt;}
.y18a{bottom:38.080000pt;}
.y199{bottom:38.240000pt;}
.y95{bottom:38.400000pt;}
.yb9{bottom:38.426667pt;}
.y6b{bottom:38.432000pt;}
.y8b{bottom:39.520000pt;}
.y66{bottom:39.680000pt;}
.y144{bottom:41.434667pt;}
.y1af{bottom:41.440000pt;}
.y1b5{bottom:41.466667pt;}
.y183{bottom:41.626667pt;}
.ya{bottom:41.760000pt;}
.y194{bottom:41.786667pt;}
.y107{bottom:41.800000pt;}
.y130{bottom:41.920000pt;}
.y15f{bottom:41.946667pt;}
.ybd{bottom:43.360000pt;}
.y17b{bottom:45.434667pt;}
.y190{bottom:45.760000pt;}
.y106{bottom:46.440000pt;}
.y16e{bottom:49.114667pt;}
.yda{bottom:49.920000pt;}
.y1c3{bottom:52.320000pt;}
.y1a0{bottom:53.434667pt;}
.y198{bottom:53.440000pt;}
.y189{bottom:53.480000pt;}
.y9{bottom:55.840000pt;}
.ya0{bottom:55.866667pt;}
.y94{bottom:56.000000pt;}
.y6f{bottom:56.040000pt;}
.y143{bottom:56.834667pt;}
.y8a{bottom:56.960000pt;}
.y65{bottom:57.120000pt;}
.y81{bottom:57.146667pt;}
.y12f{bottom:57.280000pt;}
.y15e{bottom:57.306667pt;}
.yd5{bottom:57.600000pt;}
.yf5{bottom:59.066667pt;}
.y17a{bottom:60.794667pt;}
.y18f{bottom:61.120000pt;}
.y181{bottom:61.434667pt;}
.yd0{bottom:62.112000pt;}
.y28{bottom:62.240000pt;}
.y16d{bottom:64.474667pt;}
.y132{bottom:64.640000pt;}
.yd9{bottom:65.280000pt;}
.y1a9{bottom:65.320000pt;}
.y19f{bottom:68.794667pt;}
.y197{bottom:68.800000pt;}
.y188{bottom:68.840000pt;}
.y8{bottom:69.920000pt;}
.y142{bottom:72.034667pt;}
.y12e{bottom:72.506667pt;}
.y15d{bottom:72.666667pt;}
.yea{bottom:72.960000pt;}
.yad{bottom:73.440000pt;}
.y91{bottom:73.466667pt;}
.y89{bottom:74.560000pt;}
.y64{bottom:74.720000pt;}
.y1c1{bottom:75.840000pt;}
.y179{bottom:76.194667pt;}
.y1ad{bottom:76.320000pt;}
.y18e{bottom:76.480000pt;}
.y16c{bottom:79.874667pt;}
.yd8{bottom:80.640000pt;}
.y1a8{bottom:80.680000pt;}
.yd4{bottom:80.960000pt;}
.y74{bottom:82.720000pt;}
.y9e{bottom:82.880000pt;}
.y187{bottom:84.040000pt;}
.y196{bottom:84.160000pt;}
.y19e{bottom:84.194667pt;}
.y141{bottom:87.394667pt;}
.y12d{bottom:87.866667pt;}
.y15c{bottom:88.026667pt;}
.yac{bottom:90.880000pt;}
.y6a{bottom:90.906667pt;}
.y1c0{bottom:91.200000pt;}
.y68{bottom:91.520000pt;}
.y13b{bottom:91.546667pt;}
.y178{bottom:91.554667pt;}
.y88{bottom:92.000000pt;}
.y63{bottom:92.160000pt;}
.y1b3{bottom:92.360000pt;}
.y16b{bottom:95.234667pt;}
.y1a7{bottom:95.880000pt;}
.y1b9{bottom:96.000000pt;}
.y55{bottom:98.720000pt;}
.y134{bottom:102.720000pt;}
.y140{bottom:102.754667pt;}
.y12c{bottom:103.226667pt;}
.yd3{bottom:104.186667pt;}
.y1bf{bottom:106.560000pt;}
.y177{bottom:106.914667pt;}
.yb3{bottom:106.920000pt;}
.y1b2{bottom:107.720000pt;}
.y98{bottom:108.480000pt;}
.y62{bottom:109.600000pt;}
.y16a{bottom:110.594667pt;}
.y117{bottom:110.906667pt;}
.y19d{bottom:111.712000pt;}
.y162{bottom:113.152000pt;}
.y133{bottom:118.106667pt;}
.y13f{bottom:118.114667pt;}
.y12b{bottom:118.586667pt;}
.y54{bottom:118.880000pt;}
.yb6{bottom:120.160000pt;}
.ya7{bottom:120.512000pt;}
.y1be{bottom:121.920000pt;}
.y176{bottom:122.274667pt;}
.y1b1{bottom:123.080000pt;}
.y169{bottom:125.794667pt;}
.yab{bottom:125.920000pt;}
.y116{bottom:126.266667pt;}
.y69{bottom:126.426667pt;}
.y8d{bottom:126.432000pt;}
.y87{bottom:127.040000pt;}
.y61{bottom:127.200000pt;}
.y1b8{bottom:127.872000pt;}
.y80{bottom:128.346667pt;}
.y1c5{bottom:130.112000pt;}
.y13c{bottom:132.992000pt;}
.y13e{bottom:133.474667pt;}
.y12a{bottom:133.946667pt;}
.y1bd{bottom:137.280000pt;}
.y175{bottom:137.474667pt;}
.y53{bottom:139.066667pt;}
.y100{bottom:140.200000pt;}
.y168{bottom:141.154667pt;}
.ye8{bottom:141.160000pt;}
.y115{bottom:141.626667pt;}
.yaa{bottom:143.520000pt;}
.y60{bottom:144.640000pt;}
.y7f{bottom:145.786667pt;}
.y13d{bottom:148.834667pt;}
.y129{bottom:149.146667pt;}
.y15b{bottom:151.386667pt;}
.y174{bottom:152.834667pt;}
.y48{bottom:152.986667pt;}
.ydc{bottom:154.746667pt;}
.yff{bottom:155.560000pt;}
.y167{bottom:156.514667pt;}
.ye7{bottom:156.520000pt;}
.y114{bottom:156.826667pt;}
.y52{bottom:159.226667pt;}
.ya9{bottom:160.960000pt;}
.yb8{bottom:160.986667pt;}
.y9f{bottom:163.226667pt;}
.y128{bottom:164.506667pt;}
.y1a3{bottom:165.946667pt;}
.y15a{bottom:166.746667pt;}
.y173{bottom:168.194667pt;}
.yfe{bottom:170.920000pt;}
.y166{bottom:171.874667pt;}
.ye6{bottom:171.880000pt;}
.y113{bottom:172.186667pt;}
.y97{bottom:178.426667pt;}
.ycc{bottom:179.226667pt;}
.y51{bottom:179.386667pt;}
.y127{bottom:179.866667pt;}
.y47{bottom:180.346667pt;}
.y5f{bottom:180.800000pt;}
.y1bb{bottom:181.506667pt;}
.y159{bottom:182.106667pt;}
.y172{bottom:183.554667pt;}
.y1bc{bottom:184.386667pt;}
.y165{bottom:187.234667pt;}
.ye5{bottom:187.240000pt;}
.y112{bottom:187.546667pt;}
.y14b{bottom:189.666667pt;}
.y161{bottom:189.786667pt;}
.ya6{bottom:191.226667pt;}
.y126{bottom:195.226667pt;}
.yb7{bottom:195.866667pt;}
.y1ba{bottom:196.866667pt;}
.y158{bottom:197.506667pt;}
.y50{bottom:199.386667pt;}
.y164{bottom:202.594667pt;}
.ye4{bottom:202.600000pt;}
.y111{bottom:202.906667pt;}
.y46{bottom:207.546667pt;}
.y125{bottom:210.586667pt;}
.y157{bottom:212.866667pt;}
.y7e{bottom:215.866667pt;}
.y5e{bottom:216.986667pt;}
.y149{bottom:217.026667pt;}
.y163{bottom:217.794667pt;}
.ye3{bottom:217.986667pt;}
.y110{bottom:218.266667pt;}
.y195{bottom:220.226667pt;}
.y124{bottom:225.946667pt;}
.y156{bottom:228.226667pt;}
.ye2{bottom:233.186667pt;}
.y7d{bottom:233.306667pt;}
.y10f{bottom:233.666667pt;}
.y45{bottom:234.906667pt;}
.y1b7{bottom:236.386667pt;}
.y180{bottom:237.666667pt;}
.y1c4{bottom:238.626667pt;}
.y123{bottom:241.186667pt;}
.y155{bottom:243.426667pt;}
.y148{bottom:245.826667pt;}
.y4f{bottom:248.346667pt;}
.ye1{bottom:248.546667pt;}
.y10e{bottom:248.866667pt;}
.y104{bottom:249.346667pt;}
.y5d{bottom:253.146667pt;}
.y122{bottom:256.546667pt;}
.y154{bottom:258.786667pt;}
.y9d{bottom:260.826667pt;}
.y44{bottom:262.266667pt;}
.ye0{bottom:263.906667pt;}
.y10d{bottom:264.226667pt;}
.y93{bottom:271.386667pt;}
.y121{bottom:271.906667pt;}
.y147{bottom:274.146667pt;}
.y19b{bottom:274.466667pt;}
.ydf{bottom:279.266667pt;}
.y10c{bottom:279.586667pt;}
.y103{bottom:282.306667pt;}
.y7c{bottom:285.826667pt;}
.y120{bottom:287.266667pt;}
.y43{bottom:289.466667pt;}
.y1b6{bottom:290.626667pt;}
.y17c{bottom:291.906667pt;}
.y1c2{bottom:292.866667pt;}
.yb2{bottom:294.426667pt;}
.yde{bottom:294.626667pt;}
.y10b{bottom:294.946667pt;}
.y109{bottom:302.146667pt;}
.y11f{bottom:302.626667pt;}
.y153{bottom:306.946667pt;}
.ydd{bottom:309.826667pt;}
.y10a{bottom:310.306667pt;}
.y101{bottom:310.786667pt;}
.y9c{bottom:314.106667pt;}
.y42{bottom:316.826667pt;}
.y11e{bottom:317.986667pt;}
.y7b{bottom:321.986667pt;}
.y152{bottom:322.306667pt;}
.y193{bottom:328.866667pt;}
.y11d{bottom:333.186667pt;}
.yce{bottom:337.626667pt;}
.y151{bottom:337.666667pt;}
.yf4{bottom:338.786667pt;}
.y7a{bottom:339.586667pt;}
.y14e{bottom:343.746667pt;}
.y41{bottom:344.346667pt;}
.y1b4{bottom:344.866667pt;}
.y11c{bottom:348.546667pt;}
.y150{bottom:353.026667pt;}
.y11b{bottom:363.906667pt;}
.y14f{bottom:368.413333pt;}
.y40{bottom:370.786667pt;}
.yfa{bottom:378.013333pt;}
.y11a{bottom:379.266667pt;}
.y18d{bottom:383.453333pt;}
.y5c{bottom:384.866667pt;}
.y119{bottom:394.626667pt;}
.y3f{bottom:397.026667pt;}
.y1ac{bottom:399.293333pt;}
.yf8{bottom:406.493333pt;}
.y118{bottom:410.013333pt;}
.y1f{bottom:418.786667pt;}
.y3e{bottom:423.426667pt;}
.y79{bottom:429.346667pt;}
.yf6{bottom:433.053333pt;}
.y86{bottom:433.826667pt;}
.y192{bottom:437.693333pt;}
.y4e{bottom:445.346667pt;}
.y78{bottom:446.786667pt;}
.y3d{bottom:449.666667pt;}
.y92{bottom:450.626667pt;}
.yb0{bottom:451.106667pt;}
.y1ae{bottom:453.533333pt;}
.ye9{bottom:459.293333pt;}
.y1e{bottom:460.226667pt;}
.ya5{bottom:465.986667pt;}
.y3c{bottom:476.066667pt;}
.y77{bottom:483.106667pt;}
.y4d{bottom:483.906667pt;}
.yf2{bottom:485.053333pt;}
.y13a{bottom:486.813333pt;}
.y186{bottom:492.093333pt;}
.y1c{bottom:501.506667pt;}
.y3b{bottom:502.306667pt;}
.y1a6{bottom:507.773333pt;}
.yf1{bottom:509.053333pt;}
.y27{bottom:509.346667pt;}
.y76{bottom:518.013333pt;}
.y90{bottom:521.346667pt;}
.yaf{bottom:521.666667pt;}
.y136{bottom:526.173333pt;}
.y75{bottom:535.613333pt;}
.yef{bottom:537.573333pt;}
.y26{bottom:540.546667pt;}
.y18c{bottom:546.373333pt;}
.y3a{bottom:554.626667pt;}
.y19{bottom:557.826667pt;}
.y1ab{bottom:562.053333pt;}
.y135{bottom:565.573333pt;}
.yeb{bottom:568.133333pt;}
.y25{bottom:571.773333pt;}
.y39{bottom:580.893333pt;}
.y131{bottom:594.053333pt;}
.yae{bottom:595.613333pt;}
.y185{bottom:600.613333pt;}
.y9b{bottom:602.493333pt;}
.y24{bottom:602.973333pt;}
.yc3{bottom:605.533333pt;}
.y38{bottom:607.293333pt;}
.yd2{bottom:607.493333pt;}
.ycb{bottom:615.453333pt;}
.y1aa{bottom:616.293333pt;}
.y18{bottom:619.773333pt;}
.y6{bottom:625.053333pt;}
.yca{bottom:632.893333pt;}
.y37{bottom:633.533333pt;}
.y23{bottom:634.173333pt;}
.ycd{bottom:640.093333pt;}
.ya4{bottom:645.213333pt;}
.y85{bottom:647.933333pt;}
.y5{bottom:648.253333pt;}
.y5a{bottom:652.733333pt;}
.yc2{bottom:658.333333pt;}
.y36{bottom:659.613333pt;}
.y22{bottom:665.373333pt;}
.yc9{bottom:667.933333pt;}
.y73{bottom:669.213333pt;}
.y182{bottom:670.533333pt;}
.yc8{bottom:685.373333pt;}
.y35{bottom:686.813333pt;}
.y16{bottom:689.693333pt;}
.yc1{bottom:698.013333pt;}
.yc7{bottom:702.813333pt;}
.y58{bottom:706.013333pt;}
.y34{bottom:714.173333pt;}
.ya3{bottom:715.933333pt;}
.yc0{bottom:718.333333pt;}
.y84{bottom:718.653333pt;}
.y9a{bottom:726.813333pt;}
.ybc{bottom:738.493333pt;}
.y72{bottom:739.933333pt;}
.y33{bottom:741.533333pt;}
.y13{bottom:748.893333pt;}
.yc6{bottom:755.453333pt;}
.y32{bottom:768.733333pt;}
.yc5{bottom:790.333333pt;}
.y6e{bottom:793.053333pt;}
.y31{bottom:796.133333pt;}
.y99{bottom:797.573333pt;}
.y30{bottom:823.493333pt;}
.y2f{bottom:850.693333pt;}
.y96{bottom:853.893333pt;}
.y4c{bottom:856.773333pt;}
.yb5{bottom:867.653333pt;}
.y2e{bottom:878.053333pt;}
.y11{bottom:882.853333pt;}
.ybb{bottom:888.293333pt;}
.y8e{bottom:891.013333pt;}
.y2d{bottom:905.253333pt;}
.y2c{bottom:932.613333pt;}
.yb4{bottom:938.213333pt;}
.ycf{bottom:943.813333pt;}
.yf{bottom:944.773333pt;}
.yc4{bottom:949.253333pt;}
.y4a{bottom:951.653333pt;}
.y2b{bottom:959.973333pt;}
.y6d{bottom:976.453333pt;}
.y2a{bottom:987.173333pt;}
.y4{bottom:987.493333pt;}
.y49{bottom:990.213333pt;}
.y82{bottom:1010.213333pt;}
.y57{bottom:1012.773333pt;}
.y3{bottom:1018.720000pt;}
.y4b{bottom:1025.600000pt;}
.ya1{bottom:1026.400000pt;}
.y56{bottom:1032.960000pt;}
.y2{bottom:1048.800000pt;}
.y1{bottom:1068.800000pt;}
.h33{height:19.520000pt;}
.h2b{height:20.000000pt;}
.h3f{height:23.360000pt;}
.h40{height:25.120000pt;}
.h42{height:25.600000pt;}
.h43{height:25.920000pt;}
.h52{height:26.720000pt;}
.h47{height:27.200000pt;}
.h50{height:27.360000pt;}
.h44{height:27.680000pt;}
.h4d{height:27.840000pt;}
.h3e{height:27.872000pt;}
.h53{height:28.032000pt;}
.h51{height:28.160000pt;}
.h8{height:28.640000pt;}
.h3d{height:29.920000pt;}
.h48{height:32.320000pt;}
.h2c{height:34.880000pt;}
.h21{height:35.040000pt;}
.h20{height:36.192000pt;}
.h5e{height:37.090625pt;}
.h45{height:38.592000pt;}
.h3b{height:38.720000pt;}
.h34{height:39.040000pt;}
.h2{height:39.840000pt;}
.h5{height:40.640625pt;}
.h6{height:42.240000pt;}
.h19{height:42.707500pt;}
.he{height:43.680000pt;}
.h4b{height:43.782500pt;}
.hb{height:46.400000pt;}
.h3{height:48.000000pt;}
.h9{height:49.280000pt;}
.hd{height:49.312000pt;}
.h56{height:51.200000pt;}
.h3c{height:52.108438pt;}
.h14{height:52.134375pt;}
.h13{height:52.480000pt;}
.h2d{height:52.512000pt;}
.h15{height:52.640000pt;}
.h38{height:53.535000pt;}
.h57{height:53.600000pt;}
.h59{height:53.632000pt;}
.h5d{height:53.952000pt;}
.h7{height:54.187500pt;}
.h1b{height:54.598989pt;}
.h18{height:55.275000pt;}
.hf{height:56.017500pt;}
.ha{height:57.152000pt;}
.hc{height:57.280000pt;}
.h12{height:57.888085pt;}
.h24{height:58.563750pt;}
.h31{height:58.592000pt;}
.h16{height:62.812500pt;}
.h32{height:63.656250pt;}
.h5a{height:69.280000pt;}
.h26{height:69.920000pt;}
.h1c{height:69.952000pt;}
.h1e{height:70.080000pt;}
.h1d{height:70.112000pt;}
.h4{height:81.440000pt;}
.h23{height:84.800000pt;}
.h11{height:87.489947pt;}
.h2f{height:87.552000pt;}
.h49{height:93.952000pt;}
.h63{height:105.632000pt;}
.h5c{height:107.840000pt;}
.h5b{height:107.872000pt;}
.h10{height:109.855798pt;}
.h37{height:116.672000pt;}
.h41{height:119.872000pt;}
.h25{height:122.432000pt;}
.h29{height:123.680000pt;}
.h58{height:123.872000pt;}
.h4c{height:130.112000pt;}
.h3a{height:147.546667pt;}
.h2e{height:155.866667pt;}
.h1a{height:157.146667pt;}
.h5f{height:162.106667pt;}
.h4f{height:168.506667pt;}
.h2a{height:177.306667pt;}
.h27{height:178.586667pt;}
.h46{height:183.226667pt;}
.h4e{height:184.026667pt;}
.h28{height:192.506667pt;}
.h22{height:213.466667pt;}
.h62{height:214.106667pt;}
.h60{height:216.386667pt;}
.h55{height:229.946667pt;}
.h17{height:267.226667pt;}
.h30{height:315.106667pt;}
.h61{height:379.293333pt;}
.h54{height:380.413333pt;}
.h4a{height:422.013333pt;}
.h39{height:452.093333pt;}
.h1f{height:585.853333pt;}
.h35{height:793.280000pt;}
.h36{height:793.333333pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w14{width:37.120000pt;}
.w18{width:37.440000pt;}
.wd{width:74.592000pt;}
.we{width:85.600000pt;}
.w6{width:93.632000pt;}
.wc{width:104.480000pt;}
.wb{width:104.832000pt;}
.w8{width:110.432000pt;}
.w16{width:112.672000pt;}
.w1a{width:112.992000pt;}
.wa{width:113.472000pt;}
.wf{width:121.312000pt;}
.w17{width:179.066667pt;}
.w13{width:179.706667pt;}
.w3{width:266.400000pt;}
.w1b{width:292.386667pt;}
.w1c{width:292.706667pt;}
.w4{width:483.613333pt;}
.w9{width:489.533333pt;}
.w7{width:492.573333pt;}
.w5{width:509.373333pt;}
.w15{width:670.333333pt;}
.w19{width:670.653333pt;}
.w1d{width:670.973333pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.w11{width:1122.666667pt;}
.w12{width:1122.719983pt;}
.w10{width:1122.720000pt;}
.x0{left:0.000000pt;}
.x8{left:4.320000pt;}
.x5{left:5.533333pt;}
.x1f{left:6.880000pt;}
.x47{left:8.000000pt;}
.x2b{left:9.600000pt;}
.x4c{left:10.560000pt;}
.x46{left:11.840000pt;}
.x40{left:13.120000pt;}
.x49{left:14.560000pt;}
.x44{left:15.520000pt;}
.x1b{left:16.960000pt;}
.x20{left:18.240000pt;}
.x4e{left:19.200000pt;}
.x1a{left:20.640000pt;}
.x48{left:22.080000pt;}
.x21{left:23.040000pt;}
.x42{left:24.640000pt;}
.x22{left:26.400000pt;}
.x41{left:27.840000pt;}
.x50{left:29.952000pt;}
.x1d{left:30.880000pt;}
.x4d{left:32.320000pt;}
.x53{left:33.312000pt;}
.x3f{left:35.392000pt;}
.x4a{left:38.080000pt;}
.x45{left:39.200000pt;}
.x43{left:41.120000pt;}
.x18{left:49.792000pt;}
.x3{left:56.639988pt;}
.x4f{left:58.080000pt;}
.x56{left:59.546667pt;}
.x4b{left:68.800000pt;}
.x11{left:72.479988pt;}
.x19{left:73.472000pt;}
.x3c{left:75.519983pt;}
.x12{left:76.479988pt;}
.x54{left:77.626667pt;}
.x14{left:78.559988pt;}
.x3a{left:80.319988pt;}
.x13{left:81.279988pt;}
.x51{left:82.906667pt;}
.x52{left:83.866667pt;}
.x15{left:86.271988pt;}
.x37{left:87.551988pt;}
.x25{left:89.280000pt;}
.x24{left:92.200000pt;}
.x2d{left:96.960000pt;}
.x2a{left:101.600000pt;}
.x55{left:112.826667pt;}
.x17{left:133.960000pt;}
.x39{left:136.506655pt;}
.x38{left:139.706655pt;}
.x16{left:151.546667pt;}
.xd{left:152.666655pt;}
.xb{left:154.266655pt;}
.x10{left:158.266655pt;}
.xf{left:159.866655pt;}
.x1e{left:168.346667pt;}
.xe{left:169.626655pt;}
.x2f{left:171.386667pt;}
.x3d{left:188.986667pt;}
.xc{left:199.066655pt;}
.x28{left:222.920000pt;}
.x32{left:243.720000pt;}
.x7{left:250.426667pt;}
.x33{left:263.906667pt;}
.x29{left:272.680000pt;}
.x31{left:294.946667pt;}
.x1{left:327.266655pt;}
.x2e{left:341.346667pt;}
.x23{left:356.226667pt;}
.x2c{left:366.786667pt;}
.x34{left:369.186667pt;}
.x1c{left:383.106667pt;}
.x30{left:400.386667pt;}
.x3e{left:406.466667pt;}
.x26{left:407.426667pt;}
.x35{left:444.413333pt;}
.x4{left:446.720000pt;}
.x27{left:459.146667pt;}
.x36{left:530.653333pt;}
.x2{left:642.373322pt;}
.x9{left:719.813322pt;}
.x6{left:728.293322pt;}
.xa{left:736.773322pt;}
.x3b{left:1047.199983pt;}
}




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