
    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_0987b153cb8d54cf821cba87.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d649ef8f2d4054d8bc3a31dd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_87f92ef8171d793ff03115b2.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_50843428ab148905475e016a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_459a7f566c95bac71e02438c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_24c57e4c95a4065d4f15c123.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_cf5b54b838ee9f69dcdff9c4.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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls29{letter-spacing:-1.044000px;}
.ls2d{letter-spacing:-0.960000px;}
.ls44{letter-spacing:-0.660000px;}
.ls25{letter-spacing:-0.579600px;}
.ls39{letter-spacing:-0.533400px;}
.ls9{letter-spacing:-0.463800px;}
.ls32{letter-spacing:-0.414000px;}
.ls40{letter-spacing:-0.326400px;}
.lsa{letter-spacing:-0.310800px;}
.lse{letter-spacing:-0.303000px;}
.ls1d{letter-spacing:-0.301200px;}
.ls33{letter-spacing:-0.298200px;}
.ls37{letter-spacing:-0.268800px;}
.ls14{letter-spacing:-0.240600px;}
.lsd{letter-spacing:-0.226200px;}
.lsf{letter-spacing:-0.175800px;}
.ls42{letter-spacing:-0.172200px;}
.ls7{letter-spacing:-0.132600px;}
.ls11{letter-spacing:-0.115800px;}
.ls43{letter-spacing:-0.107400px;}
.ls24{letter-spacing:-0.078600px;}
.ls23{letter-spacing:-0.064800px;}
.ls19{letter-spacing:-0.058320px;}
.ls36{letter-spacing:-0.038160px;}
.ls5{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.023760px;}
.ls6{letter-spacing:0.038880px;}
.ls16{letter-spacing:0.061200px;}
.ls10{letter-spacing:0.140400px;}
.ls2a{letter-spacing:0.175200px;}
.ls12{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.186600px;}
.lsc{letter-spacing:0.210000px;}
.ls18{letter-spacing:0.243600px;}
.ls8{letter-spacing:0.256200px;}
.ls0{letter-spacing:0.256320px;}
.ls30{letter-spacing:0.288600px;}
.ls21{letter-spacing:0.306000px;}
.ls20{letter-spacing:0.393600px;}
.ls35{letter-spacing:0.479400px;}
.ls3e{letter-spacing:0.479520px;}
.ls38{letter-spacing:0.493200px;}
.ls3c{letter-spacing:0.544200px;}
.ls1c{letter-spacing:0.612000px;}
.ls15{letter-spacing:0.637200px;}
.ls13{letter-spacing:0.654000px;}
.ls2e{letter-spacing:0.666720px;}
.ls41{letter-spacing:0.678000px;}
.ls45{letter-spacing:0.780000px;}
.ls2f{letter-spacing:0.894000px;}
.ls3a{letter-spacing:0.900000px;}
.ls3{letter-spacing:0.934560px;}
.ls2c{letter-spacing:2.106720px;}
.ls26{letter-spacing:4.266720px;}
.ls1f{letter-spacing:5.706720px;}
.ls22{letter-spacing:6.426720px;}
.ls3d{letter-spacing:12.186720px;}
.ls28{letter-spacing:15.786720px;}
.ls34{letter-spacing:16.506720px;}
.lsb{letter-spacing:17.400000px;}
.ls1{letter-spacing:18.083520px;}
.ls2{letter-spacing:18.120000px;}
.ls1e{letter-spacing:20.106720px;}
.ls3b{letter-spacing:28.026720px;}
.ls27{letter-spacing:30.906720px;}
.ls3f{letter-spacing:42.570720px;}
.ls2b{letter-spacing:48.906720px;}
.ls31{letter-spacing:63.306720px;}
.ls17{letter-spacing:66.906720px;}
.ls4{letter-spacing:83.466720px;}
.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;}
}
.ws6{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.077120px;}
.ws2{word-spacing:-15.226440px;}
.ws4{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws5{word-spacing:-14.659440px;}
.ws3{word-spacing:-14.506440px;}
.ws19{word-spacing:-14.183760px;}
.ws11{word-spacing:-13.899360px;}
.ws16{word-spacing:-13.811760px;}
.ws10{word-spacing:-13.749360px;}
.wse{word-spacing:-13.692360px;}
.ws15{word-spacing:-13.680960px;}
.ws8{word-spacing:-13.646160px;}
.wsd{word-spacing:-13.529520px;}
.ws7{word-spacing:-13.505760px;}
.ws17{word-spacing:-13.467600px;}
.wsc{word-spacing:-13.447440px;}
.ws12{word-spacing:-13.440960px;}
.ws13{word-spacing:-13.427160px;}
.ws1b{word-spacing:-13.398360px;}
.ws9{word-spacing:-13.389960px;}
.ws1a{word-spacing:-13.333560px;}
.wsa{word-spacing:-13.265160px;}
.ws18{word-spacing:-13.236960px;}
.wsf{word-spacing:-13.204560px;}
.ws14{word-spacing:-12.926160px;}
.wsb{word-spacing:0.000000px;}
._28{margin-left:-543.317760px;}
._27{margin-left:-532.378560px;}
._3{margin-left:-510.992640px;}
._1{margin-left:-485.718240px;}
._9{margin-left:-434.899920px;}
._8{margin-left:-408.558240px;}
._7{margin-left:-313.702560px;}
._18{margin-left:-309.974400px;}
._d{margin-left:-307.041120px;}
._0{margin-left:-300.898080px;}
._17{margin-left:-292.344480px;}
._6{margin-left:-288.498240px;}
._c{margin-left:-274.782240px;}
._11{margin-left:-258.932160px;}
._10{margin-left:-241.230240px;}
._1f{margin-left:-237.810240px;}
._15{margin-left:-219.424320px;}
._22{margin-left:-217.152000px;}
._2a{margin-left:-207.008640px;}
._14{margin-left:-203.010240px;}
._21{margin-left:-200.730240px;}
._29{margin-left:-188.626080px;}
._20{margin-left:-183.427200px;}
._2f{margin-left:-178.156800px;}
._5{margin-left:-176.728320px;}
._13{margin-left:-171.004320px;}
._1b{margin-left:-169.603680px;}
._f{margin-left:-166.429440px;}
._e{margin-left:-154.494720px;}
._16{margin-left:-152.881440px;}
._4{margin-left:-150.798240px;}
._2e{margin-left:-143.130240px;}
._12{margin-left:-133.770240px;}
._2d{margin-left:-127.639440px;}
._b{margin-left:-116.658720px;}
._2c{margin-left:-110.850240px;}
._26{margin-left:-102.349440px;}
._1a{margin-left:-100.079760px;}
._a{margin-left:-91.038240px;}
._2b{margin-left:-87.989280px;}
._25{margin-left:-86.579760px;}
._24{margin-left:-83.520000px;}
._19{margin-left:-81.930240px;}
._1d{margin-left:-66.703680px;}
._1c{margin-left:-48.810240px;}
._23{margin-left:-31.559040px;}
._30{margin-left:-18.379440px;}
._43{margin-left:-11.196960px;}
._40{margin-left:-6.876960px;}
._31{margin-left:-5.133120px;}
._1e{margin-left:-3.870720px;}
._3c{margin-left:-2.868480px;}
._2{margin-left:-1.684800px;}
._34{width:1.053360px;}
._33{width:2.325600px;}
._3a{width:3.346560px;}
._38{width:4.843680px;}
._36{width:6.513840px;}
._37{width:7.634160px;}
._41{width:8.844480px;}
._3b{width:9.899760px;}
._39{width:10.937280px;}
._35{width:12.236040px;}
._3f{width:15.059520px;}
._3e{width:16.493760px;}
._32{width:17.840640px;}
._3d{width:19.009680px;}
._42{width:20.198880px;}
._47{width:21.633840px;}
._44{width:23.470080px;}
._45{width:27.190800px;}
._46{width:28.290720px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:61.596000px;}
.y31{bottom:92.196000px;}
.y65{bottom:98.136000px;}
.yaa{bottom:101.736000px;}
.yf2{bottom:105.696000px;}
.yca{bottom:107.136000px;}
.y8e{bottom:110.196000px;}
.y30{bottom:113.256000px;}
.y64{bottom:119.196000px;}
.yc2{bottom:122.436000px;}
.ya9{bottom:122.796000px;}
.yf3{bottom:124.776000px;}
.yf1{bottom:126.756000px;}
.yc9{bottom:128.196000px;}
.y8d{bottom:131.256000px;}
.y2f{bottom:134.316000px;}
.y63{bottom:140.256000px;}
.yc1{bottom:143.496000px;}
.ya8{bottom:143.856000px;}
.yf0{bottom:147.816000px;}
.yc8{bottom:149.256000px;}
.y8c{bottom:152.310000px;}
.y2e{bottom:155.370000px;}
.y62{bottom:161.310000px;}
.yc0{bottom:164.550000px;}
.ya7{bottom:164.910000px;}
.yef{bottom:168.870000px;}
.yc7{bottom:170.310000px;}
.y8b{bottom:173.370000px;}
.y2d{bottom:176.430000px;}
.y61{bottom:182.370000px;}
.ybf{bottom:185.610000px;}
.ya6{bottom:185.970000px;}
.yee{bottom:189.930000px;}
.yc6{bottom:191.370000px;}
.y8a{bottom:194.430000px;}
.y2c{bottom:197.490000px;}
.y60{bottom:203.430000px;}
.ybe{bottom:206.670000px;}
.ya5{bottom:207.030000px;}
.yed{bottom:210.990000px;}
.yc5{bottom:212.430000px;}
.y89{bottom:215.490000px;}
.y2b{bottom:218.550000px;}
.y5f{bottom:224.490000px;}
.ybd{bottom:227.730000px;}
.ya4{bottom:228.090000px;}
.yec{bottom:232.050000px;}
.yc4{bottom:233.490000px;}
.y88{bottom:236.550000px;}
.y2a{bottom:239.610000px;}
.y5e{bottom:245.550000px;}
.ybc{bottom:248.790000px;}
.ya3{bottom:249.150000px;}
.yeb{bottom:253.110000px;}
.yc3{bottom:254.550000px;}
.y87{bottom:257.610000px;}
.y29{bottom:260.670000px;}
.yb3{bottom:266.610000px;}
.ybb{bottom:269.850000px;}
.ya2{bottom:270.210000px;}
.yea{bottom:274.215000px;}
.y5d{bottom:275.655000px;}
.y86{bottom:278.715000px;}
.y28{bottom:281.775000px;}
.yb2{bottom:287.715000px;}
.yba{bottom:290.955000px;}
.ya1{bottom:291.315000px;}
.ye9{bottom:295.275000px;}
.y5c{bottom:296.715000px;}
.y85{bottom:299.775000px;}
.y27{bottom:302.835000px;}
.yb1{bottom:308.775000px;}
.yb9{bottom:312.015000px;}
.ya0{bottom:312.375000px;}
.ye8{bottom:316.335000px;}
.y5b{bottom:317.775000px;}
.y84{bottom:320.835000px;}
.y26{bottom:323.895000px;}
.yb0{bottom:329.835000px;}
.yb8{bottom:333.075000px;}
.y9f{bottom:333.435000px;}
.ye7{bottom:337.395000px;}
.y5a{bottom:338.835000px;}
.y83{bottom:341.895000px;}
.y25{bottom:344.955000px;}
.yaf{bottom:350.895000px;}
.yb7{bottom:354.135000px;}
.y9e{bottom:354.495000px;}
.ye6{bottom:358.455000px;}
.y59{bottom:359.895000px;}
.y82{bottom:362.955000px;}
.y24{bottom:366.015000px;}
.yae{bottom:371.955000px;}
.yb6{bottom:375.195000px;}
.y9d{bottom:375.555000px;}
.ye5{bottom:379.515000px;}
.y58{bottom:380.955000px;}
.y81{bottom:384.015000px;}
.y23{bottom:387.075000px;}
.yad{bottom:393.015000px;}
.yb5{bottom:396.255000px;}
.y9c{bottom:396.615000px;}
.ye4{bottom:400.575000px;}
.y57{bottom:402.015000px;}
.y80{bottom:405.075000px;}
.y22{bottom:408.135000px;}
.yb4{bottom:413.355000px;}
.yac{bottom:414.075000px;}
.y9b{bottom:417.675000px;}
.ye3{bottom:421.635000px;}
.y56{bottom:423.075000px;}
.y7f{bottom:426.135000px;}
.y21{bottom:429.195000px;}
.yab{bottom:435.135000px;}
.y9a{bottom:438.735000px;}
.ye2{bottom:442.695000px;}
.y55{bottom:444.135000px;}
.y20{bottom:450.255000px;}
.y7e{bottom:456.195000px;}
.y99{bottom:459.795000px;}
.ye1{bottom:463.755000px;}
.y54{bottom:465.195000px;}
.y1f{bottom:471.315000px;}
.y7d{bottom:477.255000px;}
.y98{bottom:480.855000px;}
.ye0{bottom:484.815000px;}
.y53{bottom:486.255000px;}
.y1e{bottom:492.375000px;}
.y7c{bottom:498.315000px;}
.ydf{bottom:505.875000px;}
.y52{bottom:507.315000px;}
.y97{bottom:510.915000px;}
.y1d{bottom:515.775000px;}
.y7b{bottom:519.375000px;}
.yde{bottom:526.935000px;}
.y51{bottom:528.375000px;}
.y96{bottom:531.975000px;}
.y1c{bottom:536.655000px;}
.y7a{bottom:540.435000px;}
.ydd{bottom:547.995000px;}
.y50{bottom:549.435000px;}
.y95{bottom:553.035000px;}
.y79{bottom:561.525000px;}
.y1b{bottom:566.745000px;}
.ydc{bottom:569.085000px;}
.y4f{bottom:570.525000px;}
.y94{bottom:574.125000px;}
.y78{bottom:582.585000px;}
.y1a{bottom:587.805000px;}
.ydb{bottom:590.145000px;}
.y4e{bottom:591.585000px;}
.y93{bottom:595.185000px;}
.y77{bottom:603.645000px;}
.y19{bottom:608.865000px;}
.yda{bottom:611.205000px;}
.y4d{bottom:612.645000px;}
.y92{bottom:616.245000px;}
.y76{bottom:624.705000px;}
.y18{bottom:629.925000px;}
.yd9{bottom:632.265000px;}
.y4c{bottom:633.705000px;}
.y91{bottom:637.305000px;}
.y75{bottom:645.765000px;}
.y17{bottom:650.985000px;}
.yd8{bottom:653.325000px;}
.y4b{bottom:654.765000px;}
.y90{bottom:658.365000px;}
.y74{bottom:666.825000px;}
.y16{bottom:672.045000px;}
.yd7{bottom:674.385000px;}
.y8f{bottom:675.465000px;}
.y4a{bottom:675.825000px;}
.y73{bottom:687.885000px;}
.y15{bottom:693.105000px;}
.yd6{bottom:695.445000px;}
.y49{bottom:696.885000px;}
.y72{bottom:708.945000px;}
.y14{bottom:714.165000px;}
.yd5{bottom:716.505000px;}
.y48{bottom:717.945000px;}
.y71{bottom:730.005000px;}
.y13{bottom:735.225000px;}
.yd4{bottom:737.565000px;}
.y47{bottom:739.005000px;}
.y70{bottom:751.065000px;}
.y12{bottom:756.285000px;}
.yd3{bottom:758.625000px;}
.y46{bottom:760.065000px;}
.y6f{bottom:772.125000px;}
.y11{bottom:777.345000px;}
.yd2{bottom:779.685000px;}
.y45{bottom:781.125000px;}
.y6e{bottom:793.185000px;}
.y10{bottom:798.405000px;}
.yd1{bottom:800.745000px;}
.y44{bottom:802.185000px;}
.y6d{bottom:814.245000px;}
.yf{bottom:819.465000px;}
.yd0{bottom:821.805000px;}
.y43{bottom:823.245000px;}
.y6c{bottom:835.305000px;}
.ye{bottom:840.570000px;}
.ycf{bottom:842.910000px;}
.y42{bottom:844.350000px;}
.y6b{bottom:856.410000px;}
.yd{bottom:861.630000px;}
.yce{bottom:863.970000px;}
.y41{bottom:865.410000px;}
.y6a{bottom:877.470000px;}
.yc{bottom:884.850000px;}
.ycd{bottom:885.030000px;}
.y40{bottom:886.470000px;}
.y69{bottom:898.530000px;}
.yb{bottom:905.910000px;}
.ycc{bottom:906.090000px;}
.y3f{bottom:907.530000px;}
.y68{bottom:919.590000px;}
.ycb{bottom:923.190000px;}
.ya{bottom:927.870000px;}
.y3e{bottom:928.590000px;}
.y67{bottom:940.650000px;}
.y3d{bottom:949.650000px;}
.y9{bottom:950.190000px;}
.y66{bottom:961.710000px;}
.y3c{bottom:970.710000px;}
.y8{bottom:975.390000px;}
.y3b{bottom:991.770000px;}
.y7{bottom:1009.050000px;}
.y3a{bottom:1012.830000px;}
.y39{bottom:1033.890000px;}
.y5{bottom:1049.190000px;}
.y38{bottom:1054.950000px;}
.y37{bottom:1076.010000px;}
.y4{bottom:1081.410000px;}
.y36{bottom:1097.070000px;}
.y3{bottom:1113.630000px;}
.y35{bottom:1118.130000px;}
.y34{bottom:1139.220000px;}
.y2{bottom:1145.700000px;}
.y33{bottom:1170.000000px;}
.y1{bottom:1179.720000px;}
.y32{bottom:1193.220000px;}
.h6{height:59.439023px;}
.h8{height:61.189805px;}
.h3{height:65.884219px;}
.h7{height:67.824844px;}
.h4{height:83.787539px;}
.h2{height:86.255508px;}
.h5{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:53.999987px;}
.x9{left:79.559987px;}
.x7{left:80.999987px;}
.xa{left:108.035987px;}
.x5{left:181.649987px;}
.x3{left:308.774987px;}
.x2{left:373.214987px;}
.x4{left:440.894987px;}
.x1{left:517.604987px;}
.x8{left:785.129987px;}
.xb{left:839.309987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls29{letter-spacing:-0.928000pt;}
.ls2d{letter-spacing:-0.853333pt;}
.ls44{letter-spacing:-0.586667pt;}
.ls25{letter-spacing:-0.515200pt;}
.ls39{letter-spacing:-0.474133pt;}
.ls9{letter-spacing:-0.412267pt;}
.ls32{letter-spacing:-0.368000pt;}
.ls40{letter-spacing:-0.290133pt;}
.lsa{letter-spacing:-0.276267pt;}
.lse{letter-spacing:-0.269333pt;}
.ls1d{letter-spacing:-0.267733pt;}
.ls33{letter-spacing:-0.265067pt;}
.ls37{letter-spacing:-0.238933pt;}
.ls14{letter-spacing:-0.213867pt;}
.lsd{letter-spacing:-0.201067pt;}
.lsf{letter-spacing:-0.156267pt;}
.ls42{letter-spacing:-0.153067pt;}
.ls7{letter-spacing:-0.117867pt;}
.ls11{letter-spacing:-0.102933pt;}
.ls43{letter-spacing:-0.095467pt;}
.ls24{letter-spacing:-0.069867pt;}
.ls23{letter-spacing:-0.057600pt;}
.ls19{letter-spacing:-0.051840pt;}
.ls36{letter-spacing:-0.033920pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.021120pt;}
.ls6{letter-spacing:0.034560pt;}
.ls16{letter-spacing:0.054400pt;}
.ls10{letter-spacing:0.124800pt;}
.ls2a{letter-spacing:0.155733pt;}
.ls12{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.165867pt;}
.lsc{letter-spacing:0.186667pt;}
.ls18{letter-spacing:0.216533pt;}
.ls8{letter-spacing:0.227733pt;}
.ls0{letter-spacing:0.227840pt;}
.ls30{letter-spacing:0.256533pt;}
.ls21{letter-spacing:0.272000pt;}
.ls20{letter-spacing:0.349867pt;}
.ls35{letter-spacing:0.426133pt;}
.ls3e{letter-spacing:0.426240pt;}
.ls38{letter-spacing:0.438400pt;}
.ls3c{letter-spacing:0.483733pt;}
.ls1c{letter-spacing:0.544000pt;}
.ls15{letter-spacing:0.566400pt;}
.ls13{letter-spacing:0.581333pt;}
.ls2e{letter-spacing:0.592640pt;}
.ls41{letter-spacing:0.602667pt;}
.ls45{letter-spacing:0.693333pt;}
.ls2f{letter-spacing:0.794667pt;}
.ls3a{letter-spacing:0.800000pt;}
.ls3{letter-spacing:0.830720pt;}
.ls2c{letter-spacing:1.872640pt;}
.ls26{letter-spacing:3.792640pt;}
.ls1f{letter-spacing:5.072640pt;}
.ls22{letter-spacing:5.712640pt;}
.ls3d{letter-spacing:10.832640pt;}
.ls28{letter-spacing:14.032640pt;}
.ls34{letter-spacing:14.672640pt;}
.lsb{letter-spacing:15.466667pt;}
.ls1{letter-spacing:16.074240pt;}
.ls2{letter-spacing:16.106667pt;}
.ls1e{letter-spacing:17.872640pt;}
.ls3b{letter-spacing:24.912640pt;}
.ls27{letter-spacing:27.472640pt;}
.ls3f{letter-spacing:37.840640pt;}
.ls2b{letter-spacing:43.472640pt;}
.ls31{letter-spacing:56.272640pt;}
.ls17{letter-spacing:59.472640pt;}
.ls4{letter-spacing:74.192640pt;}
.ws6{word-spacing:-19.237120pt;}
.ws0{word-spacing:-16.957440pt;}
.ws2{word-spacing:-13.534613pt;}
.ws4{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws5{word-spacing:-13.030613pt;}
.ws3{word-spacing:-12.894613pt;}
.ws19{word-spacing:-12.607787pt;}
.ws11{word-spacing:-12.354987pt;}
.ws16{word-spacing:-12.277120pt;}
.ws10{word-spacing:-12.221653pt;}
.wse{word-spacing:-12.170987pt;}
.ws15{word-spacing:-12.160853pt;}
.ws8{word-spacing:-12.129920pt;}
.wsd{word-spacing:-12.026240pt;}
.ws7{word-spacing:-12.005120pt;}
.ws17{word-spacing:-11.971200pt;}
.wsc{word-spacing:-11.953280pt;}
.ws12{word-spacing:-11.947520pt;}
.ws13{word-spacing:-11.935253pt;}
.ws1b{word-spacing:-11.909653pt;}
.ws9{word-spacing:-11.902187pt;}
.ws1a{word-spacing:-11.852053pt;}
.wsa{word-spacing:-11.791253pt;}
.ws18{word-spacing:-11.766187pt;}
.wsf{word-spacing:-11.737387pt;}
.ws14{word-spacing:-11.489920pt;}
.wsb{word-spacing:0.000000pt;}
._28{margin-left:-482.949120pt;}
._27{margin-left:-473.225387pt;}
._3{margin-left:-454.215680pt;}
._1{margin-left:-431.749547pt;}
._9{margin-left:-386.577707pt;}
._8{margin-left:-363.162880pt;}
._7{margin-left:-278.846720pt;}
._18{margin-left:-275.532800pt;}
._d{margin-left:-272.925440pt;}
._0{margin-left:-267.464960pt;}
._17{margin-left:-259.861760pt;}
._6{margin-left:-256.442880pt;}
._c{margin-left:-244.250880pt;}
._11{margin-left:-230.161920pt;}
._10{margin-left:-214.426880pt;}
._1f{margin-left:-211.386880pt;}
._15{margin-left:-195.043840pt;}
._22{margin-left:-193.024000pt;}
._2a{margin-left:-184.007680pt;}
._14{margin-left:-180.453547pt;}
._21{margin-left:-178.426880pt;}
._29{margin-left:-167.667627pt;}
._20{margin-left:-163.046400pt;}
._2f{margin-left:-158.361600pt;}
._5{margin-left:-157.091840pt;}
._13{margin-left:-152.003840pt;}
._1b{margin-left:-150.758827pt;}
._f{margin-left:-147.937280pt;}
._e{margin-left:-137.328640pt;}
._16{margin-left:-135.894613pt;}
._4{margin-left:-134.042880pt;}
._2e{margin-left:-127.226880pt;}
._12{margin-left:-118.906880pt;}
._2d{margin-left:-113.457280pt;}
._b{margin-left:-103.696640pt;}
._2c{margin-left:-98.533547pt;}
._26{margin-left:-90.977280pt;}
._1a{margin-left:-88.959787pt;}
._a{margin-left:-80.922880pt;}
._2b{margin-left:-78.212693pt;}
._25{margin-left:-76.959787pt;}
._24{margin-left:-74.240000pt;}
._19{margin-left:-72.826880pt;}
._1d{margin-left:-59.292160pt;}
._1c{margin-left:-43.386880pt;}
._23{margin-left:-28.052480pt;}
._30{margin-left:-16.337280pt;}
._43{margin-left:-9.952853pt;}
._40{margin-left:-6.112853pt;}
._31{margin-left:-4.562773pt;}
._1e{margin-left:-3.440640pt;}
._3c{margin-left:-2.549760pt;}
._2{margin-left:-1.497600pt;}
._34{width:0.936320pt;}
._33{width:2.067200pt;}
._3a{width:2.974720pt;}
._38{width:4.305493pt;}
._36{width:5.790080pt;}
._37{width:6.785920pt;}
._41{width:7.861760pt;}
._3b{width:8.799787pt;}
._39{width:9.722027pt;}
._35{width:10.876480pt;}
._3f{width:13.386240pt;}
._3e{width:14.661120pt;}
._32{width:15.858347pt;}
._3d{width:16.897493pt;}
._42{width:17.954560pt;}
._47{width:19.230080pt;}
._44{width:20.862293pt;}
._45{width:24.169600pt;}
._46{width:25.147307pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:54.752000pt;}
.y31{bottom:81.952000pt;}
.y65{bottom:87.232000pt;}
.yaa{bottom:90.432000pt;}
.yf2{bottom:93.952000pt;}
.yca{bottom:95.232000pt;}
.y8e{bottom:97.952000pt;}
.y30{bottom:100.672000pt;}
.y64{bottom:105.952000pt;}
.yc2{bottom:108.832000pt;}
.ya9{bottom:109.152000pt;}
.yf3{bottom:110.912000pt;}
.yf1{bottom:112.672000pt;}
.yc9{bottom:113.952000pt;}
.y8d{bottom:116.672000pt;}
.y2f{bottom:119.392000pt;}
.y63{bottom:124.672000pt;}
.yc1{bottom:127.552000pt;}
.ya8{bottom:127.872000pt;}
.yf0{bottom:131.392000pt;}
.yc8{bottom:132.672000pt;}
.y8c{bottom:135.386667pt;}
.y2e{bottom:138.106667pt;}
.y62{bottom:143.386667pt;}
.yc0{bottom:146.266667pt;}
.ya7{bottom:146.586667pt;}
.yef{bottom:150.106667pt;}
.yc7{bottom:151.386667pt;}
.y8b{bottom:154.106667pt;}
.y2d{bottom:156.826667pt;}
.y61{bottom:162.106667pt;}
.ybf{bottom:164.986667pt;}
.ya6{bottom:165.306667pt;}
.yee{bottom:168.826667pt;}
.yc6{bottom:170.106667pt;}
.y8a{bottom:172.826667pt;}
.y2c{bottom:175.546667pt;}
.y60{bottom:180.826667pt;}
.ybe{bottom:183.706667pt;}
.ya5{bottom:184.026667pt;}
.yed{bottom:187.546667pt;}
.yc5{bottom:188.826667pt;}
.y89{bottom:191.546667pt;}
.y2b{bottom:194.266667pt;}
.y5f{bottom:199.546667pt;}
.ybd{bottom:202.426667pt;}
.ya4{bottom:202.746667pt;}
.yec{bottom:206.266667pt;}
.yc4{bottom:207.546667pt;}
.y88{bottom:210.266667pt;}
.y2a{bottom:212.986667pt;}
.y5e{bottom:218.266667pt;}
.ybc{bottom:221.146667pt;}
.ya3{bottom:221.466667pt;}
.yeb{bottom:224.986667pt;}
.yc3{bottom:226.266667pt;}
.y87{bottom:228.986667pt;}
.y29{bottom:231.706667pt;}
.yb3{bottom:236.986667pt;}
.ybb{bottom:239.866667pt;}
.ya2{bottom:240.186667pt;}
.yea{bottom:243.746667pt;}
.y5d{bottom:245.026667pt;}
.y86{bottom:247.746667pt;}
.y28{bottom:250.466667pt;}
.yb2{bottom:255.746667pt;}
.yba{bottom:258.626667pt;}
.ya1{bottom:258.946667pt;}
.ye9{bottom:262.466667pt;}
.y5c{bottom:263.746667pt;}
.y85{bottom:266.466667pt;}
.y27{bottom:269.186667pt;}
.yb1{bottom:274.466667pt;}
.yb9{bottom:277.346667pt;}
.ya0{bottom:277.666667pt;}
.ye8{bottom:281.186667pt;}
.y5b{bottom:282.466667pt;}
.y84{bottom:285.186667pt;}
.y26{bottom:287.906667pt;}
.yb0{bottom:293.186667pt;}
.yb8{bottom:296.066667pt;}
.y9f{bottom:296.386667pt;}
.ye7{bottom:299.906667pt;}
.y5a{bottom:301.186667pt;}
.y83{bottom:303.906667pt;}
.y25{bottom:306.626667pt;}
.yaf{bottom:311.906667pt;}
.yb7{bottom:314.786667pt;}
.y9e{bottom:315.106667pt;}
.ye6{bottom:318.626667pt;}
.y59{bottom:319.906667pt;}
.y82{bottom:322.626667pt;}
.y24{bottom:325.346667pt;}
.yae{bottom:330.626667pt;}
.yb6{bottom:333.506667pt;}
.y9d{bottom:333.826667pt;}
.ye5{bottom:337.346667pt;}
.y58{bottom:338.626667pt;}
.y81{bottom:341.346667pt;}
.y23{bottom:344.066667pt;}
.yad{bottom:349.346667pt;}
.yb5{bottom:352.226667pt;}
.y9c{bottom:352.546667pt;}
.ye4{bottom:356.066667pt;}
.y57{bottom:357.346667pt;}
.y80{bottom:360.066667pt;}
.y22{bottom:362.786667pt;}
.yb4{bottom:367.426667pt;}
.yac{bottom:368.066667pt;}
.y9b{bottom:371.266667pt;}
.ye3{bottom:374.786667pt;}
.y56{bottom:376.066667pt;}
.y7f{bottom:378.786667pt;}
.y21{bottom:381.506667pt;}
.yab{bottom:386.786667pt;}
.y9a{bottom:389.986667pt;}
.ye2{bottom:393.506667pt;}
.y55{bottom:394.786667pt;}
.y20{bottom:400.226667pt;}
.y7e{bottom:405.506667pt;}
.y99{bottom:408.706667pt;}
.ye1{bottom:412.226667pt;}
.y54{bottom:413.506667pt;}
.y1f{bottom:418.946667pt;}
.y7d{bottom:424.226667pt;}
.y98{bottom:427.426667pt;}
.ye0{bottom:430.946667pt;}
.y53{bottom:432.226667pt;}
.y1e{bottom:437.666667pt;}
.y7c{bottom:442.946667pt;}
.ydf{bottom:449.666667pt;}
.y52{bottom:450.946667pt;}
.y97{bottom:454.146667pt;}
.y1d{bottom:458.466667pt;}
.y7b{bottom:461.666667pt;}
.yde{bottom:468.386667pt;}
.y51{bottom:469.666667pt;}
.y96{bottom:472.866667pt;}
.y1c{bottom:477.026667pt;}
.y7a{bottom:480.386667pt;}
.ydd{bottom:487.106667pt;}
.y50{bottom:488.386667pt;}
.y95{bottom:491.586667pt;}
.y79{bottom:499.133333pt;}
.y1b{bottom:503.773333pt;}
.ydc{bottom:505.853333pt;}
.y4f{bottom:507.133333pt;}
.y94{bottom:510.333333pt;}
.y78{bottom:517.853333pt;}
.y1a{bottom:522.493333pt;}
.ydb{bottom:524.573333pt;}
.y4e{bottom:525.853333pt;}
.y93{bottom:529.053333pt;}
.y77{bottom:536.573333pt;}
.y19{bottom:541.213333pt;}
.yda{bottom:543.293333pt;}
.y4d{bottom:544.573333pt;}
.y92{bottom:547.773333pt;}
.y76{bottom:555.293333pt;}
.y18{bottom:559.933333pt;}
.yd9{bottom:562.013333pt;}
.y4c{bottom:563.293333pt;}
.y91{bottom:566.493333pt;}
.y75{bottom:574.013333pt;}
.y17{bottom:578.653333pt;}
.yd8{bottom:580.733333pt;}
.y4b{bottom:582.013333pt;}
.y90{bottom:585.213333pt;}
.y74{bottom:592.733333pt;}
.y16{bottom:597.373333pt;}
.yd7{bottom:599.453333pt;}
.y8f{bottom:600.413333pt;}
.y4a{bottom:600.733333pt;}
.y73{bottom:611.453333pt;}
.y15{bottom:616.093333pt;}
.yd6{bottom:618.173333pt;}
.y49{bottom:619.453333pt;}
.y72{bottom:630.173333pt;}
.y14{bottom:634.813333pt;}
.yd5{bottom:636.893333pt;}
.y48{bottom:638.173333pt;}
.y71{bottom:648.893333pt;}
.y13{bottom:653.533333pt;}
.yd4{bottom:655.613333pt;}
.y47{bottom:656.893333pt;}
.y70{bottom:667.613333pt;}
.y12{bottom:672.253333pt;}
.yd3{bottom:674.333333pt;}
.y46{bottom:675.613333pt;}
.y6f{bottom:686.333333pt;}
.y11{bottom:690.973333pt;}
.yd2{bottom:693.053333pt;}
.y45{bottom:694.333333pt;}
.y6e{bottom:705.053333pt;}
.y10{bottom:709.693333pt;}
.yd1{bottom:711.773333pt;}
.y44{bottom:713.053333pt;}
.y6d{bottom:723.773333pt;}
.yf{bottom:728.413333pt;}
.yd0{bottom:730.493333pt;}
.y43{bottom:731.773333pt;}
.y6c{bottom:742.493333pt;}
.ye{bottom:747.173333pt;}
.ycf{bottom:749.253333pt;}
.y42{bottom:750.533333pt;}
.y6b{bottom:761.253333pt;}
.yd{bottom:765.893333pt;}
.yce{bottom:767.973333pt;}
.y41{bottom:769.253333pt;}
.y6a{bottom:779.973333pt;}
.yc{bottom:786.533333pt;}
.ycd{bottom:786.693333pt;}
.y40{bottom:787.973333pt;}
.y69{bottom:798.693333pt;}
.yb{bottom:805.253333pt;}
.ycc{bottom:805.413333pt;}
.y3f{bottom:806.693333pt;}
.y68{bottom:817.413333pt;}
.ycb{bottom:820.613333pt;}
.ya{bottom:824.773333pt;}
.y3e{bottom:825.413333pt;}
.y67{bottom:836.133333pt;}
.y3d{bottom:844.133333pt;}
.y9{bottom:844.613333pt;}
.y66{bottom:854.853333pt;}
.y3c{bottom:862.853333pt;}
.y8{bottom:867.013333pt;}
.y3b{bottom:881.573333pt;}
.y7{bottom:896.933333pt;}
.y3a{bottom:900.293333pt;}
.y39{bottom:919.013333pt;}
.y5{bottom:932.613333pt;}
.y38{bottom:937.733333pt;}
.y37{bottom:956.453333pt;}
.y4{bottom:961.253333pt;}
.y36{bottom:975.173333pt;}
.y3{bottom:989.893333pt;}
.y35{bottom:993.893333pt;}
.y34{bottom:1012.640000pt;}
.y2{bottom:1018.400000pt;}
.y33{bottom:1040.000000pt;}
.y1{bottom:1048.640000pt;}
.y32{bottom:1060.640000pt;}
.h6{height:52.834688pt;}
.h8{height:54.390938pt;}
.h3{height:58.563750pt;}
.h7{height:60.288750pt;}
.h4{height:74.477812pt;}
.h2{height:76.671562pt;}
.h5{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:47.999988pt;}
.x9{left:70.719988pt;}
.x7{left:71.999988pt;}
.xa{left:96.031988pt;}
.x5{left:161.466655pt;}
.x3{left:274.466655pt;}
.x2{left:331.746655pt;}
.x4{left:391.906655pt;}
.x1{left:460.093322pt;}
.x8{left:697.893322pt;}
.xb{left:746.053322pt;}
}




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