
    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_b87d1098c9e1d8601962b33d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_fb525cc002fca7bef7ef93c1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_9bc1d1562de4c0d2605d112c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.859000;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_d4f567aab224733465fcdf76.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.901000;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_723f5c766c64072d75c91913.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.560000;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_fb8998ccbe2dc263d35ad73b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_4a0e6b5fe083a7904c632c29.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.665000;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;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c6936cbc1bd8b0beca871078.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0d1add20d2328ca5171f1601.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_00c0aa6158d6829a92b8e8eb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.239258;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_1859c13031da1a422b8e0c83.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.616000;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_ae972c1101d31e418f8b47c8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.040000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c6936cbc1bd8b0beca871078.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_00c0aa6158d6829a92b8e8eb.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.239258;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:ff11;src:url('chunks/assets/font_015a6123c5d15e3b51c06668.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v2{vertical-align:-31.236000px;}
.v7{vertical-align:-16.938000px;}
.v6{vertical-align:-10.758000px;}
.v8{vertical-align:-9.600307px;}
.v5{vertical-align:-7.680307px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.388534px;}
.v3{vertical-align:26.028000px;}
.v1{vertical-align:31.236000px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000760px;}
.ls12{letter-spacing:0.001114px;}
.ls10{letter-spacing:0.001288px;}
.lsc{letter-spacing:0.001571px;}
.ls7{letter-spacing:0.006346px;}
.ls4{letter-spacing:2.573587px;}
.ls2{letter-spacing:2.579587px;}
.ls0{letter-spacing:2.986200px;}
.lse{letter-spacing:11.953473px;}
.lsf{letter-spacing:14.942915px;}
.ls11{letter-spacing:19.919518px;}
.ls9{letter-spacing:19.925518px;}
.ls8{letter-spacing:22.497525px;}
.lsd{letter-spacing:22.751518px;}
.lsb{letter-spacing:29.623114px;}
.ls6{letter-spacing:323.792915px;}
.ls3{letter-spacing:335.468915px;}
.ls5{letter-spacing:335.474915px;}
.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;}
}
.ws29{word-spacing:-45.664082px;}
.ws3{word-spacing:-32.278875px;}
.ws1c{word-spacing:-22.416000px;}
.ws25{word-spacing:-19.510886px;}
.ws2a{word-spacing:-14.595467px;}
.ws1d{word-spacing:-11.676467px;}
.ws2b{word-spacing:-10.425334px;}
.ws1e{word-spacing:-8.340334px;}
.ws1b{word-spacing:-0.860774px;}
.ws22{word-spacing:-0.789043px;}
.ws31{word-spacing:-0.286925px;}
.ws2{word-spacing:-0.059776px;}
.ws6{word-spacing:0.000000px;}
.ws19{word-spacing:2.295398px;}
.wsf{word-spacing:3.371366px;}
.wse{word-spacing:3.873485px;}
.wsd{word-spacing:4.447334px;}
.ws4{word-spacing:4.483200px;}
.wsb{word-spacing:4.519066px;}
.ws1{word-spacing:4.648169px;}
.ws17{word-spacing:4.662528px;}
.ws12{word-spacing:5.236378px;}
.ws23{word-spacing:5.550618px;}
.ws27{word-spacing:5.595034px;}
.ws5{word-spacing:6.455775px;}
.ws30{word-spacing:6.671002px;}
.ws1a{word-spacing:7.316582px;}
.ws2e{word-spacing:8.679475px;}
.ws20{word-spacing:20.712828px;}
.ws33{word-spacing:22.178925px;}
.ws21{word-spacing:22.771016px;}
.ws10{word-spacing:22.831016px;}
.ws32{word-spacing:22.856925px;}
.ws28{word-spacing:22.862925px;}
.wsc{word-spacing:23.917016px;}
.ws16{word-spacing:23.971411px;}
.ws18{word-spacing:24.097016px;}
.ws13{word-spacing:24.685016px;}
.ws24{word-spacing:25.688925px;}
.ws26{word-spacing:28.010925px;}
.ws2f{word-spacing:28.141016px;}
.ws0{word-spacing:37.316475px;}
.ws8{word-spacing:52.220314px;}
.ws11{word-spacing:53.152819px;}
.ws2d{word-spacing:60.924450px;}
.ws7{word-spacing:64.845005px;}
.ws9{word-spacing:75.604685px;}
.wsa{word-spacing:75.676416px;}
.ws15{word-spacing:149.033197px;}
.ws14{word-spacing:152.645147px;}
.ws1f{word-spacing:411.784471px;}
.ws2c{word-spacing:465.899908px;}
._3{margin-left:-7.058330px;}
._1f{margin-left:-5.881958px;}
._42{margin-left:-4.232141px;}
._0{margin-left:-3.223350px;}
._1{margin-left:-1.424819px;}
._9{width:1.424819px;}
._2{width:2.978469px;}
._43{width:19.778286px;}
._22{width:24.445980px;}
._4c{width:27.597599px;}
._4{width:29.132587px;}
._29{width:30.987878px;}
._20{width:32.350771px;}
._21{width:33.628123px;}
._2f{width:34.704816px;}
._44{width:36.373266px;}
._31{width:38.232730px;}
._4b{width:40.886784px;}
._3f{width:42.955718px;}
._3b{width:46.255850px;}
._48{width:49.006568px;}
._38{width:54.729929px;}
._3c{width:57.656306px;}
._46{width:60.256928px;}
._49{width:63.219523px;}
._5{width:64.988467px;}
._39{width:66.392656px;}
._3d{width:69.002760px;}
._16{width:71.219276px;}
._24{width:72.314855px;}
._35{width:75.153006px;}
._4a{width:77.514980px;}
._25{width:83.935309px;}
._36{width:86.553462px;}
._18{width:95.115571px;}
._37{width:97.929917px;}
._3e{width:106.324253px;}
._8{width:116.203950px;}
._28{width:118.232900px;}
._30{width:135.807693px;}
._40{width:137.787772px;}
._41{width:148.361934px;}
._26{width:155.656704px;}
._a{width:158.239027px;}
._3a{width:161.976479px;}
._c{width:170.060316px;}
._d{width:172.738535px;}
._14{width:174.235085px;}
._b{width:176.100096px;}
._13{width:178.529152px;}
._f{width:179.815759px;}
._47{width:183.568374px;}
._2e{width:188.796518px;}
._1c{width:197.619456px;}
._27{width:200.488704px;}
._19{width:201.985254px;}
._23{width:220.654976px;}
._e{width:228.310604px;}
._2b{width:229.334452px;}
._17{width:252.278630px;}
._12{width:258.519245px;}
._10{width:260.517913px;}
._2c{width:261.541760px;}
._1a{width:284.485939px;}
._11{width:287.775769px;}
._2d{width:288.799616px;}
._2a{width:290.224435px;}
._15{width:299.979878px;}
._1d{width:301.916621px;}
._1e{width:307.368192px;}
._1b{width:311.743795px;}
._34{width:438.806552px;}
._33{width:454.251169px;}
._32{width:460.107404px;}
._45{width:518.982857px;}
._7{width:2462.145667px;}
._6{width:2487.258760px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(77,77,77);}
.fc4{color:rgb(26,26,26);}
.fc2{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:28.139034px;}
.fsb{font-size:30.001200px;}
.fs10{font-size:37.501200px;}
.fsc{font-size:39.001560px;}
.fs6{font-size:40.198620px;}
.fsa{font-size:42.001680px;}
.fs7{font-size:43.853040px;}
.fsd{font-size:45.001800px;}
.fs5{font-size:47.820600px;}
.fse{font-size:48.001920px;}
.fs11{font-size:48.751560px;}
.fs8{font-size:51.161880px;}
.fsf{font-size:52.501680px;}
.fs12{font-size:56.251800px;}
.fs2{font-size:59.775600px;}
.fs13{font-size:60.001920px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs3{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.ya7{bottom:6.375255px;}
.ye3{bottom:7.969005px;}
.y57{bottom:8.861968px;}
.y8d{bottom:20.123305px;}
.y56{bottom:22.937196px;}
.yc9{bottom:25.153930px;}
.yd{bottom:36.168000px;}
.y63{bottom:50.382461px;}
.y8e{bottom:51.849574px;}
.y8a{bottom:52.119585px;}
.y58{bottom:59.600305px;}
.yca{bottom:64.811449px;}
.y62{bottom:65.128616px;}
.yc6{bottom:65.148960px;}
.y8f{bottom:67.435197px;}
.y89{bottom:67.705208px;}
.y64{bottom:67.780757px;}
.y61{bottom:79.874772px;}
.y90{bottom:83.020821px;}
.y88{bottom:83.290831px;}
.ycb{bottom:84.293322px;}
.yc5{bottom:84.630833px;}
.y60{bottom:94.620928px;}
.y91{bottom:98.613944px;}
.y87{bottom:98.883955px;}
.ycc{bottom:103.775196px;}
.yc4{bottom:104.112707px;}
.y65{bottom:106.943753px;}
.y59{bottom:108.574096px;}
.y92{bottom:114.199568px;}
.y86{bottom:114.469579px;}
.y5e{bottom:116.487643px;}
.ycd{bottom:123.266444px;}
.yc3{bottom:123.603955px;}
.y93{bottom:129.785191px;}
.y85{bottom:130.055202px;}
.y6b{bottom:135.965987px;}
.yce{bottom:142.748318px;}
.yc2{bottom:143.085829px;}
.y94{bottom:145.370815px;}
.y84{bottom:145.640825px;}
.y66{bottom:146.106749px;}
.y5a{bottom:157.547887px;}
.y95{bottom:160.963938px;}
.y83{bottom:161.233949px;}
.ycf{bottom:162.230191px;}
.yc1{bottom:162.567702px;}
.y38{bottom:173.140500px;}
.y96{bottom:176.549562px;}
.y82{bottom:176.819573px;}
.yd0{bottom:181.712065px;}
.yc0{bottom:182.049575px;}
.y67{bottom:185.269745px;}
.y97{bottom:192.135185px;}
.y81{bottom:192.405196px;}
.y37{bottom:194.809500px;}
.yd1{bottom:201.203313px;}
.ybf{bottom:201.540824px;}
.y5b{bottom:206.521679px;}
.y98{bottom:207.720808px;}
.y80{bottom:207.990819px;}
.yd2{bottom:220.685187px;}
.ybe{bottom:221.022698px;}
.y99{bottom:223.313932px;}
.y7f{bottom:223.576443px;}
.y68{bottom:224.532666px;}
.ya8{bottom:228.699148px;}
.y36{bottom:234.696000px;}
.y2e{bottom:238.147500px;}
.y9a{bottom:238.899556px;}
.y7e{bottom:239.169566px;}
.yd3{bottom:240.167060px;}
.ybd{bottom:240.504571px;}
.y9b{bottom:254.485179px;}
.y7d{bottom:254.755190px;}
.y5c{bottom:255.495470px;}
.y35{bottom:256.363500px;}
.yd4{bottom:259.648934px;}
.y2d{bottom:259.816500px;}
.ybc{bottom:259.986444px;}
.y69{bottom:263.595737px;}
.ye8{bottom:266.425500px;}
.y9c{bottom:270.070802px;}
.y7c{bottom:270.340813px;}
.y34{bottom:278.032500px;}
.yd5{bottom:279.140182px;}
.ybb{bottom:279.468318px;}
.y9d{bottom:285.656426px;}
.ye4{bottom:285.871648px;}
.y7b{bottom:285.926437px;}
.ye7{bottom:288.094500px;}
.y5f{bottom:293.681612px;}
.yd6{bottom:298.622056px;}
.yba{bottom:298.959566px;}
.y2c{bottom:299.701500px;}
.y9e{bottom:301.249550px;}
.y7a{bottom:301.519560px;}
.y53{bottom:302.655000px;}
.y6a{bottom:302.758732px;}
.y5d{bottom:304.469261px;}
.ye6{bottom:309.763500px;}
.y9f{bottom:316.835173px;}
.y79{bottom:317.105184px;}
.yd7{bottom:318.103929px;}
.yb9{bottom:318.441440px;}
.y2b{bottom:321.370500px;}
.y52{bottom:324.324000px;}
.yac{bottom:324.925500px;}
.ye5{bottom:331.432500px;}
.ya0{bottom:332.420796px;}
.y78{bottom:332.690807px;}
.yd8{bottom:337.585802px;}
.yb8{bottom:337.923313px;}
.y2a{bottom:343.039500px;}
.yab{bottom:346.594500px;}
.ya1{bottom:348.006420px;}
.y77{bottom:348.276431px;}
.yd9{bottom:357.067676px;}
.yb7{bottom:357.405187px;}
.ya2{bottom:363.599543px;}
.y76{bottom:363.862054px;}
.y29{bottom:364.708500px;}
.y51{bottom:365.206500px;}
.yad{bottom:368.044500px;}
.yaa{bottom:368.263500px;}
.yda{bottom:376.558925px;}
.yb6{bottom:376.896435px;}
.ya3{bottom:379.185167px;}
.y75{bottom:379.455178px;}
.y28{bottom:386.376000px;}
.y50{bottom:386.874000px;}
.ya9{bottom:389.932500px;}
.ya4{bottom:394.770790px;}
.y74{bottom:395.040801px;}
.ydb{bottom:396.040798px;}
.yb5{bottom:396.378309px;}
.y27{bottom:408.045000px;}
.y4f{bottom:408.543000px;}
.ya5{bottom:410.356414px;}
.y73{bottom:410.626424px;}
.ydc{bottom:415.522671px;}
.yb4{bottom:415.860182px;}
.ya6{bottom:425.949537px;}
.y72{bottom:426.212048px;}
.y71{bottom:426.544500px;}
.y26{bottom:429.714000px;}
.y4e{bottom:430.212000px;}
.ydd{bottom:435.004545px;}
.yb3{bottom:435.342056px;}
.y25{bottom:451.383000px;}
.y8c{bottom:451.428056px;}
.y4d{bottom:451.881000px;}
.y8b{bottom:452.973118px;}
.yde{bottom:454.495793px;}
.yb2{bottom:454.823929px;}
.y24{bottom:473.052000px;}
.y4c{bottom:473.550000px;}
.ydf{bottom:473.977667px;}
.yb1{bottom:474.315178px;}
.ye0{bottom:493.459540px;}
.yb0{bottom:493.797051px;}
.y23{bottom:494.719500px;}
.y4b{bottom:495.217500px;}
.ye1{bottom:512.941414px;}
.yaf{bottom:513.278924px;}
.y22{bottom:516.388500px;}
.y4a{bottom:516.886500px;}
.ye2{bottom:532.432662px;}
.yae{bottom:532.760798px;}
.y21{bottom:538.057500px;}
.y49{bottom:538.555500px;}
.yc{bottom:548.416500px;}
.y20{bottom:559.726500px;}
.y48{bottom:560.224500px;}
.yc8{bottom:564.280556px;}
.yc7{bottom:566.211868px;}
.y1f{bottom:581.395500px;}
.y47{bottom:581.893500px;}
.y1e{bottom:603.063000px;}
.y46{bottom:603.562500px;}
.yb{bottom:608.317500px;}
.y1d{bottom:624.732000px;}
.y45{bottom:625.230000px;}
.y70{bottom:630.394500px;}
.y1c{bottom:646.401000px;}
.y44{bottom:646.899000px;}
.ya{bottom:647.545500px;}
.y6f{bottom:652.063500px;}
.y1b{bottom:668.070000px;}
.y43{bottom:668.568000px;}
.y6e{bottom:673.732500px;}
.y9{bottom:686.973000px;}
.y1a{bottom:689.739000px;}
.y42{bottom:690.237000px;}
.y6d{bottom:695.401500px;}
.y33{bottom:711.406500px;}
.y19{bottom:711.408000px;}
.y41{bottom:711.906000px;}
.y6c{bottom:717.070500px;}
.y18{bottom:733.075500px;}
.y40{bottom:733.573500px;}
.y55{bottom:753.682500px;}
.y17{bottom:754.744500px;}
.y3f{bottom:755.242500px;}
.y8{bottom:766.300500px;}
.y16{bottom:776.413500px;}
.y3e{bottom:776.911500px;}
.y15{bottom:798.082500px;}
.y3d{bottom:798.580500px;}
.y14{bottom:819.751500px;}
.y3c{bottom:820.249500px;}
.y7{bottom:824.955000px;}
.y13{bottom:841.419000px;}
.y3b{bottom:841.917000px;}
.y6{bottom:859.663500px;}
.y12{bottom:863.088000px;}
.y3a{bottom:863.586000px;}
.y5{bottom:878.752500px;}
.y11{bottom:884.757000px;}
.y39{bottom:894.240000px;}
.y10{bottom:906.426000px;}
.y4{bottom:913.461000px;}
.yf{bottom:928.095000px;}
.y32{bottom:949.762500px;}
.y3{bottom:950.110500px;}
.ye{bottom:958.747500px;}
.y31{bottom:971.431500px;}
.y30{bottom:993.100500px;}
.y2{bottom:1003.347000px;}
.y2f{bottom:1023.754500px;}
.y1{bottom:1043.589000px;}
.y54{bottom:1116.067500px;}
.hb{height:37.344518px;}
.h4{height:39.810550px;}
.h11{height:40.677408px;}
.hc{height:40.739474px;}
.he{height:41.529697px;}
.h10{height:43.806440px;}
.h12{height:46.935471px;}
.hd{height:47.529387px;}
.h13{height:50.064502px;}
.h6{height:50.211840px;}
.h16{height:50.846354px;}
.h7{height:53.798400px;}
.h15{height:54.757612px;}
.h8{height:57.828699px;}
.h9{height:57.834699px;}
.h17{height:58.668870px;}
.h18{height:62.580128px;}
.h2{height:64.557900px;}
.h3{height:71.046550px;}
.h5{height:72.304680px;}
.h1{height:87.030450px;}
.ha{height:318.684384px;}
.hf{height:468.018720px;}
.h14{height:585.018720px;}
.h0{height:1188.000000px;}
.w3{width:607.519440px;}
.w1{width:648.014316px;}
.w2{width:810.032400px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1f{left:12.352994px;}
.x10{left:14.914602px;}
.x1d{left:17.978219px;}
.x25{left:22.472594px;}
.x1c{left:24.233469px;}
.xf{left:29.273546px;}
.x24{left:30.291594px;}
.x1b{left:36.158946px;}
.x8{left:54.000000px;}
.x23{left:59.542530px;}
.x11{left:62.110397px;}
.x4{left:66.612000px;}
.xd{left:70.662248px;}
.x1a{left:78.340633px;}
.x1{left:79.867500px;}
.x6{left:84.849000px;}
.x22{left:110.994177px;}
.xe{left:126.491073px;}
.xc{left:134.994000px;}
.x20{left:155.244000px;}
.x3{left:176.302500px;}
.xa{left:192.489000px;}
.xb{left:193.950000px;}
.x26{left:210.344231px;}
.x12{left:276.658791px;}
.x1e{left:330.283211px;}
.x17{left:336.073242px;}
.x14{left:342.011675px;}
.x2{left:343.348500px;}
.x15{left:346.579700px;}
.x16{left:352.061330px;}
.x5{left:369.157500px;}
.x7{left:371.938500px;}
.x18{left:387.258922px;}
.x13{left:401.530444px;}
.x9{left:454.611000px;}
.x21{left:542.136098px;}
.x19{left:757.725308px;}
@media print{
.v2{vertical-align:-27.765333pt;}
.v7{vertical-align:-15.056000pt;}
.v6{vertical-align:-9.562667pt;}
.v8{vertical-align:-8.533606pt;}
.v5{vertical-align:-6.826940pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.678697pt;}
.v3{vertical-align:23.136000pt;}
.v1{vertical-align:27.765333pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000676pt;}
.ls12{letter-spacing:0.000990pt;}
.ls10{letter-spacing:0.001145pt;}
.lsc{letter-spacing:0.001396pt;}
.ls7{letter-spacing:0.005641pt;}
.ls4{letter-spacing:2.287633pt;}
.ls2{letter-spacing:2.292966pt;}
.ls0{letter-spacing:2.654400pt;}
.lse{letter-spacing:10.625309pt;}
.lsf{letter-spacing:13.282591pt;}
.ls11{letter-spacing:17.706238pt;}
.ls9{letter-spacing:17.711572pt;}
.ls8{letter-spacing:19.997800pt;}
.lsd{letter-spacing:20.223572pt;}
.lsb{letter-spacing:26.331657pt;}
.ls6{letter-spacing:287.815925pt;}
.ls3{letter-spacing:298.194591pt;}
.ls5{letter-spacing:298.199925pt;}
.ws29{word-spacing:-40.590295pt;}
.ws3{word-spacing:-28.692333pt;}
.ws1c{word-spacing:-19.925333pt;}
.ws25{word-spacing:-17.343010pt;}
.ws2a{word-spacing:-12.973748pt;}
.ws1d{word-spacing:-10.379082pt;}
.ws2b{word-spacing:-9.266963pt;}
.ws1e{word-spacing:-7.413630pt;}
.ws1b{word-spacing:-0.765133pt;}
.ws22{word-spacing:-0.701372pt;}
.ws31{word-spacing:-0.255044pt;}
.ws2{word-spacing:-0.053134pt;}
.ws6{word-spacing:0.000000pt;}
.ws19{word-spacing:2.040354pt;}
.wsf{word-spacing:2.996770pt;}
.wse{word-spacing:3.443098pt;}
.wsd{word-spacing:3.953186pt;}
.ws4{word-spacing:3.985067pt;}
.wsb{word-spacing:4.016947pt;}
.ws1{word-spacing:4.131706pt;}
.ws17{word-spacing:4.144469pt;}
.ws12{word-spacing:4.654558pt;}
.ws23{word-spacing:4.933883pt;}
.ws27{word-spacing:4.973363pt;}
.ws5{word-spacing:5.738467pt;}
.ws30{word-spacing:5.929779pt;}
.ws1a{word-spacing:6.503629pt;}
.ws2e{word-spacing:7.715089pt;}
.ws20{word-spacing:18.411403pt;}
.ws33{word-spacing:19.714600pt;}
.ws21{word-spacing:20.240903pt;}
.ws10{word-spacing:20.294236pt;}
.ws32{word-spacing:20.317267pt;}
.ws28{word-spacing:20.322600pt;}
.wsc{word-spacing:21.259569pt;}
.ws16{word-spacing:21.307921pt;}
.ws18{word-spacing:21.419569pt;}
.ws13{word-spacing:21.942236pt;}
.ws24{word-spacing:22.834600pt;}
.ws26{word-spacing:24.898600pt;}
.ws2f{word-spacing:25.014236pt;}
.ws0{word-spacing:33.170200pt;}
.ws8{word-spacing:46.418057pt;}
.ws11{word-spacing:47.246950pt;}
.ws2d{word-spacing:54.155066pt;}
.ws7{word-spacing:57.640004pt;}
.ws9{word-spacing:67.204164pt;}
.wsa{word-spacing:67.267925pt;}
.ws15{word-spacing:132.473953pt;}
.ws14{word-spacing:135.684575pt;}
.ws1f{word-spacing:366.030641pt;}
.ws2c{word-spacing:414.133252pt;}
._3{margin-left:-6.274071pt;}
._1f{margin-left:-5.228407pt;}
._42{margin-left:-3.761903pt;}
._0{margin-left:-2.865200pt;}
._1{margin-left:-1.266506pt;}
._9{width:1.266506pt;}
._2{width:2.647528pt;}
._43{width:17.580699pt;}
._22{width:21.729760pt;}
._4c{width:24.531199pt;}
._4{width:25.895633pt;}
._29{width:27.544781pt;}
._20{width:28.756241pt;}
._21{width:29.891665pt;}
._2f{width:30.848725pt;}
._44{width:32.331792pt;}
._31{width:33.984649pt;}
._4b{width:36.343808pt;}
._3f{width:38.182861pt;}
._3b{width:41.116311pt;}
._48{width:43.561394pt;}
._38{width:48.648826pt;}
._3c{width:51.250050pt;}
._46{width:53.561714pt;}
._49{width:56.195132pt;}
._5{width:57.767526pt;}
._39{width:59.015694pt;}
._3d{width:61.335787pt;}
._16{width:63.306023pt;}
._24{width:64.279871pt;}
._35{width:66.802672pt;}
._4a{width:68.902205pt;}
._25{width:74.609164pt;}
._36{width:76.936411pt;}
._18{width:84.547174pt;}
._37{width:87.048815pt;}
._3e{width:94.510447pt;}
._8{width:103.292400pt;}
._28{width:105.095911pt;}
._30{width:120.717949pt;}
._40{width:122.478019pt;}
._41{width:131.877275pt;}
._26{width:138.361515pt;}
._a{width:140.656913pt;}
._3a{width:143.979092pt;}
._c{width:151.164725pt;}
._d{width:153.545364pt;}
._14{width:154.875631pt;}
._b{width:156.533419pt;}
._13{width:158.692579pt;}
._f{width:159.836230pt;}
._47{width:163.171888pt;}
._2e{width:167.819127pt;}
._1c{width:175.661739pt;}
._27{width:178.212181pt;}
._19{width:179.542448pt;}
._23{width:196.137757pt;}
._e{width:202.942759pt;}
._2b{width:203.852846pt;}
._17{width:224.247671pt;}
._12{width:229.794884pt;}
._10{width:231.571478pt;}
._2c{width:232.481565pt;}
._1a{width:252.876390pt;}
._11{width:255.800684pt;}
._2d{width:256.710770pt;}
._2a{width:257.977276pt;}
._15{width:266.648781pt;}
._1d{width:268.370330pt;}
._1e{width:273.216171pt;}
._1b{width:277.105596pt;}
._34{width:390.050268pt;}
._33{width:403.778817pt;}
._32{width:408.984359pt;}
._45{width:461.318095pt;}
._7{width:2188.573926pt;}
._6{width:2210.896676pt;}
.fs9{font-size:25.012475pt;}
.fsb{font-size:26.667733pt;}
.fs10{font-size:33.334400pt;}
.fsc{font-size:34.668053pt;}
.fs6{font-size:35.732107pt;}
.fsa{font-size:37.334827pt;}
.fs7{font-size:38.980480pt;}
.fsd{font-size:40.001600pt;}
.fs5{font-size:42.507200pt;}
.fse{font-size:42.668373pt;}
.fs11{font-size:43.334720pt;}
.fs8{font-size:45.477227pt;}
.fsf{font-size:46.668160pt;}
.fs12{font-size:50.001600pt;}
.fs2{font-size:53.133867pt;}
.fs13{font-size:53.335040pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs3{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.ya7{bottom:5.666893pt;}
.ye3{bottom:7.083560pt;}
.y57{bottom:7.877305pt;}
.y8d{bottom:17.887382pt;}
.y56{bottom:20.388618pt;}
.yc9{bottom:22.359049pt;}
.yd{bottom:32.149333pt;}
.y63{bottom:44.784410pt;}
.y8e{bottom:46.088510pt;}
.y8a{bottom:46.328520pt;}
.y58{bottom:52.978049pt;}
.yca{bottom:57.610177pt;}
.y62{bottom:57.892103pt;}
.yc6{bottom:57.910186pt;}
.y8f{bottom:59.942398pt;}
.y89{bottom:60.182407pt;}
.y64{bottom:60.249562pt;}
.y61{bottom:70.999797pt;}
.y90{bottom:73.796285pt;}
.y88{bottom:74.036295pt;}
.ycb{bottom:74.927398pt;}
.yc5{bottom:75.227407pt;}
.y60{bottom:84.107491pt;}
.y91{bottom:87.656839pt;}
.y87{bottom:87.896849pt;}
.ycc{bottom:92.244618pt;}
.yc4{bottom:92.544628pt;}
.y65{bottom:95.061114pt;}
.y59{bottom:96.510308pt;}
.y92{bottom:101.510727pt;}
.y86{bottom:101.750737pt;}
.y5e{bottom:103.544572pt;}
.ycd{bottom:109.570173pt;}
.yc3{bottom:109.870182pt;}
.y93{bottom:115.364614pt;}
.y85{bottom:115.604624pt;}
.y6b{bottom:120.858656pt;}
.yce{bottom:126.887394pt;}
.yc2{bottom:127.187403pt;}
.y94{bottom:129.218502pt;}
.y84{bottom:129.458511pt;}
.y66{bottom:129.872666pt;}
.y5a{bottom:140.042567pt;}
.y95{bottom:143.079056pt;}
.y83{bottom:143.319066pt;}
.ycf{bottom:144.204614pt;}
.yc1{bottom:144.504624pt;}
.y38{bottom:153.902667pt;}
.y96{bottom:156.932944pt;}
.y82{bottom:157.172953pt;}
.yd0{bottom:161.521835pt;}
.yc0{bottom:161.821845pt;}
.y67{bottom:164.684218pt;}
.y97{bottom:170.786831pt;}
.y81{bottom:171.026841pt;}
.y37{bottom:173.164000pt;}
.yd1{bottom:178.847390pt;}
.ybf{bottom:179.147399pt;}
.y5b{bottom:183.574825pt;}
.y98{bottom:184.640719pt;}
.y80{bottom:184.880728pt;}
.yd2{bottom:196.164610pt;}
.ybe{bottom:196.464620pt;}
.y99{bottom:198.501273pt;}
.y7f{bottom:198.734616pt;}
.y68{bottom:199.584592pt;}
.ya8{bottom:203.288131pt;}
.y36{bottom:208.618667pt;}
.y2e{bottom:211.686667pt;}
.y9a{bottom:212.355161pt;}
.y7e{bottom:212.595170pt;}
.yd3{bottom:213.481831pt;}
.ybd{bottom:213.781841pt;}
.y9b{bottom:226.209048pt;}
.y7d{bottom:226.449058pt;}
.y5c{bottom:227.107084pt;}
.y35{bottom:227.878667pt;}
.yd4{bottom:230.799052pt;}
.y2d{bottom:230.948000pt;}
.ybc{bottom:231.099062pt;}
.y69{bottom:234.307321pt;}
.ye8{bottom:236.822667pt;}
.y9c{bottom:240.062935pt;}
.y7c{bottom:240.302945pt;}
.y34{bottom:247.140000pt;}
.yd5{bottom:248.124606pt;}
.ybb{bottom:248.416282pt;}
.y9d{bottom:253.916823pt;}
.ye4{bottom:254.108131pt;}
.y7b{bottom:254.156833pt;}
.ye7{bottom:256.084000pt;}
.y5f{bottom:261.050321pt;}
.yd6{bottom:265.441827pt;}
.yba{bottom:265.741837pt;}
.y2c{bottom:266.401333pt;}
.y9e{bottom:267.777377pt;}
.y7a{bottom:268.017387pt;}
.y53{bottom:269.026667pt;}
.y6a{bottom:269.118873pt;}
.y5d{bottom:270.639343pt;}
.ye6{bottom:275.345333pt;}
.y9f{bottom:281.631265pt;}
.y79{bottom:281.871274pt;}
.yd7{bottom:282.759048pt;}
.yb9{bottom:283.059058pt;}
.y2b{bottom:285.662667pt;}
.y52{bottom:288.288000pt;}
.yac{bottom:288.822667pt;}
.ye5{bottom:294.606667pt;}
.ya0{bottom:295.485152pt;}
.y78{bottom:295.725162pt;}
.yd8{bottom:300.076269pt;}
.yb8{bottom:300.376278pt;}
.y2a{bottom:304.924000pt;}
.yab{bottom:308.084000pt;}
.ya1{bottom:309.339040pt;}
.y77{bottom:309.579049pt;}
.yd9{bottom:317.393490pt;}
.yb7{bottom:317.693499pt;}
.ya2{bottom:323.199594pt;}
.y76{bottom:323.432937pt;}
.y29{bottom:324.185333pt;}
.y51{bottom:324.628000pt;}
.yad{bottom:327.150667pt;}
.yaa{bottom:327.345333pt;}
.yda{bottom:334.719044pt;}
.yb6{bottom:335.019054pt;}
.ya3{bottom:337.053482pt;}
.y75{bottom:337.293491pt;}
.y28{bottom:343.445333pt;}
.y50{bottom:343.888000pt;}
.ya9{bottom:346.606667pt;}
.ya4{bottom:350.907369pt;}
.y74{bottom:351.147379pt;}
.ydb{bottom:352.036265pt;}
.yb5{bottom:352.336274pt;}
.y27{bottom:362.706667pt;}
.y4f{bottom:363.149333pt;}
.ya5{bottom:364.761257pt;}
.y73{bottom:365.001266pt;}
.ydc{bottom:369.353486pt;}
.yb4{bottom:369.653495pt;}
.ya6{bottom:378.621811pt;}
.y72{bottom:378.855154pt;}
.y71{bottom:379.150667pt;}
.y26{bottom:381.968000pt;}
.y4e{bottom:382.410667pt;}
.ydd{bottom:386.670706pt;}
.yb3{bottom:386.970716pt;}
.y25{bottom:401.229333pt;}
.y8c{bottom:401.269383pt;}
.y4d{bottom:401.672000pt;}
.y8b{bottom:402.642772pt;}
.yde{bottom:403.996261pt;}
.yb2{bottom:404.287937pt;}
.y24{bottom:420.490667pt;}
.y4c{bottom:420.933333pt;}
.ydf{bottom:421.313482pt;}
.yb1{bottom:421.613491pt;}
.ye0{bottom:438.630702pt;}
.yb0{bottom:438.930712pt;}
.y23{bottom:439.750667pt;}
.y4b{bottom:440.193333pt;}
.ye1{bottom:455.947923pt;}
.yaf{bottom:456.247933pt;}
.y22{bottom:459.012000pt;}
.y4a{bottom:459.454667pt;}
.ye2{bottom:473.273478pt;}
.yae{bottom:473.565154pt;}
.y21{bottom:478.273333pt;}
.y49{bottom:478.716000pt;}
.yc{bottom:487.481333pt;}
.y20{bottom:497.534667pt;}
.y48{bottom:497.977333pt;}
.yc8{bottom:501.582717pt;}
.yc7{bottom:503.299438pt;}
.y1f{bottom:516.796000pt;}
.y47{bottom:517.238667pt;}
.y1e{bottom:536.056000pt;}
.y46{bottom:536.500000pt;}
.yb{bottom:540.726667pt;}
.y1d{bottom:555.317333pt;}
.y45{bottom:555.760000pt;}
.y70{bottom:560.350667pt;}
.y1c{bottom:574.578667pt;}
.y44{bottom:575.021333pt;}
.ya{bottom:575.596000pt;}
.y6f{bottom:579.612000pt;}
.y1b{bottom:593.840000pt;}
.y43{bottom:594.282667pt;}
.y6e{bottom:598.873333pt;}
.y9{bottom:610.642667pt;}
.y1a{bottom:613.101333pt;}
.y42{bottom:613.544000pt;}
.y6d{bottom:618.134667pt;}
.y33{bottom:632.361333pt;}
.y19{bottom:632.362667pt;}
.y41{bottom:632.805333pt;}
.y6c{bottom:637.396000pt;}
.y18{bottom:651.622667pt;}
.y40{bottom:652.065333pt;}
.y55{bottom:669.940000pt;}
.y17{bottom:670.884000pt;}
.y3f{bottom:671.326667pt;}
.y8{bottom:681.156000pt;}
.y16{bottom:690.145333pt;}
.y3e{bottom:690.588000pt;}
.y15{bottom:709.406667pt;}
.y3d{bottom:709.849333pt;}
.y14{bottom:728.668000pt;}
.y3c{bottom:729.110667pt;}
.y7{bottom:733.293333pt;}
.y13{bottom:747.928000pt;}
.y3b{bottom:748.370667pt;}
.y6{bottom:764.145333pt;}
.y12{bottom:767.189333pt;}
.y3a{bottom:767.632000pt;}
.y5{bottom:781.113333pt;}
.y11{bottom:786.450667pt;}
.y39{bottom:794.880000pt;}
.y10{bottom:805.712000pt;}
.y4{bottom:811.965333pt;}
.yf{bottom:824.973333pt;}
.y32{bottom:844.233333pt;}
.y3{bottom:844.542667pt;}
.ye{bottom:852.220000pt;}
.y31{bottom:863.494667pt;}
.y30{bottom:882.756000pt;}
.y2{bottom:891.864000pt;}
.y2f{bottom:910.004000pt;}
.y1{bottom:927.634667pt;}
.y54{bottom:992.060000pt;}
.hb{height:33.195127pt;}
.h4{height:35.387155pt;}
.h11{height:36.157696pt;}
.hc{height:36.212866pt;}
.he{height:36.915286pt;}
.h10{height:38.939057pt;}
.h12{height:41.720419pt;}
.hd{height:42.248344pt;}
.h13{height:44.501780pt;}
.h6{height:44.632747pt;}
.h16{height:45.196759pt;}
.h7{height:47.820800pt;}
.h15{height:48.673433pt;}
.h8{height:51.403288pt;}
.h9{height:51.408621pt;}
.h17{height:52.150106pt;}
.h18{height:55.626780pt;}
.h2{height:57.384800pt;}
.h3{height:63.152489pt;}
.h5{height:64.270827pt;}
.h1{height:77.360400pt;}
.ha{height:283.275008pt;}
.hf{height:416.016640pt;}
.h14{height:520.016640pt;}
.h0{height:1056.000000pt;}
.w3{width:540.017280pt;}
.w1{width:576.012726pt;}
.w2{width:720.028800pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:10.980439pt;}
.x10{left:13.257424pt;}
.x1d{left:15.980639pt;}
.x25{left:19.975639pt;}
.x1c{left:21.540862pt;}
.xf{left:26.020930pt;}
.x24{left:26.925862pt;}
.x1b{left:32.141286pt;}
.x8{left:48.000000pt;}
.x23{left:52.926694pt;}
.x11{left:55.209242pt;}
.x4{left:59.210667pt;}
.xd{left:62.810887pt;}
.x1a{left:69.636119pt;}
.x1{left:70.993333pt;}
.x6{left:75.421333pt;}
.x22{left:98.661490pt;}
.xe{left:112.436510pt;}
.xc{left:119.994667pt;}
.x20{left:137.994667pt;}
.x3{left:156.713333pt;}
.xa{left:171.101333pt;}
.xb{left:172.400000pt;}
.x26{left:186.972650pt;}
.x12{left:245.918925pt;}
.x1e{left:293.585076pt;}
.x17{left:298.731771pt;}
.x14{left:304.010378pt;}
.x2{left:305.198667pt;}
.x15{left:308.070844pt;}
.x16{left:312.943404pt;}
.x5{left:328.140000pt;}
.x7{left:330.612000pt;}
.x18{left:344.230153pt;}
.x13{left:356.915950pt;}
.x9{left:404.098667pt;}
.x21{left:481.898754pt;}
.x19{left:673.533607pt;}
}




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