
    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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_c4982507cb2b4151c5a0acf7.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8dba2dd20324c9c74766a3c2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_783000916d4baa52bbc0ac8c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_02d5acc4dad9ed23f96e2389.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_fb0ffcbe9db605fc4bca07e8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.882324;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_989241fc304d0c62549da2d1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_cc85b1b241fc01c977a9e321.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6540a6d44bbdc733cc9ff996.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_7a8677f6607b9ab40413b09b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_2a7899f890b2359255a754a2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921387;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;}
.m3{transform:matrix(0.000000,-0.249944,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249944,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249944,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.249944,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249944,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249944,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.249944,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249944,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249944,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267450,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.268525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268525,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,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:-27.360000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v5{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.ls8{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.152640px;}
.ls11{letter-spacing:0.157620px;}
.ls17{letter-spacing:0.159226px;}
.ls14{letter-spacing:0.168671px;}
.ls4{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.189144px;}
.lsa{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.256200px;}
.ls1{letter-spacing:0.288000px;}
.ls18{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.468000px;}
.ls6{letter-spacing:0.504000px;}
.ls12{letter-spacing:0.666531px;}
.ls15{letter-spacing:0.713265px;}
.ls3{letter-spacing:0.720000px;}
.lse{letter-spacing:1.440000px;}
.lsd{letter-spacing:12.240000px;}
.ls16{letter-spacing:234.690031px;}
.ls13{letter-spacing:248.611683px;}
.ls10{letter-spacing:259.612603px;}
.ls19{letter-spacing:537.300553px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-18.720000px;}
.ws8{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.216000px;}
.ws19{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws18{word-spacing:-17.928000px;}
.ws17{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.ws1a{word-spacing:-17.568000px;}
.ws6{word-spacing:-17.280000px;}
.ws13{word-spacing:-16.876590px;}
.ws9{word-spacing:-15.226440px;}
.ws0{word-spacing:-15.000000px;}
.ws10{word-spacing:-14.207142px;}
.wsb{word-spacing:-14.063825px;}
.ws5{word-spacing:-12.060000px;}
.wse{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
.ws15{word-spacing:107.627290px;}
.ws16{word-spacing:108.137616px;}
.ws14{word-spacing:108.187920px;}
.ws11{word-spacing:192.607264px;}
.wsf{word-spacing:204.032596px;}
.wsd{word-spacing:216.427621px;}
.wsc{word-spacing:231.536499px;}
.ws12{word-spacing:451.570417px;}
._1{margin-left:-1.008000px;}
._3{width:1.308000px;}
._7{width:2.592000px;}
._6{width:3.600000px;}
._12{width:4.728000px;}
._15{width:6.072000px;}
._4{width:7.104000px;}
._5{width:8.268000px;}
._a{width:9.948000px;}
._2{width:11.376000px;}
._0{width:12.600000px;}
._10{width:13.968000px;}
._11{width:14.976000px;}
._16{width:16.488000px;}
._f{width:19.080000px;}
._1a{width:20.376000px;}
._1b{width:21.672000px;}
._8{width:22.968000px;}
._9{width:23.976000px;}
._d{width:25.632000px;}
._e{width:26.940000px;}
._17{width:28.008000px;}
._19{width:29.208000px;}
._26{width:30.240000px;}
._1c{width:31.320000px;}
._1d{width:32.472000px;}
._1f{width:33.828000px;}
._1e{width:34.932000px;}
._b{width:36.000000px;}
._c{width:37.440000px;}
._13{width:38.592000px;}
._14{width:39.612000px;}
._20{width:41.832000px;}
._21{width:43.116000px;}
._2c{width:45.720000px;}
._27{width:47.160000px;}
._28{width:48.240000px;}
._18{width:60.384000px;}
._2b{width:125.738779px;}
._2a{width:158.811452px;}
._25{width:219.677848px;}
._24{width:220.821228px;}
._23{width:232.708988px;}
._22{width:233.920192px;}
._29{width:485.173207px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs4{font-size:50.589297px;}
.fs5{font-size:50.600702px;}
.fs8{font-size:51.104826px;}
.fs9{font-size:51.116347px;}
.fs6{font-size:54.136330px;}
.fs7{font-size:54.148534px;}
.fs3{font-size:60.000000px;}
.fsa{font-size:60.707157px;}
.fsb{font-size:60.720842px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y130{bottom:4.500000px;}
.y128{bottom:5.580000px;}
.y136{bottom:7.020000px;}
.y139{bottom:8.100000px;}
.y11a{bottom:9.360000px;}
.y94{bottom:11.700000px;}
.y90{bottom:11.880000px;}
.y116{bottom:12.060000px;}
.y133{bottom:17.280000px;}
.y88{bottom:19.800000px;}
.y85{bottom:19.980000px;}
.ya9{bottom:21.954000px;}
.y83{bottom:21.960000px;}
.y7f{bottom:22.320000px;}
.y8e{bottom:22.350000px;}
.ya6{bottom:22.365000px;}
.y81{bottom:22.500000px;}
.y113{bottom:22.860000px;}
.y12c{bottom:22.890000px;}
.y12e{bottom:25.200000px;}
.y127{bottom:26.280000px;}
.y135{bottom:27.720000px;}
.y10f{bottom:28.800000px;}
.y119{bottom:30.060000px;}
.y93{bottom:32.400000px;}
.y8f{bottom:32.610000px;}
.y115{bottom:32.760000px;}
.y111{bottom:33.120000px;}
.y12a{bottom:33.150000px;}
.y132{bottom:37.980000px;}
.y112{bottom:43.560000px;}
.y12b{bottom:43.590000px;}
.yfe{bottom:45.635682px;}
.y12f{bottom:45.900000px;}
.y126{bottom:46.980000px;}
.y134{bottom:48.420000px;}
.y138{bottom:49.500000px;}
.yd4{bottom:53.619100px;}
.y1b{bottom:57.456000px;}
.yee{bottom:58.460776px;}
.yfc{bottom:77.480927px;}
.y1{bottom:77.616000px;}
.yd2{bottom:86.154428px;}
.y14e{bottom:90.825584px;}
.yec{bottom:92.195049px;}
.yf5{bottom:94.922760px;}
.ycb{bottom:103.420312px;}
.ye6{bottom:110.671516px;}
.y124{bottom:114.516000px;}
.y21{bottom:115.236000px;}
.y148{bottom:117.127168px;}
.yf3{bottom:119.016000px;}
.y10d{bottom:122.076000px;}
.y175{bottom:122.436000px;}
.y2e{bottom:123.516000px;}
.ye4{bottom:127.656000px;}
.y141{bottom:138.034868px;}
.y161{bottom:138.816000px;}
.y70{bottom:140.076000px;}
.y195{bottom:141.696000px;}
.ya8{bottom:142.236000px;}
.y54{bottom:143.136000px;}
.y123{bottom:145.656000px;}
.y17{bottom:146.196000px;}
.y9a{bottom:146.376000px;}
.ya4{bottom:146.556000px;}
.yf2{bottom:150.150000px;}
.y20{bottom:152.670000px;}
.y10c{bottom:153.030000px;}
.yc9{bottom:153.930000px;}
.y2d{bottom:154.470000px;}
.yf6{bottom:158.590998px;}
.ye3{bottom:158.790000px;}
.y194{bottom:162.390000px;}
.y13f{bottom:165.090000px;}
.ycc{bottom:166.444188px;}
.y7d{bottom:166.890000px;}
.y160{bottom:169.770000px;}
.y6f{bottom:171.210000px;}
.y53{bottom:174.270000px;}
.y122{bottom:176.610000px;}
.y46{bottom:177.330000px;}
.ya3{bottom:177.510000px;}
.y174{bottom:178.950000px;}
.yf1{bottom:181.110000px;}
.y10b{bottom:184.170000px;}
.yc8{bottom:184.890000px;}
.y2c{bottom:185.610000px;}
.y16{bottom:187.590000px;}
.ye2{bottom:189.750000px;}
.ye7{bottom:191.616948px;}
.y13e{bottom:196.050000px;}
.y7c{bottom:197.850000px;}
.y193{bottom:198.030000px;}
.y173{bottom:199.650000px;}
.ya7{bottom:199.830000px;}
.y15f{bottom:200.910000px;}
.y6e{bottom:202.170000px;}
.y52{bottom:205.230000px;}
.y121{bottom:207.750000px;}
.y45{bottom:208.290000px;}
.y99{bottom:208.470000px;}
.ya2{bottom:208.650000px;}
.yf0{bottom:212.250000px;}
.y142{bottom:213.654718px;}
.y10a{bottom:215.130000px;}
.yc7{bottom:215.850000px;}
.y2b{bottom:216.570000px;}
.y192{bottom:218.730000px;}
.ye1{bottom:220.890000px;}
.yf7{bottom:222.281469px;}
.y13d{bottom:227.190000px;}
.y15{bottom:228.990000px;}
.ycd{bottom:229.492169px;}
.y154{bottom:231.690000px;}
.y15e{bottom:231.870000px;}
.y51{bottom:232.230000px;}
.y6d{bottom:233.310000px;}
.y172{bottom:235.290000px;}
.y120{bottom:238.710000px;}
.yef{bottom:239.250000px;}
.ye5{bottom:239.340000px;}
.y44{bottom:239.430000px;}
.ya1{bottom:239.610000px;}
.y109{bottom:246.270000px;}
.yc6{bottom:246.990000px;}
.y2a{bottom:247.710000px;}
.ye0{bottom:251.850000px;}
.y191{bottom:254.550000px;}
.y13c{bottom:258.150000px;}
.ya5{bottom:259.230000px;}
.y7b{bottom:259.950000px;}
.y153{bottom:262.650000px;}
.y15d{bottom:263.010000px;}
.yfd{bottom:263.040831px;}
.y6c{bottom:264.270000px;}
.y11f{bottom:269.850000px;}
.y22{bottom:270.390000px;}
.y98{bottom:270.570000px;}
.ya0{bottom:270.750000px;}
.y171{bottom:270.930000px;}
.ye8{bottom:272.419951px;}
.y190{bottom:275.250000px;}
.yd3{bottom:276.641917px;}
.y108{bottom:277.230000px;}
.yc5{bottom:277.950000px;}
.yed{bottom:278.375037px;}
.y29{bottom:279.210000px;}
.ydf{bottom:283.035000px;}
.yf8{bottom:285.813136px;}
.y143{bottom:289.161382px;}
.y13b{bottom:289.335000px;}
.y7a{bottom:291.135000px;}
.yce{bottom:292.382949px;}
.y152{bottom:293.835000px;}
.y15c{bottom:294.015000px;}
.y6b{bottom:295.455000px;}
.y11e{bottom:300.855000px;}
.y43{bottom:301.395000px;}
.y97{bottom:301.575000px;}
.y9f{bottom:301.755000px;}
.y170{bottom:306.795000px;}
.y107{bottom:308.415000px;}
.yc4{bottom:309.135000px;}
.y18f{bottom:310.935000px;}
.y14{bottom:311.835000px;}
.yde{bottom:313.995000px;}
.y13a{bottom:320.295000px;}
.y79{bottom:322.095000px;}
.y151{bottom:324.795000px;}
.y15b{bottom:325.155000px;}
.y6a{bottom:326.415000px;}
.y14d{bottom:327.266846px;}
.y18e{bottom:331.635000px;}
.y11d{bottom:331.995000px;}
.y42{bottom:332.535000px;}
.y9e{bottom:332.895000px;}
.y137{bottom:338.655000px;}
.y106{bottom:339.375000px;}
.yc3{bottom:340.095000px;}
.y16f{bottom:342.435000px;}
.y28{bottom:342.795000px;}
.ydd{bottom:345.135000px;}
.yf9{bottom:349.503605px;}
.y13{bottom:353.235000px;}
.ye9{bottom:353.357532px;}
.ycf{bottom:355.441410px;}
.y150{bottom:355.935000px;}
.y15a{bottom:356.115000px;}
.y69{bottom:357.555000px;}
.y11c{bottom:362.955000px;}
.y16e{bottom:363.135000px;}
.y41{bottom:363.495000px;}
.y96{bottom:363.675000px;}
.y9d{bottom:363.855000px;}
.y144{bottom:364.793807px;}
.y18d{bottom:367.275000px;}
.y105{bottom:370.515000px;}
.yc2{bottom:371.235000px;}
.y27{bottom:373.935000px;}
.ydc{bottom:376.095000px;}
.y95{bottom:381.855000px;}
.y14f{bottom:382.935000px;}
.y140{bottom:382.964959px;}
.y78{bottom:384.195000px;}
.y159{bottom:387.255000px;}
.y18c{bottom:387.975000px;}
.y68{bottom:388.515000px;}
.y11b{bottom:394.095000px;}
.y12{bottom:394.635000px;}
.y9c{bottom:394.995000px;}
.y16d{bottom:398.775000px;}
.y104{bottom:401.475000px;}
.yc1{bottom:402.195000px;}
.y26{bottom:404.895000px;}
.ydb{bottom:407.235000px;}
.y131{bottom:409.755000px;}
.y118{bottom:412.275000px;}
.yfa{bottom:413.172901px;}
.y77{bottom:415.335000px;}
.y158{bottom:418.215000px;}
.yd0{bottom:418.457951px;}
.y16c{bottom:419.475000px;}
.y67{bottom:419.655000px;}
.y9b{bottom:421.995000px;}
.y18b{bottom:423.615000px;}
.y40{bottom:425.595000px;}
.y103{bottom:432.615000px;}
.yc0{bottom:433.335000px;}
.yea{bottom:434.328758px;}
.y92{bottom:434.775000px;}
.y11{bottom:436.035000px;}
.yda{bottom:438.195000px;}
.y145{bottom:440.451384px;}
.y18a{bottom:444.315000px;}
.y76{bottom:446.295000px;}
.y157{bottom:449.355000px;}
.y66{bottom:450.615000px;}
.y16b{bottom:455.295000px;}
.y3f{bottom:456.735000px;}
.y102{bottom:463.575000px;}
.ybf{bottom:464.295000px;}
.y117{bottom:465.195000px;}
.y25{bottom:466.995000px;}
.yd9{bottom:469.335000px;}
.y156{bottom:476.175000px;}
.y155{bottom:476.189959px;}
.yfb{bottom:476.736329px;}
.y10{bottom:477.435000px;}
.y12d{bottom:478.695000px;}
.y189{bottom:480.135000px;}
.yd1{bottom:481.380171px;}
.y65{bottom:481.755000px;}
.y3e{bottom:487.695000px;}
.y16a{bottom:490.935000px;}
.y91{bottom:492.375000px;}
.y101{bottom:494.715000px;}
.ybe{bottom:495.435000px;}
.y14c{bottom:496.414843px;}
.y24{bottom:498.135000px;}
.yd8{bottom:500.295000px;}
.y188{bottom:500.835000px;}
.y75{bottom:508.395000px;}
.y64{bottom:512.715000px;}
.y14b{bottom:514.109359px;}
.yeb{bottom:515.131761px;}
.y146{bottom:515.920320px;}
.yf{bottom:518.835000px;}
.y114{bottom:522.795000px;}
.y100{bottom:525.675000px;}
.ybd{bottom:526.395000px;}
.y169{bottom:526.575000px;}
.y23{bottom:529.095000px;}
.yd7{bottom:531.435000px;}
.y14a{bottom:531.665539px;}
.y187{bottom:536.475000px;}
.y74{bottom:539.535000px;}
.y129{bottom:543.315000px;}
.y63{bottom:543.855000px;}
.y164{bottom:548.355000px;}
.y149{bottom:549.360056px;}
.y3d{bottom:549.795000px;}
.y8d{bottom:551.775000px;}
.yff{bottom:552.675000px;}
.yf4{bottom:552.689959px;}
.y186{bottom:557.175000px;}
.ybc{bottom:557.535000px;}
.ye{bottom:560.235000px;}
.y168{bottom:562.215000px;}
.yd6{bottom:562.395000px;}
.y73{bottom:570.525000px;}
.y62{bottom:574.845000px;}
.y163{bottom:579.525000px;}
.y3c{bottom:580.965000px;}
.y110{bottom:582.225000px;}
.ybb{bottom:588.525000px;}
.yca{bottom:589.589959px;}
.yd5{bottom:589.605000px;}
.y147{bottom:591.577897px;}
.y185{bottom:592.845000px;}
.y167{bottom:598.065000px;}
.yd{bottom:601.665000px;}
.y72{bottom:601.845000px;}
.y61{bottom:605.805000px;}
.y162{bottom:610.485000px;}
.y3b{bottom:611.925000px;}
.y184{bottom:613.545000px;}
.yba{bottom:619.665000px;}
.y125{bottom:623.985000px;}
.y8c{bottom:625.065000px;}
.y71{bottom:627.585000px;}
.y166{bottom:633.705000px;}
.y60{bottom:636.945000px;}
.yc{bottom:643.065000px;}
.y183{bottom:649.365000px;}
.yb9{bottom:650.625000px;}
.y8b{bottom:656.205000px;}
.y10e{bottom:662.865000px;}
.y5f{bottom:667.905000px;}
.y165{bottom:669.345000px;}
.y182{bottom:670.065000px;}
.y3a{bottom:674.025000px;}
.yb8{bottom:681.765000px;}
.yb{bottom:684.465000px;}
.y8a{bottom:687.165000px;}
.y5e{bottom:699.045000px;}
.y50{bottom:704.625000px;}
.y39{bottom:705.165000px;}
.y89{bottom:705.345000px;}
.y181{bottom:705.705000px;}
.yb7{bottom:712.725000px;}
.y1f{bottom:725.865000px;}
.y5d{bottom:730.005000px;}
.y4f{bottom:735.765000px;}
.y38{bottom:736.125000px;}
.y180{bottom:741.345000px;}
.yb6{bottom:743.865000px;}
.y87{bottom:758.445000px;}
.y5c{bottom:761.145000px;}
.y17f{bottom:762.045000px;}
.y4e{bottom:766.725000px;}
.ya{bottom:767.265000px;}
.yb5{bottom:774.825000px;}
.y5b{bottom:792.825000px;}
.y4d{bottom:797.865000px;}
.y37{bottom:798.225000px;}
.yb4{bottom:805.965000px;}
.y9{bottom:808.665000px;}
.y86{bottom:811.725000px;}
.y5a{bottom:825.225000px;}
.y4c{bottom:828.825000px;}
.y36{bottom:829.365000px;}
.y17e{bottom:833.505000px;}
.yb3{bottom:836.925000px;}
.y1e{bottom:850.110000px;}
.y59{bottom:856.410000px;}
.y8{bottom:856.950000px;}
.y4b{bottom:860.010000px;}
.y35{bottom:860.370000px;}
.y84{bottom:865.230000px;}
.yb2{bottom:868.110000px;}
.y17d{bottom:869.190000px;}
.y58{bottom:887.910000px;}
.y4a{bottom:890.970000px;}
.y7{bottom:891.510000px;}
.yb1{bottom:899.070000px;}
.y17c{bottom:905.010000px;}
.y82{bottom:918.690000px;}
.y57{bottom:920.490000px;}
.y49{bottom:922.110000px;}
.y34{bottom:922.470000px;}
.yb0{bottom:930.210000px;}
.y1d{bottom:932.910000px;}
.y6{bottom:939.750000px;}
.y17b{bottom:940.650000px;}
.y56{bottom:951.450000px;}
.y48{bottom:953.070000px;}
.y33{bottom:953.610000px;}
.yaf{bottom:961.170000px;}
.y5{bottom:974.310000px;}
.y80{bottom:976.110000px;}
.y17a{bottom:976.290000px;}
.y47{bottom:980.070000px;}
.y55{bottom:983.130000px;}
.y32{bottom:984.570000px;}
.yae{bottom:992.310000px;}
.y199{bottom:1006.350000px;}
.y179{bottom:1012.110000px;}
.y4{bottom:1015.710000px;}
.yad{bottom:1023.270000px;}
.y198{bottom:1027.050000px;}
.y7e{bottom:1035.510000px;}
.y31{bottom:1046.670000px;}
.y178{bottom:1047.750000px;}
.yac{bottom:1054.410000px;}
.y1c{bottom:1057.110000px;}
.y197{bottom:1062.690000px;}
.y30{bottom:1077.810000px;}
.y177{bottom:1083.390000px;}
.yab{bottom:1085.370000px;}
.y3{bottom:1098.510000px;}
.yaa{bottom:1103.550000px;}
.y176{bottom:1104.090000px;}
.y2f{bottom:1108.770000px;}
.y196{bottom:1119.210000px;}
.y2{bottom:1139.940000px;}
.y1a{bottom:1198.066500px;}
.y19{bottom:1216.066500px;}
.y18{bottom:1234.066500px;}
.h7{height:41.689453px;}
.h25{height:47.321367px;}
.h5{height:47.344922px;}
.hd{height:52.200000px;}
.h10{height:52.236000px;}
.hb{height:52.560000px;}
.h13{height:52.763056px;}
.h14{height:52.774951px;}
.hc{height:52.776000px;}
.h19{height:53.300737px;}
.h1a{height:53.312752px;}
.h16{height:56.462500px;}
.h17{height:56.475228px;}
.ha{height:56.700000px;}
.h8{height:57.420000px;}
.he{height:57.456000px;}
.h9{height:57.780000px;}
.h1c{height:57.816000px;}
.h1f{height:63.000000px;}
.h23{height:63.315667px;}
.h24{height:63.329941px;}
.h11{height:64.546875px;}
.h1d{height:65.340000px;}
.h2{height:65.884219px;}
.h20{height:68.220000px;}
.h21{height:70.380000px;}
.hf{height:70.628906px;}
.h6{height:70.664062px;}
.h3{height:72.562500px;}
.h4{height:74.704922px;}
.h1b{height:79.200000px;}
.h1e{height:79.236000px;}
.h12{height:566.981226px;}
.h18{height:572.759034px;}
.h15{height:606.734666px;}
.h22{height:680.377463px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:63.756000px;}
.wf{width:84.960000px;}
.wb{width:85.140000px;}
.w17{width:95.616000px;}
.w16{width:95.760000px;}
.w1d{width:100.476000px;}
.wa{width:102.276000px;}
.w5{width:103.176000px;}
.w1c{width:103.320000px;}
.w9{width:104.400000px;}
.w7{width:117.000000px;}
.w6{width:120.636000px;}
.wd{width:120.960000px;}
.w10{width:120.996000px;}
.w4{width:128.700000px;}
.w18{width:136.260000px;}
.w1e{width:138.240000px;}
.w1f{width:165.270000px;}
.w19{width:170.130000px;}
.w3{width:190.830000px;}
.w14{width:199.290000px;}
.w1a{width:200.370000px;}
.w8{width:207.930000px;}
.we{width:237.810000px;}
.w15{width:497.775000px;}
.w1b{width:507.315000px;}
.w11{width:566.983220px;}
.w13{width:572.761049px;}
.w12{width:606.736843px;}
.w20{width:680.379862px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:8.100000px;}
.x61{left:9.720000px;}
.x21{left:12.060000px;}
.x55{left:13.320000px;}
.x12{left:16.020000px;}
.x5e{left:17.100000px;}
.x63{left:18.180000px;}
.x18{left:19.620000px;}
.x1e{left:20.700000px;}
.x28{left:22.140000px;}
.x23{left:23.400000px;}
.x37{left:25.200000px;}
.x2a{left:26.280000px;}
.x34{left:28.980000px;}
.x27{left:30.780000px;}
.x14{left:32.580000px;}
.x19{left:35.850000px;}
.x1f{left:37.620000px;}
.x31{left:38.700000px;}
.x64{left:41.625000px;}
.x1b{left:42.660000px;}
.x1a{left:44.460000px;}
.x26{left:45.900000px;}
.x16{left:47.700000px;}
.x36{left:49.185000px;}
.x65{left:50.625000px;}
.x45{left:51.734559px;}
.x3{left:52.744500px;}
.x3e{left:55.671050px;}
.x29{left:57.420000px;}
.x66{left:59.625000px;}
.x68{left:65.588880px;}
.x5a{left:70.065000px;}
.x59{left:73.845000px;}
.x4e{left:76.367439px;}
.x4d{left:83.513054px;}
.x3c{left:84.824732px;}
.x39{left:87.714740px;}
.x3b{left:91.873110px;}
.x43{left:96.035357px;}
.x4c{left:97.930297px;}
.x3a{left:98.945595px;}
.x1c{left:104.436000px;}
.x2{left:106.416000px;}
.x70{left:107.495987px;}
.xd{left:108.935987px;}
.x6b{left:110.555987px;}
.x3d{left:112.077963px;}
.xc{left:114.155987px;}
.xf{left:116.496000px;}
.x6f{left:118.655987px;}
.x6c{left:120.095987px;}
.x2f{left:121.356000px;}
.x49{left:125.495987px;}
.x2e{left:126.575987px;}
.x2d{left:130.175987px;}
.x6e{left:132.695987px;}
.x42{left:143.189990px;}
.x4f{left:145.845519px;}
.x6{left:149.435987px;}
.x5d{left:150.840000px;}
.x52{left:152.129987px;}
.x48{left:153.209987px;}
.x44{left:154.496975px;}
.x4b{left:160.289990px;}
.x38{left:163.139990px;}
.x6d{left:192.809987px;}
.x5b{left:205.050000px;}
.x8{left:209.549987px;}
.x5c{left:213.510000px;}
.xe{left:218.549987px;}
.x54{left:221.250000px;}
.x4a{left:231.689987px;}
.x67{left:236.860595px;}
.xa{left:277.409987px;}
.x50{left:282.912555px;}
.x3f{left:290.174152px;}
.x41{left:292.394987px;}
.x53{left:297.435000px;}
.x46{left:301.994296px;}
.x11{left:307.335000px;}
.x1d{left:312.375000px;}
.x69{left:330.472738px;}
.x30{left:359.175000px;}
.x71{left:370.694987px;}
.x72{left:377.354987px;}
.x56{left:393.195000px;}
.x5f{left:396.435000px;}
.x20{left:416.775000px;}
.x73{left:430.814987px;}
.x13{left:436.035000px;}
.x2b{left:438.194987px;}
.x1{left:442.515000px;}
.x4{left:446.654987px;}
.x32{left:463.575000px;}
.x57{left:488.805000px;}
.x60{left:496.905000px;}
.x22{left:519.045000px;}
.x15{left:539.205000px;}
.x33{left:565.845000px;}
.x7{left:589.964987px;}
.x24{left:604.185000px;}
.x9{left:614.984987px;}
.x75{left:619.484987px;}
.x58{left:625.065000px;}
.x76{left:626.144987px;}
.x62{left:635.145000px;}
.x35{left:650.805000px;}
.x17{left:659.850000px;}
.x25{left:667.950000px;}
.x40{left:730.229987px;}
.x51{left:733.109987px;}
.x47{left:750.029987px;}
.x2c{left:754.169987px;}
.x5{left:765.869987px;}
.x74{left:780.449987px;}
.xb{left:785.849987px;}
.x6a{left:786.929987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v5{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.135680pt;}
.ls11{letter-spacing:0.140107pt;}
.ls17{letter-spacing:0.141534pt;}
.ls14{letter-spacing:0.149930pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.168128pt;}
.lsa{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.227733pt;}
.ls1{letter-spacing:0.256000pt;}
.ls18{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.416000pt;}
.ls6{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.592472pt;}
.ls15{letter-spacing:0.634013pt;}
.ls3{letter-spacing:0.640000pt;}
.lse{letter-spacing:1.280000pt;}
.lsd{letter-spacing:10.880000pt;}
.ls16{letter-spacing:208.613361pt;}
.ls13{letter-spacing:220.988163pt;}
.ls10{letter-spacing:230.766759pt;}
.ls19{letter-spacing:477.600492pt;}
.ws4{word-spacing:-16.640000pt;}
.ws8{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.192000pt;}
.ws19{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws18{word-spacing:-15.936000pt;}
.ws17{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws1a{word-spacing:-15.616000pt;}
.ws6{word-spacing:-15.360000pt;}
.ws13{word-spacing:-15.001413pt;}
.ws9{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.333333pt;}
.ws10{word-spacing:-12.628570pt;}
.wsb{word-spacing:-12.501177pt;}
.ws5{word-spacing:-10.720000pt;}
.wse{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
.ws15{word-spacing:95.668702pt;}
.ws16{word-spacing:96.122326pt;}
.ws14{word-spacing:96.167040pt;}
.ws11{word-spacing:171.206457pt;}
.wsf{word-spacing:181.362307pt;}
.wsd{word-spacing:192.380107pt;}
.wsc{word-spacing:205.810222pt;}
.ws12{word-spacing:401.395927pt;}
._1{margin-left:-0.896000pt;}
._3{width:1.162667pt;}
._7{width:2.304000pt;}
._6{width:3.200000pt;}
._12{width:4.202667pt;}
._15{width:5.397333pt;}
._4{width:6.314667pt;}
._5{width:7.349333pt;}
._a{width:8.842667pt;}
._2{width:10.112000pt;}
._0{width:11.200000pt;}
._10{width:12.416000pt;}
._11{width:13.312000pt;}
._16{width:14.656000pt;}
._f{width:16.960000pt;}
._1a{width:18.112000pt;}
._1b{width:19.264000pt;}
._8{width:20.416000pt;}
._9{width:21.312000pt;}
._d{width:22.784000pt;}
._e{width:23.946667pt;}
._17{width:24.896000pt;}
._19{width:25.962667pt;}
._26{width:26.880000pt;}
._1c{width:27.840000pt;}
._1d{width:28.864000pt;}
._1f{width:30.069333pt;}
._1e{width:31.050667pt;}
._b{width:32.000000pt;}
._c{width:33.280000pt;}
._13{width:34.304000pt;}
._14{width:35.210667pt;}
._20{width:37.184000pt;}
._21{width:38.325333pt;}
._2c{width:40.640000pt;}
._27{width:41.920000pt;}
._28{width:42.880000pt;}
._18{width:53.674667pt;}
._2b{width:111.767803pt;}
._2a{width:141.165735pt;}
._25{width:195.269198pt;}
._24{width:196.285536pt;}
._23{width:206.852434pt;}
._22{width:207.929060pt;}
._29{width:431.265073pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:44.968264pt;}
.fs5{font-size:44.978401pt;}
.fs8{font-size:45.426512pt;}
.fs9{font-size:45.436753pt;}
.fs6{font-size:48.121182pt;}
.fs7{font-size:48.132030pt;}
.fs3{font-size:53.333333pt;}
.fsa{font-size:53.961917pt;}
.fsb{font-size:53.974082pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y130{bottom:4.000000pt;}
.y128{bottom:4.960000pt;}
.y136{bottom:6.240000pt;}
.y139{bottom:7.200000pt;}
.y11a{bottom:8.320000pt;}
.y94{bottom:10.400000pt;}
.y90{bottom:10.560000pt;}
.y116{bottom:10.720000pt;}
.y133{bottom:15.360000pt;}
.y88{bottom:17.600000pt;}
.y85{bottom:17.760000pt;}
.ya9{bottom:19.514667pt;}
.y83{bottom:19.520000pt;}
.y7f{bottom:19.840000pt;}
.y8e{bottom:19.866667pt;}
.ya6{bottom:19.880000pt;}
.y81{bottom:20.000000pt;}
.y113{bottom:20.320000pt;}
.y12c{bottom:20.346667pt;}
.y12e{bottom:22.400000pt;}
.y127{bottom:23.360000pt;}
.y135{bottom:24.640000pt;}
.y10f{bottom:25.600000pt;}
.y119{bottom:26.720000pt;}
.y93{bottom:28.800000pt;}
.y8f{bottom:28.986667pt;}
.y115{bottom:29.120000pt;}
.y111{bottom:29.440000pt;}
.y12a{bottom:29.466667pt;}
.y132{bottom:33.760000pt;}
.y112{bottom:38.720000pt;}
.y12b{bottom:38.746667pt;}
.yfe{bottom:40.565051pt;}
.y12f{bottom:40.800000pt;}
.y126{bottom:41.760000pt;}
.y134{bottom:43.040000pt;}
.y138{bottom:44.000000pt;}
.yd4{bottom:47.661422pt;}
.y1b{bottom:51.072000pt;}
.yee{bottom:51.965135pt;}
.yfc{bottom:68.871935pt;}
.y1{bottom:68.992000pt;}
.yd2{bottom:76.581714pt;}
.y14e{bottom:80.733852pt;}
.yec{bottom:81.951155pt;}
.yf5{bottom:84.375787pt;}
.ycb{bottom:91.929166pt;}
.ye6{bottom:98.374681pt;}
.y124{bottom:101.792000pt;}
.y21{bottom:102.432000pt;}
.y148{bottom:104.113038pt;}
.yf3{bottom:105.792000pt;}
.y10d{bottom:108.512000pt;}
.y175{bottom:108.832000pt;}
.y2e{bottom:109.792000pt;}
.ye4{bottom:113.472000pt;}
.y141{bottom:122.697661pt;}
.y161{bottom:123.392000pt;}
.y70{bottom:124.512000pt;}
.y195{bottom:125.952000pt;}
.ya8{bottom:126.432000pt;}
.y54{bottom:127.232000pt;}
.y123{bottom:129.472000pt;}
.y17{bottom:129.952000pt;}
.y9a{bottom:130.112000pt;}
.ya4{bottom:130.272000pt;}
.yf2{bottom:133.466667pt;}
.y20{bottom:135.706667pt;}
.y10c{bottom:136.026667pt;}
.yc9{bottom:136.826667pt;}
.y2d{bottom:137.306667pt;}
.yf6{bottom:140.969776pt;}
.ye3{bottom:141.146667pt;}
.y194{bottom:144.346667pt;}
.y13f{bottom:146.746667pt;}
.ycc{bottom:147.950389pt;}
.y7d{bottom:148.346667pt;}
.y160{bottom:150.906667pt;}
.y6f{bottom:152.186667pt;}
.y53{bottom:154.906667pt;}
.y122{bottom:156.986667pt;}
.y46{bottom:157.626667pt;}
.ya3{bottom:157.786667pt;}
.y174{bottom:159.066667pt;}
.yf1{bottom:160.986667pt;}
.y10b{bottom:163.706667pt;}
.yc8{bottom:164.346667pt;}
.y2c{bottom:164.986667pt;}
.y16{bottom:166.746667pt;}
.ye2{bottom:168.666667pt;}
.ye7{bottom:170.326176pt;}
.y13e{bottom:174.266667pt;}
.y7c{bottom:175.866667pt;}
.y193{bottom:176.026667pt;}
.y173{bottom:177.466667pt;}
.ya7{bottom:177.626667pt;}
.y15f{bottom:178.586667pt;}
.y6e{bottom:179.706667pt;}
.y52{bottom:182.426667pt;}
.y121{bottom:184.666667pt;}
.y45{bottom:185.146667pt;}
.y99{bottom:185.306667pt;}
.ya2{bottom:185.466667pt;}
.yf0{bottom:188.666667pt;}
.y142{bottom:189.915305pt;}
.y10a{bottom:191.226667pt;}
.yc7{bottom:191.866667pt;}
.y2b{bottom:192.506667pt;}
.y192{bottom:194.426667pt;}
.ye1{bottom:196.346667pt;}
.yf7{bottom:197.583528pt;}
.y13d{bottom:201.946667pt;}
.y15{bottom:203.546667pt;}
.ycd{bottom:203.993039pt;}
.y154{bottom:205.946667pt;}
.y15e{bottom:206.106667pt;}
.y51{bottom:206.426667pt;}
.y6d{bottom:207.386667pt;}
.y172{bottom:209.146667pt;}
.y120{bottom:212.186667pt;}
.yef{bottom:212.666667pt;}
.ye5{bottom:212.746667pt;}
.y44{bottom:212.826667pt;}
.ya1{bottom:212.986667pt;}
.y109{bottom:218.906667pt;}
.yc6{bottom:219.546667pt;}
.y2a{bottom:220.186667pt;}
.ye0{bottom:223.866667pt;}
.y191{bottom:226.266667pt;}
.y13c{bottom:229.466667pt;}
.ya5{bottom:230.426667pt;}
.y7b{bottom:231.066667pt;}
.y153{bottom:233.466667pt;}
.y15d{bottom:233.786667pt;}
.yfd{bottom:233.814072pt;}
.y6c{bottom:234.906667pt;}
.y11f{bottom:239.866667pt;}
.y22{bottom:240.346667pt;}
.y98{bottom:240.506667pt;}
.ya0{bottom:240.666667pt;}
.y171{bottom:240.826667pt;}
.ye8{bottom:242.151068pt;}
.y190{bottom:244.666667pt;}
.yd3{bottom:245.903926pt;}
.y108{bottom:246.426667pt;}
.yc5{bottom:247.066667pt;}
.yed{bottom:247.444477pt;}
.y29{bottom:248.186667pt;}
.ydf{bottom:251.586667pt;}
.yf8{bottom:254.056121pt;}
.y143{bottom:257.032339pt;}
.y13b{bottom:257.186667pt;}
.y7a{bottom:258.786667pt;}
.yce{bottom:259.895955pt;}
.y152{bottom:261.186667pt;}
.y15c{bottom:261.346667pt;}
.y6b{bottom:262.626667pt;}
.y11e{bottom:267.426667pt;}
.y43{bottom:267.906667pt;}
.y97{bottom:268.066667pt;}
.y9f{bottom:268.226667pt;}
.y170{bottom:272.706667pt;}
.y107{bottom:274.146667pt;}
.yc4{bottom:274.786667pt;}
.y18f{bottom:276.386667pt;}
.y14{bottom:277.186667pt;}
.yde{bottom:279.106667pt;}
.y13a{bottom:284.706667pt;}
.y79{bottom:286.306667pt;}
.y151{bottom:288.706667pt;}
.y15b{bottom:289.026667pt;}
.y6a{bottom:290.146667pt;}
.y14d{bottom:290.903863pt;}
.y18e{bottom:294.786667pt;}
.y11d{bottom:295.106667pt;}
.y42{bottom:295.586667pt;}
.y9e{bottom:295.906667pt;}
.y137{bottom:301.026667pt;}
.y106{bottom:301.666667pt;}
.yc3{bottom:302.306667pt;}
.y16f{bottom:304.386667pt;}
.y28{bottom:304.706667pt;}
.ydd{bottom:306.786667pt;}
.yf9{bottom:310.669871pt;}
.y13{bottom:313.986667pt;}
.ye9{bottom:314.095584pt;}
.ycf{bottom:315.947920pt;}
.y150{bottom:316.386667pt;}
.y15a{bottom:316.546667pt;}
.y69{bottom:317.826667pt;}
.y11c{bottom:322.626667pt;}
.y16e{bottom:322.786667pt;}
.y41{bottom:323.106667pt;}
.y96{bottom:323.266667pt;}
.y9d{bottom:323.426667pt;}
.y144{bottom:324.261162pt;}
.y18d{bottom:326.466667pt;}
.y105{bottom:329.346667pt;}
.yc2{bottom:329.986667pt;}
.y27{bottom:332.386667pt;}
.ydc{bottom:334.306667pt;}
.y95{bottom:339.426667pt;}
.y14f{bottom:340.386667pt;}
.y140{bottom:340.413297pt;}
.y78{bottom:341.506667pt;}
.y159{bottom:344.226667pt;}
.y18c{bottom:344.866667pt;}
.y68{bottom:345.346667pt;}
.y11b{bottom:350.306667pt;}
.y12{bottom:350.786667pt;}
.y9c{bottom:351.106667pt;}
.y16d{bottom:354.466667pt;}
.y104{bottom:356.866667pt;}
.yc1{bottom:357.506667pt;}
.y26{bottom:359.906667pt;}
.ydb{bottom:361.986667pt;}
.y131{bottom:364.226667pt;}
.y118{bottom:366.466667pt;}
.yfa{bottom:367.264801pt;}
.y77{bottom:369.186667pt;}
.y158{bottom:371.746667pt;}
.yd0{bottom:371.962623pt;}
.y16c{bottom:372.866667pt;}
.y67{bottom:373.026667pt;}
.y9b{bottom:375.106667pt;}
.y18b{bottom:376.546667pt;}
.y40{bottom:378.306667pt;}
.y103{bottom:384.546667pt;}
.yc0{bottom:385.186667pt;}
.yea{bottom:386.070007pt;}
.y92{bottom:386.466667pt;}
.y11{bottom:387.586667pt;}
.yda{bottom:389.506667pt;}
.y145{bottom:391.512341pt;}
.y18a{bottom:394.946667pt;}
.y76{bottom:396.706667pt;}
.y157{bottom:399.426667pt;}
.y66{bottom:400.546667pt;}
.y16b{bottom:404.706667pt;}
.y3f{bottom:405.986667pt;}
.y102{bottom:412.066667pt;}
.ybf{bottom:412.706667pt;}
.y117{bottom:413.506667pt;}
.y25{bottom:415.106667pt;}
.yd9{bottom:417.186667pt;}
.y156{bottom:423.266667pt;}
.y155{bottom:423.279964pt;}
.yfb{bottom:423.765626pt;}
.y10{bottom:424.386667pt;}
.y12d{bottom:425.506667pt;}
.y189{bottom:426.786667pt;}
.yd1{bottom:427.893486pt;}
.y65{bottom:428.226667pt;}
.y3e{bottom:433.506667pt;}
.y16a{bottom:436.386667pt;}
.y91{bottom:437.666667pt;}
.y101{bottom:439.746667pt;}
.ybe{bottom:440.386667pt;}
.y14c{bottom:441.257638pt;}
.y24{bottom:442.786667pt;}
.yd8{bottom:444.706667pt;}
.y188{bottom:445.186667pt;}
.y75{bottom:451.906667pt;}
.y64{bottom:455.746667pt;}
.y14b{bottom:456.986097pt;}
.yeb{bottom:457.894899pt;}
.y146{bottom:458.595840pt;}
.yf{bottom:461.186667pt;}
.y114{bottom:464.706667pt;}
.y100{bottom:467.266667pt;}
.ybd{bottom:467.906667pt;}
.y169{bottom:468.066667pt;}
.y23{bottom:470.306667pt;}
.yd7{bottom:472.386667pt;}
.y14a{bottom:472.591590pt;}
.y187{bottom:476.866667pt;}
.y74{bottom:479.586667pt;}
.y129{bottom:482.946667pt;}
.y63{bottom:483.426667pt;}
.y164{bottom:487.426667pt;}
.y149{bottom:488.320049pt;}
.y3d{bottom:488.706667pt;}
.y8d{bottom:490.466667pt;}
.yff{bottom:491.266667pt;}
.yf4{bottom:491.279964pt;}
.y186{bottom:495.266667pt;}
.ybc{bottom:495.586667pt;}
.ye{bottom:497.986667pt;}
.y168{bottom:499.746667pt;}
.yd6{bottom:499.906667pt;}
.y73{bottom:507.133333pt;}
.y62{bottom:510.973333pt;}
.y163{bottom:515.133333pt;}
.y3c{bottom:516.413333pt;}
.y110{bottom:517.533333pt;}
.ybb{bottom:523.133333pt;}
.yca{bottom:524.079964pt;}
.yd5{bottom:524.093333pt;}
.y147{bottom:525.847019pt;}
.y185{bottom:526.973333pt;}
.y167{bottom:531.613333pt;}
.yd{bottom:534.813333pt;}
.y72{bottom:534.973333pt;}
.y61{bottom:538.493333pt;}
.y162{bottom:542.653333pt;}
.y3b{bottom:543.933333pt;}
.y184{bottom:545.373333pt;}
.yba{bottom:550.813333pt;}
.y125{bottom:554.653333pt;}
.y8c{bottom:555.613333pt;}
.y71{bottom:557.853333pt;}
.y166{bottom:563.293333pt;}
.y60{bottom:566.173333pt;}
.yc{bottom:571.613333pt;}
.y183{bottom:577.213333pt;}
.yb9{bottom:578.333333pt;}
.y8b{bottom:583.293333pt;}
.y10e{bottom:589.213333pt;}
.y5f{bottom:593.693333pt;}
.y165{bottom:594.973333pt;}
.y182{bottom:595.613333pt;}
.y3a{bottom:599.133333pt;}
.yb8{bottom:606.013333pt;}
.yb{bottom:608.413333pt;}
.y8a{bottom:610.813333pt;}
.y5e{bottom:621.373333pt;}
.y50{bottom:626.333333pt;}
.y39{bottom:626.813333pt;}
.y89{bottom:626.973333pt;}
.y181{bottom:627.293333pt;}
.yb7{bottom:633.533333pt;}
.y1f{bottom:645.213333pt;}
.y5d{bottom:648.893333pt;}
.y4f{bottom:654.013333pt;}
.y38{bottom:654.333333pt;}
.y180{bottom:658.973333pt;}
.yb6{bottom:661.213333pt;}
.y87{bottom:674.173333pt;}
.y5c{bottom:676.573333pt;}
.y17f{bottom:677.373333pt;}
.y4e{bottom:681.533333pt;}
.ya{bottom:682.013333pt;}
.yb5{bottom:688.733333pt;}
.y5b{bottom:704.733333pt;}
.y4d{bottom:709.213333pt;}
.y37{bottom:709.533333pt;}
.yb4{bottom:716.413333pt;}
.y9{bottom:718.813333pt;}
.y86{bottom:721.533333pt;}
.y5a{bottom:733.533333pt;}
.y4c{bottom:736.733333pt;}
.y36{bottom:737.213333pt;}
.y17e{bottom:740.893333pt;}
.yb3{bottom:743.933333pt;}
.y1e{bottom:755.653333pt;}
.y59{bottom:761.253333pt;}
.y8{bottom:761.733333pt;}
.y4b{bottom:764.453333pt;}
.y35{bottom:764.773333pt;}
.y84{bottom:769.093333pt;}
.yb2{bottom:771.653333pt;}
.y17d{bottom:772.613333pt;}
.y58{bottom:789.253333pt;}
.y4a{bottom:791.973333pt;}
.y7{bottom:792.453333pt;}
.yb1{bottom:799.173333pt;}
.y17c{bottom:804.453333pt;}
.y82{bottom:816.613333pt;}
.y57{bottom:818.213333pt;}
.y49{bottom:819.653333pt;}
.y34{bottom:819.973333pt;}
.yb0{bottom:826.853333pt;}
.y1d{bottom:829.253333pt;}
.y6{bottom:835.333333pt;}
.y17b{bottom:836.133333pt;}
.y56{bottom:845.733333pt;}
.y48{bottom:847.173333pt;}
.y33{bottom:847.653333pt;}
.yaf{bottom:854.373333pt;}
.y5{bottom:866.053333pt;}
.y80{bottom:867.653333pt;}
.y17a{bottom:867.813333pt;}
.y47{bottom:871.173333pt;}
.y55{bottom:873.893333pt;}
.y32{bottom:875.173333pt;}
.yae{bottom:882.053333pt;}
.y199{bottom:894.533333pt;}
.y179{bottom:899.653333pt;}
.y4{bottom:902.853333pt;}
.yad{bottom:909.573333pt;}
.y198{bottom:912.933333pt;}
.y7e{bottom:920.453333pt;}
.y31{bottom:930.373333pt;}
.y178{bottom:931.333333pt;}
.yac{bottom:937.253333pt;}
.y1c{bottom:939.653333pt;}
.y197{bottom:944.613333pt;}
.y30{bottom:958.053333pt;}
.y177{bottom:963.013333pt;}
.yab{bottom:964.773333pt;}
.y3{bottom:976.453333pt;}
.yaa{bottom:980.933333pt;}
.y176{bottom:981.413333pt;}
.y2f{bottom:985.573333pt;}
.y196{bottom:994.853333pt;}
.y2{bottom:1013.280000pt;}
.y1a{bottom:1064.948000pt;}
.y19{bottom:1080.948000pt;}
.y18{bottom:1096.948000pt;}
.h7{height:37.057292pt;}
.h25{height:42.063437pt;}
.h5{height:42.084375pt;}
.hd{height:46.400000pt;}
.h10{height:46.432000pt;}
.hb{height:46.720000pt;}
.h13{height:46.900494pt;}
.h14{height:46.911067pt;}
.hc{height:46.912000pt;}
.h19{height:47.378433pt;}
.h1a{height:47.389113pt;}
.h16{height:50.188889pt;}
.h17{height:50.200203pt;}
.ha{height:50.400000pt;}
.h8{height:51.040000pt;}
.he{height:51.072000pt;}
.h9{height:51.360000pt;}
.h1c{height:51.392000pt;}
.h1f{height:56.000000pt;}
.h23{height:56.280593pt;}
.h24{height:56.293281pt;}
.h11{height:57.375000pt;}
.h1d{height:58.080000pt;}
.h2{height:58.563750pt;}
.h20{height:60.640000pt;}
.h21{height:62.560000pt;}
.hf{height:62.781250pt;}
.h6{height:62.812500pt;}
.h3{height:64.500000pt;}
.h4{height:66.404375pt;}
.h1b{height:70.400000pt;}
.h1e{height:70.432000pt;}
.h12{height:503.983312pt;}
.h18{height:509.119141pt;}
.h15{height:539.319703pt;}
.h22{height:604.779967pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:56.672000pt;}
.wf{width:75.520000pt;}
.wb{width:75.680000pt;}
.w17{width:84.992000pt;}
.w16{width:85.120000pt;}
.w1d{width:89.312000pt;}
.wa{width:90.912000pt;}
.w5{width:91.712000pt;}
.w1c{width:91.840000pt;}
.w9{width:92.800000pt;}
.w7{width:104.000000pt;}
.w6{width:107.232000pt;}
.wd{width:107.520000pt;}
.w10{width:107.552000pt;}
.w4{width:114.400000pt;}
.w18{width:121.120000pt;}
.w1e{width:122.880000pt;}
.w1f{width:146.906667pt;}
.w19{width:151.226667pt;}
.w3{width:169.626667pt;}
.w14{width:177.146667pt;}
.w1a{width:178.106667pt;}
.w8{width:184.826667pt;}
.we{width:211.386667pt;}
.w15{width:442.466667pt;}
.w1b{width:450.946667pt;}
.w11{width:503.985084pt;}
.w13{width:509.120932pt;}
.w12{width:539.321638pt;}
.w20{width:604.782099pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:7.200000pt;}
.x61{left:8.640000pt;}
.x21{left:10.720000pt;}
.x55{left:11.840000pt;}
.x12{left:14.240000pt;}
.x5e{left:15.200000pt;}
.x63{left:16.160000pt;}
.x18{left:17.440000pt;}
.x1e{left:18.400000pt;}
.x28{left:19.680000pt;}
.x23{left:20.800000pt;}
.x37{left:22.400000pt;}
.x2a{left:23.360000pt;}
.x34{left:25.760000pt;}
.x27{left:27.360000pt;}
.x14{left:28.960000pt;}
.x19{left:31.866667pt;}
.x1f{left:33.440000pt;}
.x31{left:34.400000pt;}
.x64{left:37.000000pt;}
.x1b{left:37.920000pt;}
.x1a{left:39.520000pt;}
.x26{left:40.800000pt;}
.x16{left:42.400000pt;}
.x36{left:43.720000pt;}
.x65{left:45.000000pt;}
.x45{left:45.986275pt;}
.x3{left:46.884000pt;}
.x3e{left:49.485378pt;}
.x29{left:51.040000pt;}
.x66{left:53.000000pt;}
.x68{left:58.301226pt;}
.x5a{left:62.280000pt;}
.x59{left:65.640000pt;}
.x4e{left:67.882168pt;}
.x4d{left:74.233826pt;}
.x3c{left:75.399762pt;}
.x39{left:77.968657pt;}
.x3b{left:81.664987pt;}
.x43{left:85.364762pt;}
.x4c{left:87.049153pt;}
.x3a{left:87.951640pt;}
.x1c{left:92.832000pt;}
.x2{left:94.592000pt;}
.x70{left:95.551988pt;}
.xd{left:96.831988pt;}
.x6b{left:98.271988pt;}
.x3d{left:99.624856pt;}
.xc{left:101.471988pt;}
.xf{left:103.552000pt;}
.x6f{left:105.471988pt;}
.x6c{left:106.751988pt;}
.x2f{left:107.872000pt;}
.x49{left:111.551988pt;}
.x2e{left:112.511988pt;}
.x2d{left:115.711988pt;}
.x6e{left:117.951988pt;}
.x42{left:127.279991pt;}
.x4f{left:129.640461pt;}
.x6{left:132.831988pt;}
.x5d{left:134.080000pt;}
.x52{left:135.226655pt;}
.x48{left:136.186655pt;}
.x44{left:137.330644pt;}
.x4b{left:142.479991pt;}
.x38{left:145.013324pt;}
.x6d{left:171.386655pt;}
.x5b{left:182.266667pt;}
.x8{left:186.266655pt;}
.x5c{left:189.786667pt;}
.xe{left:194.266655pt;}
.x54{left:196.666667pt;}
.x4a{left:205.946655pt;}
.x67{left:210.542751pt;}
.xa{left:246.586655pt;}
.x50{left:251.477826pt;}
.x3f{left:257.932580pt;}
.x41{left:259.906655pt;}
.x53{left:264.386667pt;}
.x46{left:268.439375pt;}
.x11{left:273.186667pt;}
.x1d{left:277.666667pt;}
.x69{left:293.753545pt;}
.x30{left:319.266667pt;}
.x71{left:329.506655pt;}
.x72{left:335.426655pt;}
.x56{left:349.506667pt;}
.x5f{left:352.386667pt;}
.x20{left:370.466667pt;}
.x73{left:382.946655pt;}
.x13{left:387.586667pt;}
.x2b{left:389.506655pt;}
.x1{left:393.346667pt;}
.x4{left:397.026655pt;}
.x32{left:412.066667pt;}
.x57{left:434.493333pt;}
.x60{left:441.693333pt;}
.x22{left:461.373333pt;}
.x15{left:479.293333pt;}
.x33{left:502.973333pt;}
.x7{left:524.413322pt;}
.x24{left:537.053333pt;}
.x9{left:546.653322pt;}
.x75{left:550.653322pt;}
.x58{left:555.613333pt;}
.x76{left:556.573322pt;}
.x62{left:564.573333pt;}
.x35{left:578.493333pt;}
.x17{left:586.533333pt;}
.x25{left:593.733333pt;}
.x40{left:649.093322pt;}
.x51{left:651.653322pt;}
.x47{left:666.693322pt;}
.x2c{left:670.373322pt;}
.x5{left:680.773322pt;}
.x74{left:693.733322pt;}
.xb{left:698.533322pt;}
.x6a{left:699.493322pt;}
}




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