
    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_4c500471fe4461f201bb5a77.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_c8345a37687f35aeec072b0e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_95c1eefd018679872974bafe.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_69357ec9fdbfde103087a055.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f2008ef29a4108c3c03006cc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_2f240ecdff61bca0f5c05fd0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916016;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_36736c208edac619db81ab03.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_f3cc3665830ee7d5e8884708.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b2ce1d000c60c90351649a9d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.783691;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_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_80158ee1c9a83e42546bb1bc.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_bcdbc5c4943c025fc4a52dd9.woff2')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b49dd9982874998aff42533b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-27.360000px;}
.v7{vertical-align:-25.920000px;}
.v6{vertical-align:-12.960000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v5{vertical-align:12.960000px;}
.v2{vertical-align:27.360000px;}
.lsa{letter-spacing:-0.463800px;}
.ls8{letter-spacing:-0.457800px;}
.ls5{letter-spacing:-0.382800px;}
.ls6{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.305400px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.020160px;}
.ls9{letter-spacing:0.132480px;}
.ls16{letter-spacing:0.152400px;}
.ls15{letter-spacing:0.305400px;}
.ls7{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.604800px;}
.ls1{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.840000px;}
.ls14{letter-spacing:2.967840px;}
.ls11{letter-spacing:3.087840px;}
.ls13{letter-spacing:11.347200px;}
.lsf{letter-spacing:15.685920px;}
.ls10{letter-spacing:17.125920px;}
.ls12{letter-spacing:19.320480px;}
.lsd{letter-spacing:30.557280px;}
.lse{letter-spacing:37.757280px;}
.lsb{letter-spacing:40.637280px;}
.ls3{letter-spacing:62.369280px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc1{text-shadow:-0.015em 0 rgb(128,128,128),0 0.015em rgb(128,128,128),0.015em 0 rgb(128,128,128),0 -0.015em  rgb(128,128,128);}
.sc0{text-shadow:-0.015em 0 rgb(204,0,153),0 0.015em rgb(204,0,153),0.015em 0 rgb(204,0,153),0 -0.015em  rgb(204,0,153);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(128,128,128);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(204,0,153);text-shadow:none;}
}
.wsa{word-spacing:-66.240000px;}
.ws0{word-spacing:-21.715200px;}
.ws4{word-spacing:-18.504000px;}
.ws2{word-spacing:-18.000000px;}
.ws13{word-spacing:-16.865400px;}
.ws5{word-spacing:-16.560000px;}
.ws14{word-spacing:-16.254600px;}
.ws6{word-spacing:-14.970240px;}
.wse{word-spacing:-14.572800px;}
.ws9{word-spacing:-14.506440px;}
.ws1{word-spacing:-11.983920px;}
.ws3{word-spacing:-11.520000px;}
.wsd{word-spacing:-10.454400px;}
.ws12{word-spacing:-0.694080px;}
.ws7{word-spacing:-0.066240px;}
.ws8{word-spacing:0.000000px;}
.wsf{word-spacing:0.745920px;}
.ws11{word-spacing:3.625920px;}
.wsc{word-spacing:3.769920px;}
.wsb{word-spacing:13.186080px;}
.ws10{word-spacing:13.330080px;}
._1a{margin-left:-9.762720px;}
._18{margin-left:-5.973120px;}
._19{margin-left:-4.962240px;}
._9{margin-left:-3.847680px;}
._a{margin-left:-2.649600px;}
._3{margin-left:-1.477440px;}
._0{width:1.169280px;}
._1{width:3.083520px;}
._c{width:4.090560px;}
._e{width:5.418240px;}
._10{width:6.445440px;}
._8{width:7.704000px;}
._7{width:8.830080px;}
._6{width:10.088640px;}
._d{width:11.105280px;}
._5{width:12.752640px;}
._4{width:13.910400px;}
._f{width:15.511680px;}
._26{width:16.565760px;}
._b{width:17.686080px;}
._16{width:18.812160px;}
._17{width:20.173920px;}
._11{width:21.792960px;}
._12{width:23.071680px;}
._15{width:24.264000px;}
._13{width:25.369920px;}
._14{width:26.847360px;}
._21{width:37.558080px;}
._22{width:38.577600px;}
._25{width:43.977600px;}
._24{width:45.990720px;}
._20{width:51.589440px;}
._1f{width:52.885440px;}
._1e{width:58.691520px;}
._1b{width:65.439360px;}
._23{width:67.219200px;}
._1c{width:191.229120px;}
._1d{width:244.612800px;}
._2{width:395.273280px;}
.fc3{color:rgb(202,60,155);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(204,0,153);}
.fs2{font-size:24.480000px;}
.fs8{font-size:41.760000px;}
.fs7{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs9{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.fs6{font-size:119.520000px;}
.fs0{font-size:191.520000px;}
.y6{bottom:-4.320000px;}
.y0{bottom:0.000000px;}
.yb3{bottom:3.240000px;}
.y8{bottom:3.600000px;}
.yaf{bottom:4.320000px;}
.yae{bottom:5.400000px;}
.y1d{bottom:6.120000px;}
.y20{bottom:6.480000px;}
.y167{bottom:6.510000px;}
.y26{bottom:6.525000px;}
.y22{bottom:7.560000px;}
.y137{bottom:12.960000px;}
.y145{bottom:13.005000px;}
.y140{bottom:13.320000px;}
.yb1{bottom:19.080000px;}
.yb2{bottom:20.160000px;}
.yb9{bottom:20.520000px;}
.ycd{bottom:20.550000px;}
.y25{bottom:21.285000px;}
.ye0{bottom:22.680000px;}
.y1c{bottom:28.080000px;}
.y1f{bottom:28.110000px;}
.y9{bottom:30.600000px;}
.yd1{bottom:37.440000px;}
.yb8{bottom:37.794000px;}
.yc5{bottom:37.800000px;}
.ycc{bottom:37.830000px;}
.y133{bottom:39.285000px;}
.y1b{bottom:50.040000px;}
.y135{bottom:50.400000px;}
.y139{bottom:50.430000px;}
.y148{bottom:50.790000px;}
.yd0{bottom:54.720000px;}
.yb7{bottom:55.074000px;}
.yc4{bottom:55.080000px;}
.ycb{bottom:55.110000px;}
.y7{bottom:57.240000px;}
.y1a{bottom:71.640000px;}
.yca{bottom:72.030000px;}
.yc3{bottom:72.360000px;}
.yb6{bottom:72.399000px;}
.ybc{bottom:77.805000px;}
.y5{bottom:84.636000px;}
.yc9{bottom:89.310000px;}
.yc2{bottom:89.640000px;}
.yb5{bottom:89.679000px;}
.y19{bottom:93.600000px;}
.yc8{bottom:106.590000px;}
.yc1{bottom:106.920000px;}
.y18{bottom:115.230000px;}
.yc7{bottom:123.870000px;}
.yc0{bottom:124.230000px;}
.y142{bottom:125.325000px;}
.y13c{bottom:125.670000px;}
.y1de{bottom:126.036000px;}
.yb4{bottom:126.396000px;}
.y77{bottom:127.116000px;}
.y14d{bottom:127.476000px;}
.y178{bottom:135.756000px;}
.y17{bottom:137.190000px;}
.y62{bottom:137.196000px;}
.y33{bottom:140.436000px;}
.ybf{bottom:141.510000px;}
.y103{bottom:141.876000px;}
.y1b2{bottom:142.596000px;}
.y99{bottom:146.196000px;}
.yd9{bottom:147.636000px;}
.y16a{bottom:152.670000px;}
.y76{bottom:155.550000px;}
.y14c{bottom:155.910000px;}
.ybe{bottom:158.430000px;}
.y61{bottom:158.790000px;}
.y16{bottom:159.150000px;}
.y12b{bottom:161.670000px;}
.y32{bottom:162.030000px;}
.y1b1{bottom:163.110000px;}
.y177{bottom:164.190000px;}
.y190{bottom:165.630000px;}
.y1dd{bottom:166.710000px;}
.y102{bottom:167.430000px;}
.y101{bottom:170.670000px;}
.y98{bottom:174.630000px;}
.yd8{bottom:176.070000px;}
.y15{bottom:180.750000px;}
.y31{bottom:183.990000px;}
.y1dc{bottom:187.590000px;}
.y12a{bottom:190.110000px;}
.y176{bottom:192.630000px;}
.y14b{bottom:193.350000px;}
.y18f{bottom:194.070000px;}
.y100{bottom:199.515000px;}
.y60{bottom:202.395000px;}
.y14{bottom:202.710000px;}
.y97{bottom:203.115000px;}
.yd7{bottom:204.555000px;}
.y30{bottom:205.995000px;}
.y1db{bottom:208.155000px;}
.y75{bottom:212.475000px;}
.y129{bottom:218.595000px;}
.y175{bottom:221.115000px;}
.y18e{bottom:222.555000px;}
.y5f{bottom:224.355000px;}
.y1b0{bottom:225.435000px;}
.y2f{bottom:227.595000px;}
.y1da{bottom:229.035000px;}
.yb0{bottom:230.835000px;}
.y96{bottom:231.555000px;}
.yd6{bottom:232.995000px;}
.yfe{bottom:233.715000px;}
.yfd{bottom:234.075000px;}
.yfc{bottom:237.315000px;}
.y74{bottom:240.915000px;}
.yff{bottom:243.795000px;}
.y1af{bottom:245.955000px;}
.y5e{bottom:246.315000px;}
.y128{bottom:247.035000px;}
.y2e{bottom:249.555000px;}
.y18d{bottom:250.995000px;}
.y169{bottom:253.155000px;}
.y14a{bottom:256.035000px;}
.y95{bottom:259.995000px;}
.yd5{bottom:261.435000px;}
.yad{bottom:265.755000px;}
.y1ae{bottom:266.835000px;}
.y5d{bottom:267.915000px;}
.y73{bottom:269.355000px;}
.y1d9{bottom:270.435000px;}
.y2d{bottom:271.155000px;}
.yfa{bottom:271.515000px;}
.yf9{bottom:271.875000px;}
.yf8{bottom:275.115000px;}
.y127{bottom:275.475000px;}
.y174{bottom:277.995000px;}
.y18c{bottom:279.435000px;}
.yfb{bottom:281.595000px;}
.y1ad{bottom:287.355000px;}
.y94{bottom:288.435000px;}
.y5c{bottom:289.875000px;}
.y1d8{bottom:290.955000px;}
.y2c{bottom:293.115000px;}
.y147{bottom:293.475000px;}
.y168{bottom:297.075000px;}
.y173{bottom:306.435000px;}
.y72{bottom:306.795000px;}
.y18b{bottom:307.875000px;}
.y1ac{bottom:308.235000px;}
.yac{bottom:309.315000px;}
.yf7{bottom:310.035000px;}
.y5b{bottom:311.475000px;}
.y1d7{bottom:311.835000px;}
.y126{bottom:312.915000px;}
.yf6{bottom:313.275000px;}
.y2b{bottom:315.075000px;}
.y93{bottom:316.875000px;}
.yd4{bottom:318.315000px;}
.y166{bottom:318.675000px;}
.y1ab{bottom:328.785000px;}
.y149{bottom:330.945000px;}
.y1d6{bottom:332.385000px;}
.y5a{bottom:333.465000px;}
.y172{bottom:334.905000px;}
.y71{bottom:335.265000px;}
.y18a{bottom:336.345000px;}
.y2a{bottom:336.705000px;}
.y165{bottom:340.665000px;}
.y92{bottom:345.345000px;}
.yab{bottom:346.785000px;}
.y1aa{bottom:349.665000px;}
.y125{bottom:350.385000px;}
.yf5{bottom:351.105000px;}
.y1d5{bottom:353.265000px;}
.y59{bottom:355.425000px;}
.y29{bottom:358.665000px;}
.y164{bottom:362.265000px;}
.y171{bottom:363.345000px;}
.y70{bottom:363.705000px;}
.y189{bottom:364.785000px;}
.y141{bottom:368.745000px;}
.y1a9{bottom:370.185000px;}
.y1d4{bottom:373.785000px;}
.yaa{bottom:375.225000px;}
.y58{bottom:377.025000px;}
.y124{bottom:378.825000px;}
.yf4{bottom:379.545000px;}
.y91{bottom:382.785000px;}
.y163{bottom:384.225000px;}
.y1a8{bottom:391.065000px;}
.y170{bottom:391.785000px;}
.y6f{bottom:392.505000px;}
.y188{bottom:393.225000px;}
.y1d3{bottom:394.665000px;}
.y28{bottom:396.105000px;}
.y57{bottom:398.985000px;}
.ya9{bottom:403.665000px;}
.y146{bottom:406.185000px;}
.y123{bottom:407.265000px;}
.yf3{bottom:407.985000px;}
.y1a7{bottom:411.585000px;}
.y1d2{bottom:415.185000px;}
.y90{bottom:420.225000px;}
.y56{bottom:420.585000px;}
.y6e{bottom:420.945000px;}
.y187{bottom:421.665000px;}
.y27{bottom:425.625000px;}
.y162{bottom:427.785000px;}
.ya8{bottom:432.105000px;}
.y1a6{bottom:432.465000px;}
.y122{bottom:435.705000px;}
.y1d1{bottom:436.065000px;}
.yf2{bottom:436.425000px;}
.yd3{bottom:441.105000px;}
.y55{bottom:442.545000px;}
.y144{bottom:443.625000px;}
.y24{bottom:447.585000px;}
.y8f{bottom:448.665000px;}
.y6d{bottom:449.430000px;}
.y161{bottom:449.790000px;}
.y186{bottom:450.150000px;}
.y1a5{bottom:453.030000px;}
.y1d0{bottom:456.630000px;}
.ya7{bottom:460.590000px;}
.y121{bottom:464.190000px;}
.y54{bottom:464.550000px;}
.y160{bottom:471.390000px;}
.yf1{bottom:473.910000px;}
.y8e{bottom:477.150000px;}
.y1cf{bottom:477.510000px;}
.y6c{bottom:477.870000px;}
.y185{bottom:478.590000px;}
.yd2{bottom:478.950000px;}
.y143{bottom:481.110000px;}
.y53{bottom:486.150000px;}
.ya6{bottom:489.030000px;}
.y120{bottom:492.990000px;}
.y15f{bottom:493.350000px;}
.y23{bottom:493.710000px;}
.y1a4{bottom:494.430000px;}
.y1ce{bottom:498.030000px;}
.ycf{bottom:504.150000px;}
.y8d{bottom:505.590000px;}
.y6b{bottom:506.310000px;}
.y184{bottom:507.030000px;}
.y52{bottom:508.110000px;}
.yf0{bottom:511.350000px;}
.y15e{bottom:515.310000px;}
.ya5{bottom:517.470000px;}
.y13b{bottom:518.550000px;}
.y1cd{bottom:518.910000px;}
.y21{bottom:519.990000px;}
.y11f{bottom:521.430000px;}
.y51{bottom:530.070000px;}
.y8c{bottom:534.030000px;}
.y6a{bottom:534.750000px;}
.y1a3{bottom:535.830000px;}
.y15d{bottom:536.910000px;}
.y1cc{bottom:539.430000px;}
.yef{bottom:539.790000px;}
.y183{bottom:544.470000px;}
.ya4{bottom:546.270000px;}
.y1e{bottom:547.710000px;}
.y11e{bottom:549.870000px;}
.y50{bottom:551.670000px;}
.y13f{bottom:555.990000px;}
.y1a2{bottom:556.710000px;}
.y15c{bottom:558.870000px;}
.y1cb{bottom:560.310000px;}
.y8b{bottom:562.470000px;}
.y69{bottom:563.190000px;}
.yee{bottom:568.230000px;}
.y4f{bottom:573.630000px;}
.ya3{bottom:574.710000px;}
.y1a1{bottom:577.260000px;}
.y11d{bottom:578.340000px;}
.y15b{bottom:580.500000px;}
.y1ca{bottom:580.860000px;}
.y182{bottom:582.300000px;}
.y8a{bottom:591.300000px;}
.y68{bottom:591.660000px;}
.y13e{bottom:593.820000px;}
.y4e{bottom:595.260000px;}
.y13{bottom:595.980000px;}
.yed{bottom:596.700000px;}
.y1a0{bottom:598.140000px;}
.y1c9{bottom:601.740000px;}
.y15a{bottom:602.460000px;}
.ya2{bottom:603.180000px;}
.y11c{bottom:606.780000px;}
.yce{bottom:608.220000px;}
.y181{bottom:610.740000px;}
.y4d{bottom:617.220000px;}
.y19f{bottom:618.660000px;}
.y89{bottom:619.740000px;}
.y67{bottom:620.100000px;}
.y1c8{bottom:622.260000px;}
.y159{bottom:624.420000px;}
.yec{bottom:625.140000px;}
.y16f{bottom:628.740000px;}
.y13d{bottom:631.260000px;}
.ya1{bottom:631.620000px;}
.y11b{bottom:635.220000px;}
.y4c{bottom:639.180000px;}
.y19e{bottom:639.540000px;}
.y1c7{bottom:643.140000px;}
.y158{bottom:646.020000px;}
.y88{bottom:648.180000px;}
.yeb{bottom:653.580000px;}
.y16e{bottom:657.180000px;}
.y66{bottom:657.540000px;}
.ya0{bottom:660.060000px;}
.y4b{bottom:660.780000px;}
.y11a{bottom:663.660000px;}
.y180{bottom:667.620000px;}
.y157{bottom:667.980000px;}
.y138{bottom:668.700000px;}
.y87{bottom:676.620000px;}
.y19d{bottom:680.940000px;}
.yea{bottom:682.380000px;}
.y4a{bottom:682.740000px;}
.y1c6{bottom:684.540000px;}
.y16d{bottom:685.620000px;}
.y156{bottom:689.940000px;}
.y119{bottom:692.100000px;}
.y65{bottom:694.980000px;}
.yc6{bottom:695.340000px;}
.y17f{bottom:696.060000px;}
.y9f{bottom:697.500000px;}
.y19c{bottom:701.490000px;}
.y49{bottom:704.370000px;}
.y86{bottom:705.090000px;}
.y13a{bottom:706.170000px;}
.ye9{bottom:710.850000px;}
.y155{bottom:711.570000px;}
.y16c{bottom:714.090000px;}
.y118{bottom:720.570000px;}
.y19b{bottom:722.370000px;}
.y64{bottom:723.450000px;}
.y17e{bottom:724.530000px;}
.y1c5{bottom:725.970000px;}
.y48{bottom:726.330000px;}
.y85{bottom:733.530000px;}
.y9e{bottom:734.970000px;}
.ye8{bottom:739.290000px;}
.y16b{bottom:742.530000px;}
.y19a{bottom:742.890000px;}
.y134{bottom:743.610000px;}
.y1c4{bottom:746.490000px;}
.y47{bottom:748.290000px;}
.y117{bottom:749.010000px;}
.y17d{bottom:752.970000px;}
.y154{bottom:755.130000px;}
.y63{bottom:760.890000px;}
.y9d{bottom:763.410000px;}
.y199{bottom:763.770000px;}
.y1c3{bottom:767.370000px;}
.ye7{bottom:767.730000px;}
.y46{bottom:769.890000px;}
.y84{bottom:770.970000px;}
.y153{bottom:778.170000px;}
.y136{bottom:781.050000px;}
.y198{bottom:784.290000px;}
.y116{bottom:786.450000px;}
.y1c2{bottom:787.890000px;}
.y17c{bottom:790.410000px;}
.y45{bottom:791.850000px;}
.ye6{bottom:796.170000px;}
.y83{bottom:799.410000px;}
.y9c{bottom:800.850000px;}
.y197{bottom:805.170000px;}
.y1c1{bottom:808.770000px;}
.y44{bottom:813.450000px;}
.y115{bottom:814.890000px;}
.y17b{bottom:818.850000px;}
.y132{bottom:819.210000px;}
.y152{bottom:821.730000px;}
.ye5{bottom:824.610000px;}
.y196{bottom:825.690000px;}
.y82{bottom:827.895000px;}
.y1c0{bottom:829.335000px;}
.y12{bottom:830.055000px;}
.ybd{bottom:834.015000px;}
.y43{bottom:835.455000px;}
.y9b{bottom:838.335000px;}
.y114{bottom:843.375000px;}
.y195{bottom:846.615000px;}
.y17a{bottom:847.335000px;}
.y1bf{bottom:850.215000px;}
.ye4{bottom:853.095000px;}
.y11{bottom:853.815000px;}
.y81{bottom:856.335000px;}
.y42{bottom:857.415000px;}
.y151{bottom:866.775000px;}
.y194{bottom:867.135000px;}
.y1be{bottom:870.735000px;}
.y113{bottom:871.815000px;}
.y9a{bottom:875.775000px;}
.y41{bottom:879.015000px;}
.ye3{bottom:881.535000px;}
.y80{bottom:884.775000px;}
.y193{bottom:888.015000px;}
.y10{bottom:891.615000px;}
.y112{bottom:900.255000px;}
.y40{bottom:900.975000px;}
.y150{bottom:904.215000px;}
.y131{bottom:905.655000px;}
.y192{bottom:908.535000px;}
.y1bd{bottom:912.135000px;}
.y7f{bottom:913.215000px;}
.ye2{bottom:918.975000px;}
.y3f{bottom:922.575000px;}
.yf{bottom:925.095000px;}
.y191{bottom:929.415000px;}
.y14f{bottom:932.655000px;}
.y1bc{bottom:933.015000px;}
.y111{bottom:938.055000px;}
.y7e{bottom:941.655000px;}
.y130{bottom:943.095000px;}
.y3e{bottom:944.535000px;}
.y1bb{bottom:953.565000px;}
.ye1{bottom:956.445000px;}
.y14e{bottom:961.125000px;}
.ye{bottom:962.925000px;}
.y10f{bottom:963.645000px;}
.y3d{bottom:966.525000px;}
.y10e{bottom:967.245000px;}
.y7d{bottom:970.125000px;}
.y110{bottom:973.725000px;}
.y1ba{bottom:974.445000px;}
.y12f{bottom:980.565000px;}
.ydf{bottom:981.645000px;}
.y3c{bottom:988.125000px;}
.yd{bottom:988.845000px;}
.y179{bottom:989.565000px;}
.y1b9{bottom:994.965000px;}
.y10d{bottom:996.045000px;}
.y7c{bottom:998.565000px;}
.ybb{bottom:1007.205000px;}
.y12e{bottom:1009.005000px;}
.y3b{bottom:1010.085000px;}
.y1b8{bottom:1015.845000px;}
.yde{bottom:1020.525000px;}
.yc{bottom:1021.245000px;}
.y10c{bottom:1021.965000px;}
.y10b{bottom:1025.205000px;}
.y7b{bottom:1027.005000px;}
.y3a{bottom:1032.045000px;}
.y1b7{bottom:1036.365000px;}
.y12d{bottom:1037.445000px;}
.ydd{bottom:1039.965000px;}
.y109{bottom:1050.405000px;}
.y39{bottom:1053.645000px;}
.y108{bottom:1054.005000px;}
.y7a{bottom:1055.445000px;}
.yb{bottom:1055.805000px;}
.y1b6{bottom:1057.245000px;}
.ydc{bottom:1059.765000px;}
.y10a{bottom:1060.485000px;}
.y12c{bottom:1074.885000px;}
.y38{bottom:1075.605000px;}
.y1b5{bottom:1077.765000px;}
.ydb{bottom:1079.610000px;}
.y107{bottom:1079.970000px;}
.y106{bottom:1083.210000px;}
.y79{bottom:1083.930000px;}
.ya{bottom:1090.770000px;}
.y37{bottom:1097.250000px;}
.y1b4{bottom:1098.690000px;}
.yda{bottom:1099.410000px;}
.yba{bottom:1099.770000px;}
.y4{bottom:1112.010000px;}
.y78{bottom:1112.730000px;}
.y36{bottom:1119.210000px;}
.y3{bottom:1135.050000px;}
.y105{bottom:1137.570000px;}
.y1b3{bottom:1140.090000px;}
.y104{bottom:1140.810000px;}
.y35{bottom:1141.170000px;}
.y2{bottom:1162.410000px;}
.y1{bottom:1189.410000px;}
.y34{bottom:1193.730000px;}
.h5{height:8.640000px;}
.h7{height:16.596000px;}
.h21{height:18.720000px;}
.h23{height:19.080000px;}
.h24{height:19.116000px;}
.h18{height:20.880000px;}
.h36{height:21.600000px;}
.h37{height:21.636000px;}
.h12{height:21.960000px;}
.h34{height:21.996000px;}
.h11{height:23.400000px;}
.ha{height:33.528516px;}
.h19{height:34.200000px;}
.hc{height:34.363828px;}
.h1c{height:34.560000px;}
.h2c{height:37.440000px;}
.h2e{height:37.476000px;}
.h33{height:37.800000px;}
.h30{height:37.836000px;}
.h25{height:38.160000px;}
.h15{height:38.608594px;}
.h28{height:40.048594px;}
.h13{height:41.796000px;}
.h35{height:43.560000px;}
.h10{height:43.596000px;}
.h1a{height:43.735781px;}
.h22{height:46.736719px;}
.h14{height:47.264766px;}
.hf{height:47.901094px;}
.h16{height:48.224531px;}
.hd{height:50.414062px;}
.h17{height:50.715000px;}
.h8{height:50.800781px;}
.h38{height:52.066406px;}
.h6{height:54.426094px;}
.h26{height:55.825312px;}
.h29{height:60.861094px;}
.hb{height:61.723828px;}
.h3{height:61.742812px;}
.h2a{height:63.756000px;}
.h4{height:65.884219px;}
.h27{height:68.785313px;}
.h2b{height:74.880000px;}
.h2d{height:74.916000px;}
.h32{height:75.276000px;}
.h9{height:84.329297px;}
.h20{height:86.400000px;}
.h1d{height:91.836000px;}
.h1b{height:103.356000px;}
.h1f{height:137.952000px;}
.h2{height:141.582656px;}
.h31{height:149.796000px;}
.h2f{height:150.150000px;}
.h1e{height:172.470000px;}
.he{height:218.190000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:108.756000px;}
.w12{width:109.116000px;}
.wb{width:120.996000px;}
.wf{width:133.236000px;}
.w13{width:141.552000px;}
.wa{width:164.595000px;}
.w6{width:164.955000px;}
.we{width:169.275000px;}
.wd{width:224.385000px;}
.w8{width:227.625000px;}
.w9{width:254.265000px;}
.w10{width:277.350000px;}
.w4{width:339.270000px;}
.w3{width:341.430000px;}
.w7{width:482.610000px;}
.wc{width:578.775000px;}
.w5{width:679.245000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x24{left:5.796000px;}
.x14{left:7.560000px;}
.x5{left:8.640000px;}
.x3b{left:17.640000px;}
.x39{left:20.520000px;}
.x2a{left:21.600000px;}
.x2e{left:23.040000px;}
.x2b{left:25.200000px;}
.x33{left:27.360000px;}
.x2f{left:29.880000px;}
.x37{left:31.680000px;}
.x35{left:32.760000px;}
.x30{left:35.640000px;}
.x31{left:37.080000px;}
.x3a{left:39.990000px;}
.x34{left:41.430000px;}
.x26{left:44.640000px;}
.x32{left:46.830000px;}
.x38{left:49.710000px;}
.x36{left:52.230000px;}
.x2c{left:54.000000px;}
.x29{left:61.230000px;}
.x2d{left:70.950000px;}
.x16{left:96.876000px;}
.x4{left:106.235987px;}
.x18{left:113.075987px;}
.x10{left:120.995987px;}
.x12{left:122.076000px;}
.xd{left:127.475987px;}
.x11{left:133.271987px;}
.x3e{left:138.671987px;}
.xf{left:143.709000px;}
.x8{left:147.671987px;}
.x3f{left:148.751987px;}
.xb{left:174.314987px;}
.x1{left:178.994987px;}
.x21{left:183.315000px;}
.x1b{left:187.994987px;}
.x19{left:212.474987px;}
.x1a{left:216.434987px;}
.x17{left:217.875000px;}
.xc{left:245.264987px;}
.x3c{left:269.024987px;}
.x13{left:287.745000px;}
.x7{left:303.270000px;}
.x3d{left:347.909987px;}
.x9{left:348.989987px;}
.xe{left:359.069987px;}
.x3{left:390.389987px;}
.x25{left:405.540000px;}
.x22{left:407.700000px;}
.x2{left:422.819987px;}
.xa{left:446.579987px;}
.x6{left:447.660000px;}
.x1d{left:453.059987px;}
.x27{left:514.290000px;}
.x15{left:516.090000px;}
.x20{left:557.489987px;}
.x1c{left:573.734987px;}
.x23{left:576.975000px;}
.x28{left:623.415000px;}
.x1e{left:776.489987px;}
.x1f{left:780.449987px;}
@media print{
.v1{vertical-align:-24.320000pt;}
.v7{vertical-align:-23.040000pt;}
.v6{vertical-align:-11.520000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v5{vertical-align:11.520000pt;}
.v2{vertical-align:24.320000pt;}
.lsa{letter-spacing:-0.412267pt;}
.ls8{letter-spacing:-0.406933pt;}
.ls5{letter-spacing:-0.340267pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.271467pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.017920pt;}
.ls9{letter-spacing:0.117760pt;}
.ls16{letter-spacing:0.135467pt;}
.ls15{letter-spacing:0.271467pt;}
.ls7{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.537600pt;}
.ls1{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.746667pt;}
.ls14{letter-spacing:2.638080pt;}
.ls11{letter-spacing:2.744747pt;}
.ls13{letter-spacing:10.086400pt;}
.lsf{letter-spacing:13.943040pt;}
.ls10{letter-spacing:15.223040pt;}
.ls12{letter-spacing:17.173760pt;}
.lsd{letter-spacing:27.162027pt;}
.lse{letter-spacing:33.562027pt;}
.lsb{letter-spacing:36.122027pt;}
.ls3{letter-spacing:55.439360pt;}
.wsa{word-spacing:-58.880000pt;}
.ws0{word-spacing:-19.302400pt;}
.ws4{word-spacing:-16.448000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws13{word-spacing:-14.991467pt;}
.ws5{word-spacing:-14.720000pt;}
.ws14{word-spacing:-14.448533pt;}
.ws6{word-spacing:-13.306880pt;}
.wse{word-spacing:-12.953600pt;}
.ws9{word-spacing:-12.894613pt;}
.ws1{word-spacing:-10.652373pt;}
.ws3{word-spacing:-10.240000pt;}
.wsd{word-spacing:-9.292800pt;}
.ws12{word-spacing:-0.616960pt;}
.ws7{word-spacing:-0.058880pt;}
.ws8{word-spacing:0.000000pt;}
.wsf{word-spacing:0.663040pt;}
.ws11{word-spacing:3.223040pt;}
.wsc{word-spacing:3.351040pt;}
.wsb{word-spacing:11.720960pt;}
.ws10{word-spacing:11.848960pt;}
._1a{margin-left:-8.677973pt;}
._18{margin-left:-5.309440pt;}
._19{margin-left:-4.410880pt;}
._9{margin-left:-3.420160pt;}
._a{margin-left:-2.355200pt;}
._3{margin-left:-1.313280pt;}
._0{width:1.039360pt;}
._1{width:2.740907pt;}
._c{width:3.636053pt;}
._e{width:4.816213pt;}
._10{width:5.729280pt;}
._8{width:6.848000pt;}
._7{width:7.848960pt;}
._6{width:8.967680pt;}
._d{width:9.871360pt;}
._5{width:11.335680pt;}
._4{width:12.364800pt;}
._f{width:13.788160pt;}
._26{width:14.725120pt;}
._b{width:15.720960pt;}
._16{width:16.721920pt;}
._17{width:17.932373pt;}
._11{width:19.371520pt;}
._12{width:20.508160pt;}
._15{width:21.568000pt;}
._13{width:22.551040pt;}
._14{width:23.864320pt;}
._21{width:33.384960pt;}
._22{width:34.291200pt;}
._25{width:39.091200pt;}
._24{width:40.880640pt;}
._20{width:45.857280pt;}
._1f{width:47.009280pt;}
._1e{width:52.170240pt;}
._1b{width:58.168320pt;}
._23{width:59.750400pt;}
._1c{width:169.981440pt;}
._1d{width:217.433600pt;}
._2{width:351.354027pt;}
.fs2{font-size:21.760000pt;}
.fs8{font-size:37.120000pt;}
.fs7{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs9{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.fs6{font-size:106.240000pt;}
.fs0{font-size:170.240000pt;}
.y6{bottom:-3.840000pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:2.880000pt;}
.y8{bottom:3.200000pt;}
.yaf{bottom:3.840000pt;}
.yae{bottom:4.800000pt;}
.y1d{bottom:5.440000pt;}
.y20{bottom:5.760000pt;}
.y167{bottom:5.786667pt;}
.y26{bottom:5.800000pt;}
.y22{bottom:6.720000pt;}
.y137{bottom:11.520000pt;}
.y145{bottom:11.560000pt;}
.y140{bottom:11.840000pt;}
.yb1{bottom:16.960000pt;}
.yb2{bottom:17.920000pt;}
.yb9{bottom:18.240000pt;}
.ycd{bottom:18.266667pt;}
.y25{bottom:18.920000pt;}
.ye0{bottom:20.160000pt;}
.y1c{bottom:24.960000pt;}
.y1f{bottom:24.986667pt;}
.y9{bottom:27.200000pt;}
.yd1{bottom:33.280000pt;}
.yb8{bottom:33.594667pt;}
.yc5{bottom:33.600000pt;}
.ycc{bottom:33.626667pt;}
.y133{bottom:34.920000pt;}
.y1b{bottom:44.480000pt;}
.y135{bottom:44.800000pt;}
.y139{bottom:44.826667pt;}
.y148{bottom:45.146667pt;}
.yd0{bottom:48.640000pt;}
.yb7{bottom:48.954667pt;}
.yc4{bottom:48.960000pt;}
.ycb{bottom:48.986667pt;}
.y7{bottom:50.880000pt;}
.y1a{bottom:63.680000pt;}
.yca{bottom:64.026667pt;}
.yc3{bottom:64.320000pt;}
.yb6{bottom:64.354667pt;}
.ybc{bottom:69.160000pt;}
.y5{bottom:75.232000pt;}
.yc9{bottom:79.386667pt;}
.yc2{bottom:79.680000pt;}
.yb5{bottom:79.714667pt;}
.y19{bottom:83.200000pt;}
.yc8{bottom:94.746667pt;}
.yc1{bottom:95.040000pt;}
.y18{bottom:102.426667pt;}
.yc7{bottom:110.106667pt;}
.yc0{bottom:110.426667pt;}
.y142{bottom:111.400000pt;}
.y13c{bottom:111.706667pt;}
.y1de{bottom:112.032000pt;}
.yb4{bottom:112.352000pt;}
.y77{bottom:112.992000pt;}
.y14d{bottom:113.312000pt;}
.y178{bottom:120.672000pt;}
.y17{bottom:121.946667pt;}
.y62{bottom:121.952000pt;}
.y33{bottom:124.832000pt;}
.ybf{bottom:125.786667pt;}
.y103{bottom:126.112000pt;}
.y1b2{bottom:126.752000pt;}
.y99{bottom:129.952000pt;}
.yd9{bottom:131.232000pt;}
.y16a{bottom:135.706667pt;}
.y76{bottom:138.266667pt;}
.y14c{bottom:138.586667pt;}
.ybe{bottom:140.826667pt;}
.y61{bottom:141.146667pt;}
.y16{bottom:141.466667pt;}
.y12b{bottom:143.706667pt;}
.y32{bottom:144.026667pt;}
.y1b1{bottom:144.986667pt;}
.y177{bottom:145.946667pt;}
.y190{bottom:147.226667pt;}
.y1dd{bottom:148.186667pt;}
.y102{bottom:148.826667pt;}
.y101{bottom:151.706667pt;}
.y98{bottom:155.226667pt;}
.yd8{bottom:156.506667pt;}
.y15{bottom:160.666667pt;}
.y31{bottom:163.546667pt;}
.y1dc{bottom:166.746667pt;}
.y12a{bottom:168.986667pt;}
.y176{bottom:171.226667pt;}
.y14b{bottom:171.866667pt;}
.y18f{bottom:172.506667pt;}
.y100{bottom:177.346667pt;}
.y60{bottom:179.906667pt;}
.y14{bottom:180.186667pt;}
.y97{bottom:180.546667pt;}
.yd7{bottom:181.826667pt;}
.y30{bottom:183.106667pt;}
.y1db{bottom:185.026667pt;}
.y75{bottom:188.866667pt;}
.y129{bottom:194.306667pt;}
.y175{bottom:196.546667pt;}
.y18e{bottom:197.826667pt;}
.y5f{bottom:199.426667pt;}
.y1b0{bottom:200.386667pt;}
.y2f{bottom:202.306667pt;}
.y1da{bottom:203.586667pt;}
.yb0{bottom:205.186667pt;}
.y96{bottom:205.826667pt;}
.yd6{bottom:207.106667pt;}
.yfe{bottom:207.746667pt;}
.yfd{bottom:208.066667pt;}
.yfc{bottom:210.946667pt;}
.y74{bottom:214.146667pt;}
.yff{bottom:216.706667pt;}
.y1af{bottom:218.626667pt;}
.y5e{bottom:218.946667pt;}
.y128{bottom:219.586667pt;}
.y2e{bottom:221.826667pt;}
.y18d{bottom:223.106667pt;}
.y169{bottom:225.026667pt;}
.y14a{bottom:227.586667pt;}
.y95{bottom:231.106667pt;}
.yd5{bottom:232.386667pt;}
.yad{bottom:236.226667pt;}
.y1ae{bottom:237.186667pt;}
.y5d{bottom:238.146667pt;}
.y73{bottom:239.426667pt;}
.y1d9{bottom:240.386667pt;}
.y2d{bottom:241.026667pt;}
.yfa{bottom:241.346667pt;}
.yf9{bottom:241.666667pt;}
.yf8{bottom:244.546667pt;}
.y127{bottom:244.866667pt;}
.y174{bottom:247.106667pt;}
.y18c{bottom:248.386667pt;}
.yfb{bottom:250.306667pt;}
.y1ad{bottom:255.426667pt;}
.y94{bottom:256.386667pt;}
.y5c{bottom:257.666667pt;}
.y1d8{bottom:258.626667pt;}
.y2c{bottom:260.546667pt;}
.y147{bottom:260.866667pt;}
.y168{bottom:264.066667pt;}
.y173{bottom:272.386667pt;}
.y72{bottom:272.706667pt;}
.y18b{bottom:273.666667pt;}
.y1ac{bottom:273.986667pt;}
.yac{bottom:274.946667pt;}
.yf7{bottom:275.586667pt;}
.y5b{bottom:276.866667pt;}
.y1d7{bottom:277.186667pt;}
.y126{bottom:278.146667pt;}
.yf6{bottom:278.466667pt;}
.y2b{bottom:280.066667pt;}
.y93{bottom:281.666667pt;}
.yd4{bottom:282.946667pt;}
.y166{bottom:283.266667pt;}
.y1ab{bottom:292.253333pt;}
.y149{bottom:294.173333pt;}
.y1d6{bottom:295.453333pt;}
.y5a{bottom:296.413333pt;}
.y172{bottom:297.693333pt;}
.y71{bottom:298.013333pt;}
.y18a{bottom:298.973333pt;}
.y2a{bottom:299.293333pt;}
.y165{bottom:302.813333pt;}
.y92{bottom:306.973333pt;}
.yab{bottom:308.253333pt;}
.y1aa{bottom:310.813333pt;}
.y125{bottom:311.453333pt;}
.yf5{bottom:312.093333pt;}
.y1d5{bottom:314.013333pt;}
.y59{bottom:315.933333pt;}
.y29{bottom:318.813333pt;}
.y164{bottom:322.013333pt;}
.y171{bottom:322.973333pt;}
.y70{bottom:323.293333pt;}
.y189{bottom:324.253333pt;}
.y141{bottom:327.773333pt;}
.y1a9{bottom:329.053333pt;}
.y1d4{bottom:332.253333pt;}
.yaa{bottom:333.533333pt;}
.y58{bottom:335.133333pt;}
.y124{bottom:336.733333pt;}
.yf4{bottom:337.373333pt;}
.y91{bottom:340.253333pt;}
.y163{bottom:341.533333pt;}
.y1a8{bottom:347.613333pt;}
.y170{bottom:348.253333pt;}
.y6f{bottom:348.893333pt;}
.y188{bottom:349.533333pt;}
.y1d3{bottom:350.813333pt;}
.y28{bottom:352.093333pt;}
.y57{bottom:354.653333pt;}
.ya9{bottom:358.813333pt;}
.y146{bottom:361.053333pt;}
.y123{bottom:362.013333pt;}
.yf3{bottom:362.653333pt;}
.y1a7{bottom:365.853333pt;}
.y1d2{bottom:369.053333pt;}
.y90{bottom:373.533333pt;}
.y56{bottom:373.853333pt;}
.y6e{bottom:374.173333pt;}
.y187{bottom:374.813333pt;}
.y27{bottom:378.333333pt;}
.y162{bottom:380.253333pt;}
.ya8{bottom:384.093333pt;}
.y1a6{bottom:384.413333pt;}
.y122{bottom:387.293333pt;}
.y1d1{bottom:387.613333pt;}
.yf2{bottom:387.933333pt;}
.yd3{bottom:392.093333pt;}
.y55{bottom:393.373333pt;}
.y144{bottom:394.333333pt;}
.y24{bottom:397.853333pt;}
.y8f{bottom:398.813333pt;}
.y6d{bottom:399.493333pt;}
.y161{bottom:399.813333pt;}
.y186{bottom:400.133333pt;}
.y1a5{bottom:402.693333pt;}
.y1d0{bottom:405.893333pt;}
.ya7{bottom:409.413333pt;}
.y121{bottom:412.613333pt;}
.y54{bottom:412.933333pt;}
.y160{bottom:419.013333pt;}
.yf1{bottom:421.253333pt;}
.y8e{bottom:424.133333pt;}
.y1cf{bottom:424.453333pt;}
.y6c{bottom:424.773333pt;}
.y185{bottom:425.413333pt;}
.yd2{bottom:425.733333pt;}
.y143{bottom:427.653333pt;}
.y53{bottom:432.133333pt;}
.ya6{bottom:434.693333pt;}
.y120{bottom:438.213333pt;}
.y15f{bottom:438.533333pt;}
.y23{bottom:438.853333pt;}
.y1a4{bottom:439.493333pt;}
.y1ce{bottom:442.693333pt;}
.ycf{bottom:448.133333pt;}
.y8d{bottom:449.413333pt;}
.y6b{bottom:450.053333pt;}
.y184{bottom:450.693333pt;}
.y52{bottom:451.653333pt;}
.yf0{bottom:454.533333pt;}
.y15e{bottom:458.053333pt;}
.ya5{bottom:459.973333pt;}
.y13b{bottom:460.933333pt;}
.y1cd{bottom:461.253333pt;}
.y21{bottom:462.213333pt;}
.y11f{bottom:463.493333pt;}
.y51{bottom:471.173333pt;}
.y8c{bottom:474.693333pt;}
.y6a{bottom:475.333333pt;}
.y1a3{bottom:476.293333pt;}
.y15d{bottom:477.253333pt;}
.y1cc{bottom:479.493333pt;}
.yef{bottom:479.813333pt;}
.y183{bottom:483.973333pt;}
.ya4{bottom:485.573333pt;}
.y1e{bottom:486.853333pt;}
.y11e{bottom:488.773333pt;}
.y50{bottom:490.373333pt;}
.y13f{bottom:494.213333pt;}
.y1a2{bottom:494.853333pt;}
.y15c{bottom:496.773333pt;}
.y1cb{bottom:498.053333pt;}
.y8b{bottom:499.973333pt;}
.y69{bottom:500.613333pt;}
.yee{bottom:505.093333pt;}
.y4f{bottom:509.893333pt;}
.ya3{bottom:510.853333pt;}
.y1a1{bottom:513.120000pt;}
.y11d{bottom:514.080000pt;}
.y15b{bottom:516.000000pt;}
.y1ca{bottom:516.320000pt;}
.y182{bottom:517.600000pt;}
.y8a{bottom:525.600000pt;}
.y68{bottom:525.920000pt;}
.y13e{bottom:527.840000pt;}
.y4e{bottom:529.120000pt;}
.y13{bottom:529.760000pt;}
.yed{bottom:530.400000pt;}
.y1a0{bottom:531.680000pt;}
.y1c9{bottom:534.880000pt;}
.y15a{bottom:535.520000pt;}
.ya2{bottom:536.160000pt;}
.y11c{bottom:539.360000pt;}
.yce{bottom:540.640000pt;}
.y181{bottom:542.880000pt;}
.y4d{bottom:548.640000pt;}
.y19f{bottom:549.920000pt;}
.y89{bottom:550.880000pt;}
.y67{bottom:551.200000pt;}
.y1c8{bottom:553.120000pt;}
.y159{bottom:555.040000pt;}
.yec{bottom:555.680000pt;}
.y16f{bottom:558.880000pt;}
.y13d{bottom:561.120000pt;}
.ya1{bottom:561.440000pt;}
.y11b{bottom:564.640000pt;}
.y4c{bottom:568.160000pt;}
.y19e{bottom:568.480000pt;}
.y1c7{bottom:571.680000pt;}
.y158{bottom:574.240000pt;}
.y88{bottom:576.160000pt;}
.yeb{bottom:580.960000pt;}
.y16e{bottom:584.160000pt;}
.y66{bottom:584.480000pt;}
.ya0{bottom:586.720000pt;}
.y4b{bottom:587.360000pt;}
.y11a{bottom:589.920000pt;}
.y180{bottom:593.440000pt;}
.y157{bottom:593.760000pt;}
.y138{bottom:594.400000pt;}
.y87{bottom:601.440000pt;}
.y19d{bottom:605.280000pt;}
.yea{bottom:606.560000pt;}
.y4a{bottom:606.880000pt;}
.y1c6{bottom:608.480000pt;}
.y16d{bottom:609.440000pt;}
.y156{bottom:613.280000pt;}
.y119{bottom:615.200000pt;}
.y65{bottom:617.760000pt;}
.yc6{bottom:618.080000pt;}
.y17f{bottom:618.720000pt;}
.y9f{bottom:620.000000pt;}
.y19c{bottom:623.546667pt;}
.y49{bottom:626.106667pt;}
.y86{bottom:626.746667pt;}
.y13a{bottom:627.706667pt;}
.ye9{bottom:631.866667pt;}
.y155{bottom:632.506667pt;}
.y16c{bottom:634.746667pt;}
.y118{bottom:640.506667pt;}
.y19b{bottom:642.106667pt;}
.y64{bottom:643.066667pt;}
.y17e{bottom:644.026667pt;}
.y1c5{bottom:645.306667pt;}
.y48{bottom:645.626667pt;}
.y85{bottom:652.026667pt;}
.y9e{bottom:653.306667pt;}
.ye8{bottom:657.146667pt;}
.y16b{bottom:660.026667pt;}
.y19a{bottom:660.346667pt;}
.y134{bottom:660.986667pt;}
.y1c4{bottom:663.546667pt;}
.y47{bottom:665.146667pt;}
.y117{bottom:665.786667pt;}
.y17d{bottom:669.306667pt;}
.y154{bottom:671.226667pt;}
.y63{bottom:676.346667pt;}
.y9d{bottom:678.586667pt;}
.y199{bottom:678.906667pt;}
.y1c3{bottom:682.106667pt;}
.ye7{bottom:682.426667pt;}
.y46{bottom:684.346667pt;}
.y84{bottom:685.306667pt;}
.y153{bottom:691.706667pt;}
.y136{bottom:694.266667pt;}
.y198{bottom:697.146667pt;}
.y116{bottom:699.066667pt;}
.y1c2{bottom:700.346667pt;}
.y17c{bottom:702.586667pt;}
.y45{bottom:703.866667pt;}
.ye6{bottom:707.706667pt;}
.y83{bottom:710.586667pt;}
.y9c{bottom:711.866667pt;}
.y197{bottom:715.706667pt;}
.y1c1{bottom:718.906667pt;}
.y44{bottom:723.066667pt;}
.y115{bottom:724.346667pt;}
.y17b{bottom:727.866667pt;}
.y132{bottom:728.186667pt;}
.y152{bottom:730.426667pt;}
.ye5{bottom:732.986667pt;}
.y196{bottom:733.946667pt;}
.y82{bottom:735.906667pt;}
.y1c0{bottom:737.186667pt;}
.y12{bottom:737.826667pt;}
.ybd{bottom:741.346667pt;}
.y43{bottom:742.626667pt;}
.y9b{bottom:745.186667pt;}
.y114{bottom:749.666667pt;}
.y195{bottom:752.546667pt;}
.y17a{bottom:753.186667pt;}
.y1bf{bottom:755.746667pt;}
.ye4{bottom:758.306667pt;}
.y11{bottom:758.946667pt;}
.y81{bottom:761.186667pt;}
.y42{bottom:762.146667pt;}
.y151{bottom:770.466667pt;}
.y194{bottom:770.786667pt;}
.y1be{bottom:773.986667pt;}
.y113{bottom:774.946667pt;}
.y9a{bottom:778.466667pt;}
.y41{bottom:781.346667pt;}
.ye3{bottom:783.586667pt;}
.y80{bottom:786.466667pt;}
.y193{bottom:789.346667pt;}
.y10{bottom:792.546667pt;}
.y112{bottom:800.226667pt;}
.y40{bottom:800.866667pt;}
.y150{bottom:803.746667pt;}
.y131{bottom:805.026667pt;}
.y192{bottom:807.586667pt;}
.y1bd{bottom:810.786667pt;}
.y7f{bottom:811.746667pt;}
.ye2{bottom:816.866667pt;}
.y3f{bottom:820.066667pt;}
.yf{bottom:822.306667pt;}
.y191{bottom:826.146667pt;}
.y14f{bottom:829.026667pt;}
.y1bc{bottom:829.346667pt;}
.y111{bottom:833.826667pt;}
.y7e{bottom:837.026667pt;}
.y130{bottom:838.306667pt;}
.y3e{bottom:839.586667pt;}
.y1bb{bottom:847.613333pt;}
.ye1{bottom:850.173333pt;}
.y14e{bottom:854.333333pt;}
.ye{bottom:855.933333pt;}
.y10f{bottom:856.573333pt;}
.y3d{bottom:859.133333pt;}
.y10e{bottom:859.773333pt;}
.y7d{bottom:862.333333pt;}
.y110{bottom:865.533333pt;}
.y1ba{bottom:866.173333pt;}
.y12f{bottom:871.613333pt;}
.ydf{bottom:872.573333pt;}
.y3c{bottom:878.333333pt;}
.yd{bottom:878.973333pt;}
.y179{bottom:879.613333pt;}
.y1b9{bottom:884.413333pt;}
.y10d{bottom:885.373333pt;}
.y7c{bottom:887.613333pt;}
.ybb{bottom:895.293333pt;}
.y12e{bottom:896.893333pt;}
.y3b{bottom:897.853333pt;}
.y1b8{bottom:902.973333pt;}
.yde{bottom:907.133333pt;}
.yc{bottom:907.773333pt;}
.y10c{bottom:908.413333pt;}
.y10b{bottom:911.293333pt;}
.y7b{bottom:912.893333pt;}
.y3a{bottom:917.373333pt;}
.y1b7{bottom:921.213333pt;}
.y12d{bottom:922.173333pt;}
.ydd{bottom:924.413333pt;}
.y109{bottom:933.693333pt;}
.y39{bottom:936.573333pt;}
.y108{bottom:936.893333pt;}
.y7a{bottom:938.173333pt;}
.yb{bottom:938.493333pt;}
.y1b6{bottom:939.773333pt;}
.ydc{bottom:942.013333pt;}
.y10a{bottom:942.653333pt;}
.y12c{bottom:955.453333pt;}
.y38{bottom:956.093333pt;}
.y1b5{bottom:958.013333pt;}
.ydb{bottom:959.653333pt;}
.y107{bottom:959.973333pt;}
.y106{bottom:962.853333pt;}
.y79{bottom:963.493333pt;}
.ya{bottom:969.573333pt;}
.y37{bottom:975.333333pt;}
.y1b4{bottom:976.613333pt;}
.yda{bottom:977.253333pt;}
.yba{bottom:977.573333pt;}
.y4{bottom:988.453333pt;}
.y78{bottom:989.093333pt;}
.y36{bottom:994.853333pt;}
.y3{bottom:1008.933333pt;}
.y105{bottom:1011.173333pt;}
.y1b3{bottom:1013.413333pt;}
.y104{bottom:1014.053333pt;}
.y35{bottom:1014.373333pt;}
.y2{bottom:1033.253333pt;}
.y1{bottom:1057.253333pt;}
.y34{bottom:1061.093333pt;}
.h5{height:7.680000pt;}
.h7{height:14.752000pt;}
.h21{height:16.640000pt;}
.h23{height:16.960000pt;}
.h24{height:16.992000pt;}
.h18{height:18.560000pt;}
.h36{height:19.200000pt;}
.h37{height:19.232000pt;}
.h12{height:19.520000pt;}
.h34{height:19.552000pt;}
.h11{height:20.800000pt;}
.ha{height:29.803125pt;}
.h19{height:30.400000pt;}
.hc{height:30.545625pt;}
.h1c{height:30.720000pt;}
.h2c{height:33.280000pt;}
.h2e{height:33.312000pt;}
.h33{height:33.600000pt;}
.h30{height:33.632000pt;}
.h25{height:33.920000pt;}
.h15{height:34.318750pt;}
.h28{height:35.598750pt;}
.h13{height:37.152000pt;}
.h35{height:38.720000pt;}
.h10{height:38.752000pt;}
.h1a{height:38.876250pt;}
.h22{height:41.543750pt;}
.h14{height:42.013125pt;}
.hf{height:42.578750pt;}
.h16{height:42.866250pt;}
.hd{height:44.812500pt;}
.h17{height:45.080000pt;}
.h8{height:45.156250pt;}
.h38{height:46.281250pt;}
.h6{height:48.378750pt;}
.h26{height:49.622500pt;}
.h29{height:54.098750pt;}
.hb{height:54.865625pt;}
.h3{height:54.882500pt;}
.h2a{height:56.672000pt;}
.h4{height:58.563750pt;}
.h27{height:61.142500pt;}
.h2b{height:66.560000pt;}
.h2d{height:66.592000pt;}
.h32{height:66.912000pt;}
.h9{height:74.959375pt;}
.h20{height:76.800000pt;}
.h1d{height:81.632000pt;}
.h1b{height:91.872000pt;}
.h1f{height:122.624000pt;}
.h2{height:125.851250pt;}
.h31{height:133.152000pt;}
.h2f{height:133.466667pt;}
.h1e{height:153.306667pt;}
.he{height:193.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:96.672000pt;}
.w12{width:96.992000pt;}
.wb{width:107.552000pt;}
.wf{width:118.432000pt;}
.w13{width:125.824000pt;}
.wa{width:146.306667pt;}
.w6{width:146.626667pt;}
.we{width:150.466667pt;}
.wd{width:199.453333pt;}
.w8{width:202.333333pt;}
.w9{width:226.013333pt;}
.w10{width:246.533333pt;}
.w4{width:301.573333pt;}
.w3{width:303.493333pt;}
.w7{width:428.986667pt;}
.wc{width:514.466667pt;}
.w5{width:603.773333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x24{left:5.152000pt;}
.x14{left:6.720000pt;}
.x5{left:7.680000pt;}
.x3b{left:15.680000pt;}
.x39{left:18.240000pt;}
.x2a{left:19.200000pt;}
.x2e{left:20.480000pt;}
.x2b{left:22.400000pt;}
.x33{left:24.320000pt;}
.x2f{left:26.560000pt;}
.x37{left:28.160000pt;}
.x35{left:29.120000pt;}
.x30{left:31.680000pt;}
.x31{left:32.960000pt;}
.x3a{left:35.546667pt;}
.x34{left:36.826667pt;}
.x26{left:39.680000pt;}
.x32{left:41.626667pt;}
.x38{left:44.186667pt;}
.x36{left:46.426667pt;}
.x2c{left:48.000000pt;}
.x29{left:54.426667pt;}
.x2d{left:63.066667pt;}
.x16{left:86.112000pt;}
.x4{left:94.431988pt;}
.x18{left:100.511988pt;}
.x10{left:107.551988pt;}
.x12{left:108.512000pt;}
.xd{left:113.311988pt;}
.x11{left:118.463988pt;}
.x3e{left:123.263988pt;}
.xf{left:127.741333pt;}
.x8{left:131.263988pt;}
.x3f{left:132.223988pt;}
.xb{left:154.946655pt;}
.x1{left:159.106655pt;}
.x21{left:162.946667pt;}
.x1b{left:167.106655pt;}
.x19{left:188.866655pt;}
.x1a{left:192.386655pt;}
.x17{left:193.666667pt;}
.xc{left:218.013322pt;}
.x3c{left:239.133322pt;}
.x13{left:255.773333pt;}
.x7{left:269.573333pt;}
.x3d{left:309.253322pt;}
.x9{left:310.213322pt;}
.xe{left:319.173322pt;}
.x3{left:347.013322pt;}
.x25{left:360.480000pt;}
.x22{left:362.400000pt;}
.x2{left:375.839988pt;}
.xa{left:396.959988pt;}
.x6{left:397.920000pt;}
.x1d{left:402.719988pt;}
.x27{left:457.146667pt;}
.x15{left:458.746667pt;}
.x20{left:495.546655pt;}
.x1c{left:509.986655pt;}
.x23{left:512.866667pt;}
.x28{left:554.146667pt;}
.x1e{left:690.213322pt;}
.x1f{left:693.733322pt;}
}




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