
    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_ec64e100455344d422c51170.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.008789;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_5385802e79909ac5387b8989.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.049805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_97c44ee07ab11f0cca06cf3b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1096ab04b810d11007a7eace.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_24853cc7b9b0b934ca3253b4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.747070;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_2a59beb1ad765b02aea8200a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.008789;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_ee213d54433467ada5e99989.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921875;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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;}
.m8{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.232142,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.232142,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.232142,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.220232,0.237173,0.079050,0,0);-ms-transform:matrix(0.000000,-0.220232,0.237173,0.079050,0,0);-webkit-transform:matrix(0.000000,-0.220232,0.237173,0.079050,0,0);}
.m9{transform:matrix(0.000000,-0.200000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.200000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.200000,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.187500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.187500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.187500,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.201597,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.201597,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.201597,0.000000,-0.079050,0.237173,0,0);}
.m4{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.209183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209183,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.209303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209303,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.221590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221590,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.222223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222223,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.me{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:-18.973476px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.973476px;}
.ls18{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.648000px;}
.ls1b{letter-spacing:-0.303576px;}
.ls10{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.227682px;}
.lsa{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.022320px;}
.lsd{letter-spacing:-0.000001px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.054720px;}
.lse{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.097800px;}
.ls1f{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.221760px;}
.ls0{letter-spacing:0.238200px;}
.ls17{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.391800px;}
.ls1c{letter-spacing:0.504000px;}
.ls15{letter-spacing:0.576000px;}
.ls14{letter-spacing:0.648000px;}
.ls13{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.780000px;}
.ls19{letter-spacing:2.880000px;}
.ls21{letter-spacing:5.991444px;}
.ls1e{letter-spacing:7.320000px;}
.ls12{letter-spacing:7.920000px;}
.ls1d{letter-spacing:16.536000px;}
.ls7{letter-spacing:197.976000px;}
.ls3{letter-spacing:846.156000px;}
.ls8{letter-spacing:846.240000px;}
.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;}
}
.ws10{word-spacing:-18.973476px;}
.wse{word-spacing:-18.576000px;}
.ws13{word-spacing:-18.504000px;}
.ws7{word-spacing:-18.360000px;}
.ws11{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.999999px;}
.ws5{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.712000px;}
.ws0{word-spacing:-15.720000px;}
.ws2{word-spacing:-15.178200px;}
.ws1{word-spacing:-14.940000px;}
.ws4{word-spacing:-12.157800px;}
.ws8{word-spacing:-12.114720px;}
.wsf{word-spacing:-12.037680px;}
.ws12{word-spacing:-0.455160px;}
.ws3{word-spacing:0.000000px;}
._1f{margin-left:-17.375996px;}
._21{margin-left:-16.367850px;}
._1e{margin-left:-15.359802px;}
._1d{margin-left:-14.064000px;}
._22{margin-left:-12.744000px;}
._9{margin-left:-10.452720px;}
._23{margin-left:-8.364000px;}
._20{margin-left:-6.216000px;}
._d{margin-left:-4.248000px;}
._e{margin-left:-2.829600px;}
._1{margin-left:-1.219680px;}
._2{width:1.045440px;}
._6{width:2.337120px;}
._8{width:3.519256px;}
._c{width:4.976744px;}
._17{width:6.361816px;}
._18{width:7.776000px;}
._28{width:8.784000px;}
._14{width:9.792000px;}
._26{width:10.872000px;}
._16{width:11.952000px;}
._15{width:13.248000px;}
._f{width:14.328000px;}
._24{width:15.610560px;}
._1b{width:16.992000px;}
._1c{width:19.055040px;}
._25{width:20.184960px;}
._1a{width:21.966240px;}
._19{width:22.968000px;}
._27{width:23.983680px;}
._2d{width:24.984000px;}
._2c{width:27.211680px;}
._2b{width:28.224000px;}
._11{width:31.248000px;}
._12{width:32.434560px;}
._13{width:33.814560px;}
._29{width:35.256000px;}
._2a{width:36.444000px;}
._4{width:102.006647px;}
._3{width:104.018473px;}
._a{width:110.112480px;}
._10{width:197.976000px;}
._7{width:201.597120px;}
._5{width:203.231267px;}
._b{width:218.581920px;}
._0{width:1330.200000px;}
.fc5{color:rgb(47,84,150);}
.fc3{color:rgb(151,153,154);}
.fc2{color:transparent;}
.fc1{color:rgb(151,152,154);}
.fc6{color:rgb(32,33,36);}
.fc4{color:rgb(95,95,95);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:31.875440px;}
.fs9{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fse{font-size:63.360000px;}
.fsb{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:75.893905px;}
.fsa{font-size:84.240000px;}
.fs1{font-size:87.120000px;}
.fs2{font-size:102.240000px;}
.fs3{font-size:105.120000px;}
.fsc{font-size:107.769345px;}
.fs4{font-size:108.000000px;}
.fs5{font-size:120.240000px;}
.fsd{font-size:144.000000px;}
.fs6{font-size:171.360000px;}
.y0{bottom:0.000000px;}
.y28{bottom:1.440000px;}
.yc7{bottom:13.854000px;}
.yab{bottom:13.860000px;}
.yd3{bottom:14.040000px;}
.y112{bottom:14.220000px;}
.y106{bottom:15.660000px;}
.y10a{bottom:15.840000px;}
.y108{bottom:17.640000px;}
.y12a{bottom:24.654000px;}
.y13f{bottom:24.705000px;}
.yf3{bottom:30.060000px;}
.yfa{bottom:30.090000px;}
.y127{bottom:46.254000px;}
.yd5{bottom:46.260000px;}
.yec{bottom:46.290000px;}
.y13e{bottom:46.305000px;}
.yf7{bottom:46.440000px;}
.y85{bottom:56.340000px;}
.y57{bottom:56.520000px;}
.y129{bottom:57.054000px;}
.y2d{bottom:57.240000px;}
.y124{bottom:62.454000px;}
.yf9{bottom:62.460000px;}
.yf2{bottom:62.505000px;}
.y2b{bottom:68.790000px;}
.y126{bottom:78.654000px;}
.yef{bottom:78.660000px;}
.yeb{bottom:78.690000px;}
.yf1{bottom:78.705000px;}
.yf6{bottom:78.840000px;}
.y13b{bottom:78.870000px;}
.y84{bottom:80.100000px;}
.y56{bottom:80.280000px;}
.y2c{bottom:81.000000px;}
.y29{bottom:81.360000px;}
.y54{bottom:81.720000px;}
.y128{bottom:89.454000px;}
.y163{bottom:89.820000px;}
.y133{bottom:90.900000px;}
.y135{bottom:94.860000px;}
.y137{bottom:95.070000px;}
.y53{bottom:101.376000px;}
.y2a{bottom:107.460000px;}
.y24{bottom:108.720000px;}
.y125{bottom:111.054000px;}
.yee{bottom:111.060000px;}
.yf0{bottom:111.105000px;}
.y13a{bottom:111.270000px;}
.y105{bottom:111.816000px;}
.y132{bottom:113.940000px;}
.yc8{bottom:116.316000px;}
.y52{bottom:121.896000px;}
.ye4{bottom:128.556000px;}
.y131{bottom:130.896000px;}
.ya5{bottom:131.616000px;}
.y23{bottom:132.480000px;}
.y123{bottom:136.296000px;}
.yed{bottom:143.460000px;}
.yf8{bottom:143.505000px;}
.y139{bottom:143.670000px;}
.yc6{bottom:148.716000px;}
.y51{bottom:152.490000px;}
.ye3{bottom:160.950000px;}
.y104{bottom:161.850000px;}
.y130{bottom:163.290000px;}
.ya4{bottom:164.010000px;}
.y138{bottom:176.070000px;}
.ye2{bottom:180.390000px;}
.yc5{bottom:181.110000px;}
.y152{bottom:182.010000px;}
.y22{bottom:182.370000px;}
.y50{bottom:183.090000px;}
.y103{bottom:194.250000px;}
.y12f{bottom:195.690000px;}
.ya3{bottom:196.410000px;}
.ye1{bottom:212.790000px;}
.yc4{bottom:213.510000px;}
.y4f{bottom:213.690000px;}
.y21{bottom:218.370000px;}
.y151{bottom:225.210000px;}
.y102{bottom:226.650000px;}
.y12e{bottom:228.090000px;}
.ya2{bottom:228.810000px;}
.y162{bottom:232.950000px;}
.y4e{bottom:244.290000px;}
.ye0{bottom:245.190000px;}
.yc3{bottom:245.910000px;}
.y20{bottom:254.370000px;}
.y101{bottom:259.050000px;}
.y12d{bottom:260.490000px;}
.ya1{bottom:261.210000px;}
.y122{bottom:266.790000px;}
.y4d{bottom:274.890000px;}
.y161{bottom:275.610000px;}
.ydf{bottom:277.590000px;}
.yc2{bottom:278.310000px;}
.y150{bottom:286.410000px;}
.y1f{bottom:290.370000px;}
.y100{bottom:291.450000px;}
.y12c{bottom:292.890000px;}
.ya0{bottom:293.610000px;}
.ye7{bottom:294.150000px;}
.y4c{bottom:308.370000px;}
.yde{bottom:309.990000px;}
.yc1{bottom:310.710000px;}
.y121{bottom:314.310000px;}
.y160{bottom:318.810000px;}
.yff{bottom:323.850000px;}
.y12b{bottom:325.290000px;}
.y9f{bottom:326.010000px;}
.y1e{bottom:326.370000px;}
.y14f{bottom:329.610000px;}
.y4b{bottom:338.070000px;}
.ydd{bottom:342.390000px;}
.yc0{bottom:343.110000px;}
.y13d{bottom:344.550000px;}
.y26{bottom:346.530000px;}
.y120{bottom:346.710000px;}
.yfe{bottom:356.250000px;}
.y9e{bottom:358.410000px;}
.y15f{bottom:362.055000px;}
.y1d{bottom:362.370000px;}
.y4a{bottom:367.095000px;}
.y14e{bottom:372.855000px;}
.ydc{bottom:374.835000px;}
.ybf{bottom:375.555000px;}
.y11f{bottom:379.155000px;}
.yfd{bottom:388.695000px;}
.y9d{bottom:390.855000px;}
.y49{bottom:396.075000px;}
.y1c{bottom:398.370000px;}
.y27{bottom:407.235000px;}
.ybe{bottom:407.955000px;}
.y11e{bottom:411.555000px;}
.y14d{bottom:416.055000px;}
.yfc{bottom:421.095000px;}
.y9c{bottom:423.255000px;}
.y7c{bottom:425.235000px;}
.y48{bottom:425.955000px;}
.y1b{bottom:434.415000px;}
.ydb{bottom:439.635000px;}
.ybd{bottom:440.355000px;}
.y13c{bottom:441.795000px;}
.y6d{bottom:443.775000px;}
.y11d{bottom:443.955000px;}
.yfb{bottom:453.495000px;}
.y47{bottom:454.935000px;}
.y9b{bottom:455.655000px;}
.y7b{bottom:457.635000px;}
.y15e{bottom:466.455000px;}
.y1a{bottom:470.415000px;}
.yda{bottom:472.035000px;}
.ybc{bottom:472.755000px;}
.y6c{bottom:476.175000px;}
.y11c{bottom:476.355000px;}
.y14c{bottom:477.435000px;}
.y9a{bottom:488.055000px;}
.ya9{bottom:488.595000px;}
.y7a{bottom:490.035000px;}
.yd9{bottom:504.435000px;}
.ybb{bottom:505.155000px;}
.y19{bottom:506.415000px;}
.y6b{bottom:508.035000px;}
.y11b{bottom:508.755000px;}
.y46{bottom:511.635000px;}
.y99{bottom:520.455000px;}
.y14b{bottom:520.635000px;}
.ya8{bottom:520.995000px;}
.y79{bottom:522.435000px;}
.y15d{bottom:527.835000px;}
.y25{bottom:534.135000px;}
.yd8{bottom:536.835000px;}
.yba{bottom:537.555000px;}
.y6a{bottom:540.435000px;}
.y11a{bottom:541.155000px;}
.y18{bottom:542.415000px;}
.y98{bottom:552.855000px;}
.y78{bottom:554.835000px;}
.y81{bottom:555.375000px;}
.y45{bottom:559.155000px;}
.yd7{bottom:569.235000px;}
.yb9{bottom:569.955000px;}
.y15c{bottom:571.035000px;}
.y136{bottom:571.395000px;}
.y69{bottom:572.835000px;}
.y119{bottom:573.555000px;}
.y17{bottom:578.415000px;}
.y14a{bottom:581.835000px;}
.y97{bottom:585.435000px;}
.y77{bottom:587.235000px;}
.y44{bottom:598.755000px;}
.yd6{bottom:601.635000px;}
.yb8{bottom:602.355000px;}
.y68{bottom:605.235000px;}
.y118{bottom:605.955000px;}
.y16{bottom:614.415000px;}
.y96{bottom:617.835000px;}
.y76{bottom:619.635000px;}
.y149{bottom:625.065000px;}
.y15b{bottom:632.265000px;}
.y43{bottom:634.065000px;}
.yb7{bottom:634.785000px;}
.y67{bottom:637.635000px;}
.y117{bottom:638.385000px;}
.y95{bottom:650.265000px;}
.y15{bottom:650.595000px;}
.y75{bottom:652.035000px;}
.y82{bottom:652.575000px;}
.yb6{bottom:667.185000px;}
.y148{bottom:668.265000px;}
.y42{bottom:669.165000px;}
.y66{bottom:670.065000px;}
.y116{bottom:670.785000px;}
.y15a{bottom:675.465000px;}
.y94{bottom:682.665000px;}
.ye6{bottom:683.205000px;}
.y14{bottom:684.105000px;}
.y74{bottom:684.465000px;}
.y7e{bottom:685.005000px;}
.yd4{bottom:698.865000px;}
.yb5{bottom:699.585000px;}
.yea{bottom:700.305000px;}
.y65{bottom:702.465000px;}
.y115{bottom:703.185000px;}
.y41{bottom:704.445000px;}
.y147{bottom:711.465000px;}
.y93{bottom:715.065000px;}
.y73{bottom:716.865000px;}
.y13{bottom:717.405000px;}
.yb4{bottom:731.985000px;}
.ye9{bottom:733.605000px;}
.y64{bottom:734.865000px;}
.y114{bottom:735.585000px;}
.y159{bottom:736.665000px;}
.y40{bottom:739.545000px;}
.y92{bottom:747.465000px;}
.y12{bottom:748.905000px;}
.y72{bottom:749.265000px;}
.yb3{bottom:764.385000px;}
.yd2{bottom:765.105000px;}
.ye8{bottom:766.005000px;}
.y63{bottom:767.265000px;}
.y113{bottom:767.985000px;}
.y146{bottom:772.665000px;}
.y3f{bottom:774.645000px;}
.y91{bottom:779.865000px;}
.y11{bottom:780.405000px;}
.y71{bottom:781.665000px;}
.y111{bottom:787.425000px;}
.yb2{bottom:796.785000px;}
.yd1{bottom:797.685000px;}
.y158{bottom:797.865000px;}
.y62{bottom:800.205000px;}
.y10{bottom:811.005000px;}
.y3e{bottom:811.545000px;}
.y90{bottom:812.265000px;}
.y70{bottom:814.065000px;}
.y110{bottom:820.725000px;}
.yb1{bottom:829.185000px;}
.y61{bottom:832.605000px;}
.y145{bottom:833.865000px;}
.y157{bottom:841.065000px;}
.yf{bottom:841.605000px;}
.yd0{bottom:843.945000px;}
.y8f{bottom:844.665000px;}
.y6f{bottom:846.465000px;}
.y10f{bottom:853.305000px;}
.y3d{bottom:861.225000px;}
.y60{bottom:861.405000px;}
.yb0{bottom:861.585000px;}
.ye{bottom:872.205000px;}
.ycf{bottom:876.345000px;}
.y8e{bottom:877.065000px;}
.y6e{bottom:878.865000px;}
.y3c{bottom:881.970000px;}
.y10e{bottom:885.930000px;}
.yaf{bottom:894.030000px;}
.y144{bottom:895.110000px;}
.y134{bottom:895.650000px;}
.yd{bottom:902.085000px;}
.y156{bottom:902.310000px;}
.y3b{bottom:902.670000px;}
.yce{bottom:908.790000px;}
.y8d{bottom:909.510000px;}
.y5f{bottom:911.310000px;}
.y10d{bottom:918.510000px;}
.y3a{bottom:923.370000px;}
.yae{bottom:926.430000px;}
.yc{bottom:929.310000px;}
.y143{bottom:938.310000px;}
.ycd{bottom:941.190000px;}
.y8c{bottom:941.910000px;}
.y5e{bottom:943.710000px;}
.y39{bottom:944.070000px;}
.y155{bottom:945.510000px;}
.y10c{bottom:951.270000px;}
.yf5{bottom:958.830000px;}
.yad{bottom:959.730000px;}
.yb{bottom:959.910000px;}
.y38{bottom:964.770000px;}
.ycc{bottom:973.590000px;}
.y8b{bottom:974.310000px;}
.y5d{bottom:976.110000px;}
.y142{bottom:981.510000px;}
.y10b{bottom:984.570000px;}
.y37{bottom:985.470000px;}
.y154{bottom:988.710000px;}
.ya{bottom:990.510000px;}
.yac{bottom:992.850000px;}
.y36{bottom:1006.170000px;}
.y8a{bottom:1006.710000px;}
.ye5{bottom:1007.250000px;}
.y5c{bottom:1008.510000px;}
.y9{bottom:1021.110000px;}
.yaa{bottom:1025.250000px;}
.y35{bottom:1026.870000px;}
.y89{bottom:1039.110000px;}
.y5b{bottom:1040.910000px;}
.y80{bottom:1041.450000px;}
.y141{bottom:1042.710000px;}
.y34{bottom:1049.910000px;}
.y8{bottom:1051.710000px;}
.yf4{bottom:1056.930000px;}
.ycb{bottom:1057.650000px;}
.y88{bottom:1071.510000px;}
.y5a{bottom:1073.310000px;}
.y7f{bottom:1073.850000px;}
.y33{bottom:1080.510000px;}
.y109{bottom:1082.490000px;}
.y7{bottom:1083.030000px;}
.y140{bottom:1085.910000px;}
.yca{bottom:1090.050000px;}
.y153{bottom:1093.110000px;}
.ya7{bottom:1103.910000px;}
.y87{bottom:1104.450000px;}
.y59{bottom:1105.710000px;}
.y7d{bottom:1106.250000px;}
.y6{bottom:1108.230000px;}
.y30{bottom:1115.250000px;}
.y107{bottom:1118.670000px;}
.yc9{bottom:1122.450000px;}
.y32{bottom:1123.530000px;}
.y2f{bottom:1135.050000px;}
.ya6{bottom:1136.310000px;}
.y86{bottom:1136.850000px;}
.y58{bottom:1138.650000px;}
.y31{bottom:1139.010000px;}
.y5{bottom:1151.970000px;}
.y2e{bottom:1154.130000px;}
.y83{bottom:1191.240000px;}
.y55{bottom:1191.420000px;}
.y4{bottom:1195.740000px;}
.y3{bottom:1236.960000px;}
.y2{bottom:1254.960000px;}
.y1{bottom:1272.960000px;}
.h1e{height:32.400000px;}
.h1f{height:32.436000px;}
.h20{height:32.580000px;}
.h2d{height:32.616000px;}
.h2c{height:32.760000px;}
.h2e{height:33.300000px;}
.h29{height:36.180000px;}
.h2a{height:36.216000px;}
.h10{height:40.608281px;}
.h2{height:50.305781px;}
.h12{height:55.760625px;}
.he{height:60.609375px;}
.hb{height:61.523438px;}
.h1c{height:63.887252px;}
.h21{height:64.800000px;}
.h28{height:64.836000px;}
.hc{height:64.850749px;}
.h2f{height:65.884219px;}
.h11{height:70.912969px;}
.h19{height:71.982422px;}
.h4{height:73.337344px;}
.h1d{height:74.004654px;}
.h3{height:74.443359px;}
.h1b{height:74.953125px;}
.h5{height:86.065312px;}
.h16{height:87.363281px;}
.h6{height:88.489688px;}
.hf{height:90.036000px;}
.h15{height:90.914062px;}
.h17{height:92.088063px;}
.h7{height:92.285156px;}
.h2b{height:97.200000px;}
.h22{height:97.236000px;}
.h25{height:97.380000px;}
.h8{height:102.744141px;}
.hd{height:104.760000px;}
.h18{height:123.046875px;}
.h27{height:129.600000px;}
.h24{height:129.636000px;}
.h9{height:146.425781px;}
.h23{height:162.000000px;}
.h26{height:162.030000px;}
.h30{height:194.610000px;}
.ha{height:377.670000px;}
.h13{height:1262.880000px;}
.h14{height:1263.000000px;}
.h1a{height:1263.060000px;}
.h0{height:1288.440000px;}
.h1{height:1288.500000px;}
.w5{width:21.060000px;}
.w4{width:30.060000px;}
.w3{width:54.720000px;}
.w14{width:61.200000px;}
.w13{width:113.436000px;}
.w12{width:117.720000px;}
.w11{width:117.756000px;}
.we{width:149.436000px;}
.wd{width:150.870000px;}
.w15{width:171.570000px;}
.w10{width:188.310000px;}
.w17{width:197.130000px;}
.w16{width:247.215000px;}
.wc{width:336.855000px;}
.wb{width:637.170000px;}
.wf{width:650.670000px;}
.w8{width:892.979987px;}
.w6{width:892.980000px;}
.w7{width:893.250000px;}
.wa{width:893.339987px;}
.w9{width:893.340000px;}
.w1{width:1896.750000px;}
.w2{width:1896.839972px;}
.w0{width:1896.840000px;}
.x0{left:0.000000px;}
.x3e{left:8.100000px;}
.x7c{left:9.360000px;}
.x7a{left:12.780000px;}
.x7f{left:14.940000px;}
.x6c{left:16.200000px;}
.xe{left:17.280000px;}
.x9{left:18.360000px;}
.xc{left:20.520000px;}
.x6b{left:23.040000px;}
.x84{left:25.020000px;}
.x86{left:28.980000px;}
.x81{left:31.320000px;}
.x72{left:33.300000px;}
.x85{left:35.820000px;}
.x80{left:37.080000px;}
.x79{left:38.520000px;}
.xa{left:40.500000px;}
.x6e{left:42.165000px;}
.x6a{left:44.280000px;}
.x87{left:45.540000px;}
.x71{left:47.700000px;}
.x78{left:48.780000px;}
.x43{left:50.574000px;}
.x70{left:52.245000px;}
.x73{left:54.360000px;}
.x6f{left:57.054000px;}
.x45{left:59.220000px;}
.x88{left:60.300000px;}
.x44{left:62.100000px;}
.x47{left:63.540000px;}
.x46{left:66.420000px;}
.x74{left:68.574000px;}
.x41{left:70.020000px;}
.x3f{left:71.280000px;}
.x7b{left:73.110000px;}
.x42{left:75.420000px;}
.x89{left:84.960000px;}
.x82{left:96.330000px;}
.x83{left:98.460000px;}
.x17{left:106.415987px;}
.x2f{left:108.035987px;}
.x1a{left:109.655987px;}
.x60{left:116.315987px;}
.x2d{left:122.615987px;}
.x4a{left:127.115987px;}
.x13{left:129.095987px;}
.x23{left:138.095987px;}
.x27{left:140.615987px;}
.x66{left:143.135987px;}
.x3c{left:156.629987px;}
.x21{left:160.409987px;}
.x30{left:162.029987px;}
.x11{left:165.059972px;}
.x75{left:169.230000px;}
.xab{left:170.849987px;}
.x3d{left:175.709987px;}
.x7d{left:176.969987px;}
.x34{left:193.169987px;}
.x58{left:204.329987px;}
.x1b{left:205.409987px;}
.x5c{left:210.449987px;}
.x59{left:212.609987px;}
.x5d{left:218.729987px;}
.x7e{left:221.069987px;}
.x36{left:227.729987px;}
.x91{left:230.069987px;}
.x29{left:232.229987px;}
.x37{left:240.194987px;}
.x8e{left:241.994987px;}
.x97{left:253.514987px;}
.x98{left:258.014987px;}
.x35{left:269.894987px;}
.x26{left:271.874987px;}
.x2{left:275.969972px;}
.xa3{left:281.414987px;}
.x54{left:283.574987px;}
.x1d{left:291.674987px;}
.x1c{left:293.654987px;}
.x69{left:296.355000px;}
.x38{left:303.374987px;}
.x4c{left:308.954987px;}
.xa1{left:316.334987px;}
.x39{left:322.634987px;}
.x22{left:325.874987px;}
.x55{left:336.674987px;}
.x76{left:340.815000px;}
.x15{left:345.134987px;}
.x14{left:347.654987px;}
.xa9{left:349.634987px;}
.x16{left:352.334987px;}
.x56{left:355.754987px;}
.xa8{left:358.274987px;}
.x92{left:362.594987px;}
.x8f{left:365.474987px;}
.x1e{left:369.794987px;}
.xa2{left:372.134987px;}
.x63{left:373.934987px;}
.x65{left:381.854987px;}
.x20{left:385.454987px;}
.x57{left:390.134987px;}
.xa6{left:393.554987px;}
.x53{left:405.104987px;}
.x2e{left:406.874987px;}
.x24{left:408.314987px;}
.x28{left:414.974987px;}
.x25{left:416.774987px;}
.x4d{left:419.864987px;}
.x64{left:427.244987px;}
.x8d{left:428.504987px;}
.x8a{left:435.524987px;}
.x31{left:440.564987px;}
.x2a{left:442.154987px;}
.x1f{left:443.234987px;}
.x18{left:444.314987px;}
.x19{left:446.654987px;}
.x2b{left:450.074987px;}
.x4e{left:456.044987px;}
.x8b{left:460.364987px;}
.x5e{left:469.364987px;}
.x2c{left:473.324987px;}
.x51{left:476.744987px;}
.x5a{left:478.004987px;}
.x4b{left:480.534000px;}
.x99{left:482.864987px;}
.x9a{left:491.684987px;}
.x61{left:493.664987px;}
.x8c{left:496.544987px;}
.x9b{left:509.324987px;}
.xa4{left:514.724987px;}
.x5b{left:520.124987px;}
.x9c{left:521.384987px;}
.x5f{left:522.464987px;}
.xa5{left:528.044987px;}
.x52{left:530.024987px;}
.x6d{left:531.825000px;}
.x62{left:534.344987px;}
.x9d{left:567.509987px;}
.x12{left:571.649987px;}
.x9e{left:576.329987px;}
.x32{left:582.629987px;}
.x77{left:588.030000px;}
.x9f{left:593.969987px;}
.x40{left:595.770000px;}
.x96{left:629.969987px;}
.x93{left:634.469987px;}
.xa0{left:645.089987px;}
.x33{left:646.169987px;}
.x90{left:648.869987px;}
.x94{left:678.389987px;}
.x67{left:686.849987px;}
.x4f{left:699.449987px;}
.x95{left:708.089987px;}
.x48{left:713.849987px;}
.x49{left:726.299987px;}
.x68{left:730.079987px;}
.x50{left:738.899987px;}
.xa7{left:748.439987px;}
.x3a{left:763.739987px;}
.xaa{left:767.519987px;}
.x3b{left:776.159987px;}
.xf{left:890.024972px;}
.x10{left:893.084972px;}
.x8{left:920.445000px;}
.xb{left:933.945000px;}
.xd{left:936.105000px;}
.x1{left:990.644972px;}
.x3{left:1326.929972px;}
.x6{left:1328.549972px;}
.x7{left:1394.429972px;}
.x4{left:1470.929972px;}
.x5{left:1690.919972px;}
@media print{
.v2{vertical-align:-16.865312pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.865312pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.576000pt;}
.ls1b{letter-spacing:-0.269845pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.202384pt;}
.lsa{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.019840pt;}
.lsd{letter-spacing:-0.000001pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.048640pt;}
.lse{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.086933pt;}
.ls1f{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.197120pt;}
.ls0{letter-spacing:0.211733pt;}
.ls17{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.348267pt;}
.ls1c{letter-spacing:0.448000pt;}
.ls15{letter-spacing:0.512000pt;}
.ls14{letter-spacing:0.576000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.693333pt;}
.ls19{letter-spacing:2.560000pt;}
.ls21{letter-spacing:5.325728pt;}
.ls1e{letter-spacing:6.506667pt;}
.ls12{letter-spacing:7.040000pt;}
.ls1d{letter-spacing:14.698667pt;}
.ls7{letter-spacing:175.978667pt;}
.ls3{letter-spacing:752.138667pt;}
.ls8{letter-spacing:752.213333pt;}
.ws10{word-spacing:-16.865312pt;}
.wse{word-spacing:-16.512000pt;}
.ws13{word-spacing:-16.448000pt;}
.ws7{word-spacing:-16.320000pt;}
.ws11{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.999999pt;}
.ws5{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.744000pt;}
.ws0{word-spacing:-13.973333pt;}
.ws2{word-spacing:-13.491733pt;}
.ws1{word-spacing:-13.280000pt;}
.ws4{word-spacing:-10.806933pt;}
.ws8{word-spacing:-10.768640pt;}
.wsf{word-spacing:-10.700160pt;}
.ws12{word-spacing:-0.404587pt;}
.ws3{word-spacing:0.000000pt;}
._1f{margin-left:-15.445330pt;}
._21{margin-left:-14.549200pt;}
._1e{margin-left:-13.653157pt;}
._1d{margin-left:-12.501333pt;}
._22{margin-left:-11.328000pt;}
._9{margin-left:-9.291307pt;}
._23{margin-left:-7.434667pt;}
._20{margin-left:-5.525333pt;}
._d{margin-left:-3.776000pt;}
._e{margin-left:-2.515200pt;}
._1{margin-left:-1.084160pt;}
._2{width:0.929280pt;}
._6{width:2.077440pt;}
._8{width:3.128228pt;}
._c{width:4.423772pt;}
._17{width:5.654948pt;}
._18{width:6.912000pt;}
._28{width:7.808000pt;}
._14{width:8.704000pt;}
._26{width:9.664000pt;}
._16{width:10.624000pt;}
._15{width:11.776000pt;}
._f{width:12.736000pt;}
._24{width:13.876053pt;}
._1b{width:15.104000pt;}
._1c{width:16.937813pt;}
._25{width:17.942187pt;}
._1a{width:19.525547pt;}
._19{width:20.416000pt;}
._27{width:21.318827pt;}
._2d{width:22.208000pt;}
._2c{width:24.188160pt;}
._2b{width:25.088000pt;}
._11{width:27.776000pt;}
._12{width:28.830720pt;}
._13{width:30.057387pt;}
._29{width:31.338667pt;}
._2a{width:32.394667pt;}
._4{width:90.672575pt;}
._3{width:92.460865pt;}
._a{width:97.877760pt;}
._10{width:175.978667pt;}
._7{width:179.197440pt;}
._5{width:180.650015pt;}
._b{width:194.295040pt;}
._0{width:1182.400000pt;}
.fsf{font-size:28.333725pt;}
.fs9{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fse{font-size:56.320000pt;}
.fsb{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:67.461249pt;}
.fsa{font-size:74.880000pt;}
.fs1{font-size:77.440000pt;}
.fs2{font-size:90.880000pt;}
.fs3{font-size:93.440000pt;}
.fsc{font-size:95.794973pt;}
.fs4{font-size:96.000000pt;}
.fs5{font-size:106.880000pt;}
.fsd{font-size:128.000000pt;}
.fs6{font-size:152.320000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:1.280000pt;}
.yc7{bottom:12.314667pt;}
.yab{bottom:12.320000pt;}
.yd3{bottom:12.480000pt;}
.y112{bottom:12.640000pt;}
.y106{bottom:13.920000pt;}
.y10a{bottom:14.080000pt;}
.y108{bottom:15.680000pt;}
.y12a{bottom:21.914667pt;}
.y13f{bottom:21.960000pt;}
.yf3{bottom:26.720000pt;}
.yfa{bottom:26.746667pt;}
.y127{bottom:41.114667pt;}
.yd5{bottom:41.120000pt;}
.yec{bottom:41.146667pt;}
.y13e{bottom:41.160000pt;}
.yf7{bottom:41.280000pt;}
.y85{bottom:50.080000pt;}
.y57{bottom:50.240000pt;}
.y129{bottom:50.714667pt;}
.y2d{bottom:50.880000pt;}
.y124{bottom:55.514667pt;}
.yf9{bottom:55.520000pt;}
.yf2{bottom:55.560000pt;}
.y2b{bottom:61.146667pt;}
.y126{bottom:69.914667pt;}
.yef{bottom:69.920000pt;}
.yeb{bottom:69.946667pt;}
.yf1{bottom:69.960000pt;}
.yf6{bottom:70.080000pt;}
.y13b{bottom:70.106667pt;}
.y84{bottom:71.200000pt;}
.y56{bottom:71.360000pt;}
.y2c{bottom:72.000000pt;}
.y29{bottom:72.320000pt;}
.y54{bottom:72.640000pt;}
.y128{bottom:79.514667pt;}
.y163{bottom:79.840000pt;}
.y133{bottom:80.800000pt;}
.y135{bottom:84.320000pt;}
.y137{bottom:84.506667pt;}
.y53{bottom:90.112000pt;}
.y2a{bottom:95.520000pt;}
.y24{bottom:96.640000pt;}
.y125{bottom:98.714667pt;}
.yee{bottom:98.720000pt;}
.yf0{bottom:98.760000pt;}
.y13a{bottom:98.906667pt;}
.y105{bottom:99.392000pt;}
.y132{bottom:101.280000pt;}
.yc8{bottom:103.392000pt;}
.y52{bottom:108.352000pt;}
.ye4{bottom:114.272000pt;}
.y131{bottom:116.352000pt;}
.ya5{bottom:116.992000pt;}
.y23{bottom:117.760000pt;}
.y123{bottom:121.152000pt;}
.yed{bottom:127.520000pt;}
.yf8{bottom:127.560000pt;}
.y139{bottom:127.706667pt;}
.yc6{bottom:132.192000pt;}
.y51{bottom:135.546667pt;}
.ye3{bottom:143.066667pt;}
.y104{bottom:143.866667pt;}
.y130{bottom:145.146667pt;}
.ya4{bottom:145.786667pt;}
.y138{bottom:156.506667pt;}
.ye2{bottom:160.346667pt;}
.yc5{bottom:160.986667pt;}
.y152{bottom:161.786667pt;}
.y22{bottom:162.106667pt;}
.y50{bottom:162.746667pt;}
.y103{bottom:172.666667pt;}
.y12f{bottom:173.946667pt;}
.ya3{bottom:174.586667pt;}
.ye1{bottom:189.146667pt;}
.yc4{bottom:189.786667pt;}
.y4f{bottom:189.946667pt;}
.y21{bottom:194.106667pt;}
.y151{bottom:200.186667pt;}
.y102{bottom:201.466667pt;}
.y12e{bottom:202.746667pt;}
.ya2{bottom:203.386667pt;}
.y162{bottom:207.066667pt;}
.y4e{bottom:217.146667pt;}
.ye0{bottom:217.946667pt;}
.yc3{bottom:218.586667pt;}
.y20{bottom:226.106667pt;}
.y101{bottom:230.266667pt;}
.y12d{bottom:231.546667pt;}
.ya1{bottom:232.186667pt;}
.y122{bottom:237.146667pt;}
.y4d{bottom:244.346667pt;}
.y161{bottom:244.986667pt;}
.ydf{bottom:246.746667pt;}
.yc2{bottom:247.386667pt;}
.y150{bottom:254.586667pt;}
.y1f{bottom:258.106667pt;}
.y100{bottom:259.066667pt;}
.y12c{bottom:260.346667pt;}
.ya0{bottom:260.986667pt;}
.ye7{bottom:261.466667pt;}
.y4c{bottom:274.106667pt;}
.yde{bottom:275.546667pt;}
.yc1{bottom:276.186667pt;}
.y121{bottom:279.386667pt;}
.y160{bottom:283.386667pt;}
.yff{bottom:287.866667pt;}
.y12b{bottom:289.146667pt;}
.y9f{bottom:289.786667pt;}
.y1e{bottom:290.106667pt;}
.y14f{bottom:292.986667pt;}
.y4b{bottom:300.506667pt;}
.ydd{bottom:304.346667pt;}
.yc0{bottom:304.986667pt;}
.y13d{bottom:306.266667pt;}
.y26{bottom:308.026667pt;}
.y120{bottom:308.186667pt;}
.yfe{bottom:316.666667pt;}
.y9e{bottom:318.586667pt;}
.y15f{bottom:321.826667pt;}
.y1d{bottom:322.106667pt;}
.y4a{bottom:326.306667pt;}
.y14e{bottom:331.426667pt;}
.ydc{bottom:333.186667pt;}
.ybf{bottom:333.826667pt;}
.y11f{bottom:337.026667pt;}
.yfd{bottom:345.506667pt;}
.y9d{bottom:347.426667pt;}
.y49{bottom:352.066667pt;}
.y1c{bottom:354.106667pt;}
.y27{bottom:361.986667pt;}
.ybe{bottom:362.626667pt;}
.y11e{bottom:365.826667pt;}
.y14d{bottom:369.826667pt;}
.yfc{bottom:374.306667pt;}
.y9c{bottom:376.226667pt;}
.y7c{bottom:377.986667pt;}
.y48{bottom:378.626667pt;}
.y1b{bottom:386.146667pt;}
.ydb{bottom:390.786667pt;}
.ybd{bottom:391.426667pt;}
.y13c{bottom:392.706667pt;}
.y6d{bottom:394.466667pt;}
.y11d{bottom:394.626667pt;}
.yfb{bottom:403.106667pt;}
.y47{bottom:404.386667pt;}
.y9b{bottom:405.026667pt;}
.y7b{bottom:406.786667pt;}
.y15e{bottom:414.626667pt;}
.y1a{bottom:418.146667pt;}
.yda{bottom:419.586667pt;}
.ybc{bottom:420.226667pt;}
.y6c{bottom:423.266667pt;}
.y11c{bottom:423.426667pt;}
.y14c{bottom:424.386667pt;}
.y9a{bottom:433.826667pt;}
.ya9{bottom:434.306667pt;}
.y7a{bottom:435.586667pt;}
.yd9{bottom:448.386667pt;}
.ybb{bottom:449.026667pt;}
.y19{bottom:450.146667pt;}
.y6b{bottom:451.586667pt;}
.y11b{bottom:452.226667pt;}
.y46{bottom:454.786667pt;}
.y99{bottom:462.626667pt;}
.y14b{bottom:462.786667pt;}
.ya8{bottom:463.106667pt;}
.y79{bottom:464.386667pt;}
.y15d{bottom:469.186667pt;}
.y25{bottom:474.786667pt;}
.yd8{bottom:477.186667pt;}
.yba{bottom:477.826667pt;}
.y6a{bottom:480.386667pt;}
.y11a{bottom:481.026667pt;}
.y18{bottom:482.146667pt;}
.y98{bottom:491.426667pt;}
.y78{bottom:493.186667pt;}
.y81{bottom:493.666667pt;}
.y45{bottom:497.026667pt;}
.yd7{bottom:505.986667pt;}
.yb9{bottom:506.626667pt;}
.y15c{bottom:507.586667pt;}
.y136{bottom:507.906667pt;}
.y69{bottom:509.186667pt;}
.y119{bottom:509.826667pt;}
.y17{bottom:514.146667pt;}
.y14a{bottom:517.186667pt;}
.y97{bottom:520.386667pt;}
.y77{bottom:521.986667pt;}
.y44{bottom:532.226667pt;}
.yd6{bottom:534.786667pt;}
.yb8{bottom:535.426667pt;}
.y68{bottom:537.986667pt;}
.y118{bottom:538.626667pt;}
.y16{bottom:546.146667pt;}
.y96{bottom:549.186667pt;}
.y76{bottom:550.786667pt;}
.y149{bottom:555.613333pt;}
.y15b{bottom:562.013333pt;}
.y43{bottom:563.613333pt;}
.yb7{bottom:564.253333pt;}
.y67{bottom:566.786667pt;}
.y117{bottom:567.453333pt;}
.y95{bottom:578.013333pt;}
.y15{bottom:578.306667pt;}
.y75{bottom:579.586667pt;}
.y82{bottom:580.066667pt;}
.yb6{bottom:593.053333pt;}
.y148{bottom:594.013333pt;}
.y42{bottom:594.813333pt;}
.y66{bottom:595.613333pt;}
.y116{bottom:596.253333pt;}
.y15a{bottom:600.413333pt;}
.y94{bottom:606.813333pt;}
.ye6{bottom:607.293333pt;}
.y14{bottom:608.093333pt;}
.y74{bottom:608.413333pt;}
.y7e{bottom:608.893333pt;}
.yd4{bottom:621.213333pt;}
.yb5{bottom:621.853333pt;}
.yea{bottom:622.493333pt;}
.y65{bottom:624.413333pt;}
.y115{bottom:625.053333pt;}
.y41{bottom:626.173333pt;}
.y147{bottom:632.413333pt;}
.y93{bottom:635.613333pt;}
.y73{bottom:637.213333pt;}
.y13{bottom:637.693333pt;}
.yb4{bottom:650.653333pt;}
.ye9{bottom:652.093333pt;}
.y64{bottom:653.213333pt;}
.y114{bottom:653.853333pt;}
.y159{bottom:654.813333pt;}
.y40{bottom:657.373333pt;}
.y92{bottom:664.413333pt;}
.y12{bottom:665.693333pt;}
.y72{bottom:666.013333pt;}
.yb3{bottom:679.453333pt;}
.yd2{bottom:680.093333pt;}
.ye8{bottom:680.893333pt;}
.y63{bottom:682.013333pt;}
.y113{bottom:682.653333pt;}
.y146{bottom:686.813333pt;}
.y3f{bottom:688.573333pt;}
.y91{bottom:693.213333pt;}
.y11{bottom:693.693333pt;}
.y71{bottom:694.813333pt;}
.y111{bottom:699.933333pt;}
.yb2{bottom:708.253333pt;}
.yd1{bottom:709.053333pt;}
.y158{bottom:709.213333pt;}
.y62{bottom:711.293333pt;}
.y10{bottom:720.893333pt;}
.y3e{bottom:721.373333pt;}
.y90{bottom:722.013333pt;}
.y70{bottom:723.613333pt;}
.y110{bottom:729.533333pt;}
.yb1{bottom:737.053333pt;}
.y61{bottom:740.093333pt;}
.y145{bottom:741.213333pt;}
.y157{bottom:747.613333pt;}
.yf{bottom:748.093333pt;}
.yd0{bottom:750.173333pt;}
.y8f{bottom:750.813333pt;}
.y6f{bottom:752.413333pt;}
.y10f{bottom:758.493333pt;}
.y3d{bottom:765.533333pt;}
.y60{bottom:765.693333pt;}
.yb0{bottom:765.853333pt;}
.ye{bottom:775.293333pt;}
.ycf{bottom:778.973333pt;}
.y8e{bottom:779.613333pt;}
.y6e{bottom:781.213333pt;}
.y3c{bottom:783.973333pt;}
.y10e{bottom:787.493333pt;}
.yaf{bottom:794.693333pt;}
.y144{bottom:795.653333pt;}
.y134{bottom:796.133333pt;}
.yd{bottom:801.853333pt;}
.y156{bottom:802.053333pt;}
.y3b{bottom:802.373333pt;}
.yce{bottom:807.813333pt;}
.y8d{bottom:808.453333pt;}
.y5f{bottom:810.053333pt;}
.y10d{bottom:816.453333pt;}
.y3a{bottom:820.773333pt;}
.yae{bottom:823.493333pt;}
.yc{bottom:826.053333pt;}
.y143{bottom:834.053333pt;}
.ycd{bottom:836.613333pt;}
.y8c{bottom:837.253333pt;}
.y5e{bottom:838.853333pt;}
.y39{bottom:839.173333pt;}
.y155{bottom:840.453333pt;}
.y10c{bottom:845.573333pt;}
.yf5{bottom:852.293333pt;}
.yad{bottom:853.093333pt;}
.yb{bottom:853.253333pt;}
.y38{bottom:857.573333pt;}
.ycc{bottom:865.413333pt;}
.y8b{bottom:866.053333pt;}
.y5d{bottom:867.653333pt;}
.y142{bottom:872.453333pt;}
.y10b{bottom:875.173333pt;}
.y37{bottom:875.973333pt;}
.y154{bottom:878.853333pt;}
.ya{bottom:880.453333pt;}
.yac{bottom:882.533333pt;}
.y36{bottom:894.373333pt;}
.y8a{bottom:894.853333pt;}
.ye5{bottom:895.333333pt;}
.y5c{bottom:896.453333pt;}
.y9{bottom:907.653333pt;}
.yaa{bottom:911.333333pt;}
.y35{bottom:912.773333pt;}
.y89{bottom:923.653333pt;}
.y5b{bottom:925.253333pt;}
.y80{bottom:925.733333pt;}
.y141{bottom:926.853333pt;}
.y34{bottom:933.253333pt;}
.y8{bottom:934.853333pt;}
.yf4{bottom:939.493333pt;}
.ycb{bottom:940.133333pt;}
.y88{bottom:952.453333pt;}
.y5a{bottom:954.053333pt;}
.y7f{bottom:954.533333pt;}
.y33{bottom:960.453333pt;}
.y109{bottom:962.213333pt;}
.y7{bottom:962.693333pt;}
.y140{bottom:965.253333pt;}
.yca{bottom:968.933333pt;}
.y153{bottom:971.653333pt;}
.ya7{bottom:981.253333pt;}
.y87{bottom:981.733333pt;}
.y59{bottom:982.853333pt;}
.y7d{bottom:983.333333pt;}
.y6{bottom:985.093333pt;}
.y30{bottom:991.333333pt;}
.y107{bottom:994.373333pt;}
.yc9{bottom:997.733333pt;}
.y32{bottom:998.693333pt;}
.y2f{bottom:1008.933333pt;}
.ya6{bottom:1010.053333pt;}
.y86{bottom:1010.533333pt;}
.y58{bottom:1012.133333pt;}
.y31{bottom:1012.453333pt;}
.y5{bottom:1023.973333pt;}
.y2e{bottom:1025.893333pt;}
.y83{bottom:1058.880000pt;}
.y55{bottom:1059.040000pt;}
.y4{bottom:1062.880000pt;}
.y3{bottom:1099.520000pt;}
.y2{bottom:1115.520000pt;}
.y1{bottom:1131.520000pt;}
.h1e{height:28.800000pt;}
.h1f{height:28.832000pt;}
.h20{height:28.960000pt;}
.h2d{height:28.992000pt;}
.h2c{height:29.120000pt;}
.h2e{height:29.600000pt;}
.h29{height:32.160000pt;}
.h2a{height:32.192000pt;}
.h10{height:36.096250pt;}
.h2{height:44.716250pt;}
.h12{height:49.565000pt;}
.he{height:53.875000pt;}
.hb{height:54.687500pt;}
.h1c{height:56.788668pt;}
.h21{height:57.600000pt;}
.h28{height:57.632000pt;}
.hc{height:57.645110pt;}
.h2f{height:58.563750pt;}
.h11{height:63.033750pt;}
.h19{height:63.984375pt;}
.h4{height:65.188750pt;}
.h1d{height:65.781915pt;}
.h3{height:66.171875pt;}
.h1b{height:66.625000pt;}
.h5{height:76.502500pt;}
.h16{height:77.656250pt;}
.h6{height:78.657500pt;}
.hf{height:80.032000pt;}
.h15{height:80.812500pt;}
.h17{height:81.856056pt;}
.h7{height:82.031250pt;}
.h2b{height:86.400000pt;}
.h22{height:86.432000pt;}
.h25{height:86.560000pt;}
.h8{height:91.328125pt;}
.hd{height:93.120000pt;}
.h18{height:109.375000pt;}
.h27{height:115.200000pt;}
.h24{height:115.232000pt;}
.h9{height:130.156250pt;}
.h23{height:144.000000pt;}
.h26{height:144.026667pt;}
.h30{height:172.986667pt;}
.ha{height:335.706667pt;}
.h13{height:1122.560000pt;}
.h14{height:1122.666667pt;}
.h1a{height:1122.720000pt;}
.h0{height:1145.280000pt;}
.h1{height:1145.333333pt;}
.w5{width:18.720000pt;}
.w4{width:26.720000pt;}
.w3{width:48.640000pt;}
.w14{width:54.400000pt;}
.w13{width:100.832000pt;}
.w12{width:104.640000pt;}
.w11{width:104.672000pt;}
.we{width:132.832000pt;}
.wd{width:134.106667pt;}
.w15{width:152.506667pt;}
.w10{width:167.386667pt;}
.w17{width:175.226667pt;}
.w16{width:219.746667pt;}
.wc{width:299.426667pt;}
.wb{width:566.373333pt;}
.wf{width:578.373333pt;}
.w8{width:793.759988pt;}
.w6{width:793.760000pt;}
.w7{width:794.000000pt;}
.wa{width:794.079988pt;}
.w9{width:794.080000pt;}
.w1{width:1686.000000pt;}
.w2{width:1686.079975pt;}
.w0{width:1686.080000pt;}
.x0{left:0.000000pt;}
.x3e{left:7.200000pt;}
.x7c{left:8.320000pt;}
.x7a{left:11.360000pt;}
.x7f{left:13.280000pt;}
.x6c{left:14.400000pt;}
.xe{left:15.360000pt;}
.x9{left:16.320000pt;}
.xc{left:18.240000pt;}
.x6b{left:20.480000pt;}
.x84{left:22.240000pt;}
.x86{left:25.760000pt;}
.x81{left:27.840000pt;}
.x72{left:29.600000pt;}
.x85{left:31.840000pt;}
.x80{left:32.960000pt;}
.x79{left:34.240000pt;}
.xa{left:36.000000pt;}
.x6e{left:37.480000pt;}
.x6a{left:39.360000pt;}
.x87{left:40.480000pt;}
.x71{left:42.400000pt;}
.x78{left:43.360000pt;}
.x43{left:44.954667pt;}
.x70{left:46.440000pt;}
.x73{left:48.320000pt;}
.x6f{left:50.714667pt;}
.x45{left:52.640000pt;}
.x88{left:53.600000pt;}
.x44{left:55.200000pt;}
.x47{left:56.480000pt;}
.x46{left:59.040000pt;}
.x74{left:60.954667pt;}
.x41{left:62.240000pt;}
.x3f{left:63.360000pt;}
.x7b{left:64.986667pt;}
.x42{left:67.040000pt;}
.x89{left:75.520000pt;}
.x82{left:85.626667pt;}
.x83{left:87.520000pt;}
.x17{left:94.591988pt;}
.x2f{left:96.031988pt;}
.x1a{left:97.471988pt;}
.x60{left:103.391988pt;}
.x2d{left:108.991988pt;}
.x4a{left:112.991988pt;}
.x13{left:114.751988pt;}
.x23{left:122.751988pt;}
.x27{left:124.991988pt;}
.x66{left:127.231988pt;}
.x3c{left:139.226655pt;}
.x21{left:142.586655pt;}
.x30{left:144.026655pt;}
.x11{left:146.719975pt;}
.x75{left:150.426667pt;}
.xab{left:151.866655pt;}
.x3d{left:156.186655pt;}
.x7d{left:157.306655pt;}
.x34{left:171.706655pt;}
.x58{left:181.626655pt;}
.x1b{left:182.586655pt;}
.x5c{left:187.066655pt;}
.x59{left:188.986655pt;}
.x5d{left:194.426655pt;}
.x7e{left:196.506655pt;}
.x36{left:202.426655pt;}
.x91{left:204.506655pt;}
.x29{left:206.426655pt;}
.x37{left:213.506655pt;}
.x8e{left:215.106655pt;}
.x97{left:225.346655pt;}
.x98{left:229.346655pt;}
.x35{left:239.906655pt;}
.x26{left:241.666655pt;}
.x2{left:245.306642pt;}
.xa3{left:250.146655pt;}
.x54{left:252.066655pt;}
.x1d{left:259.266655pt;}
.x1c{left:261.026655pt;}
.x69{left:263.426667pt;}
.x38{left:269.666655pt;}
.x4c{left:274.626655pt;}
.xa1{left:281.186655pt;}
.x39{left:286.786655pt;}
.x22{left:289.666655pt;}
.x55{left:299.266655pt;}
.x76{left:302.946667pt;}
.x15{left:306.786655pt;}
.x14{left:309.026655pt;}
.xa9{left:310.786655pt;}
.x16{left:313.186655pt;}
.x56{left:316.226655pt;}
.xa8{left:318.466655pt;}
.x92{left:322.306655pt;}
.x8f{left:324.866655pt;}
.x1e{left:328.706655pt;}
.xa2{left:330.786655pt;}
.x63{left:332.386655pt;}
.x65{left:339.426655pt;}
.x20{left:342.626655pt;}
.x57{left:346.786655pt;}
.xa6{left:349.826655pt;}
.x53{left:360.093322pt;}
.x2e{left:361.666655pt;}
.x24{left:362.946655pt;}
.x28{left:368.866655pt;}
.x25{left:370.466655pt;}
.x4d{left:373.213322pt;}
.x64{left:379.773322pt;}
.x8d{left:380.893322pt;}
.x8a{left:387.133322pt;}
.x31{left:391.613322pt;}
.x2a{left:393.026655pt;}
.x1f{left:393.986655pt;}
.x18{left:394.946655pt;}
.x19{left:397.026655pt;}
.x2b{left:400.066655pt;}
.x4e{left:405.373322pt;}
.x8b{left:409.213322pt;}
.x5e{left:417.213322pt;}
.x2c{left:420.733321pt;}
.x51{left:423.773322pt;}
.x5a{left:424.893322pt;}
.x4b{left:427.141333pt;}
.x99{left:429.213322pt;}
.x9a{left:437.053322pt;}
.x61{left:438.813322pt;}
.x8c{left:441.373322pt;}
.x9b{left:452.733322pt;}
.xa4{left:457.533322pt;}
.x5b{left:462.333322pt;}
.x9c{left:463.453322pt;}
.x5f{left:464.413322pt;}
.xa5{left:469.373322pt;}
.x52{left:471.133322pt;}
.x6d{left:472.733333pt;}
.x62{left:474.973322pt;}
.x9d{left:504.453322pt;}
.x12{left:508.133322pt;}
.x9e{left:512.293322pt;}
.x32{left:517.893322pt;}
.x77{left:522.693333pt;}
.x9f{left:527.973322pt;}
.x40{left:529.573333pt;}
.x96{left:559.973322pt;}
.x93{left:563.973322pt;}
.xa0{left:573.413322pt;}
.x33{left:574.373322pt;}
.x90{left:576.773322pt;}
.x94{left:603.013322pt;}
.x67{left:610.533322pt;}
.x4f{left:621.733322pt;}
.x95{left:629.413322pt;}
.x48{left:634.533322pt;}
.x49{left:645.599988pt;}
.x68{left:648.959988pt;}
.x50{left:656.799988pt;}
.xa7{left:665.279988pt;}
.x3a{left:678.879988pt;}
.xaa{left:682.239988pt;}
.x3b{left:689.919988pt;}
.xf{left:791.133308pt;}
.x10{left:793.853308pt;}
.x8{left:818.173333pt;}
.xb{left:830.173333pt;}
.xd{left:832.093333pt;}
.x1{left:880.573308pt;}
.x3{left:1179.493308pt;}
.x6{left:1180.933308pt;}
.x7{left:1239.493308pt;}
.x4{left:1307.493308pt;}
.x5{left:1503.039975pt;}
}




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