
    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_2ca77ddda7bae8240d44c0a0.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c6b35fbf22de138ab4340f05.woff')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_840fdd7b1b20f8cf6de32352.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c3a14df9759e7fa1878b73c2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_352eb90d3a19c2e93b05a9ea.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{transform:matrix(0.153226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153226,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.185484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185484,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m2{transform:matrix(0.237927,0.000000,-0.076751,0.237927,0,0);-ms-transform:matrix(0.237927,0.000000,-0.076751,0.237927,0,0);-webkit-transform:matrix(0.237927,0.000000,-0.076751,0.237927,0,0);}
.m4{transform:matrix(0.238620,0.000000,-0.074569,0.238620,0,0);-ms-transform:matrix(0.238620,0.000000,-0.074569,0.238620,0,0);-webkit-transform:matrix(0.238620,0.000000,-0.074569,0.238620,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);}
.m8{transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258065,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:-62.346000px;}
.v4{vertical-align:-32.250000px;}
.v1{vertical-align:-5.040000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.666000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.186000px;}
.ls2{letter-spacing:20.379360px;}
.ls3{letter-spacing:21.957552px;}
.ls5{letter-spacing:39.079298px;}
.ls7{letter-spacing:46.525110px;}
.ls9{letter-spacing:46.911360px;}
.lse{letter-spacing:48.465360px;}
.lsc{letter-spacing:53.445360px;}
.lsd{letter-spacing:78.666000px;}
.ls4{letter-spacing:79.439437px;}
.ls6{letter-spacing:82.525875px;}
.ls8{letter-spacing:84.660000px;}
.lsb{letter-spacing:85.938000px;}
.lsa{letter-spacing:121.760250px;}
.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;}
}
.ws8{word-spacing:-55.944000px;}
.ws52{word-spacing:-55.682448px;}
.ws53{word-spacing:-55.496448px;}
.ws19{word-spacing:-38.869200px;}
.ws2f{word-spacing:-38.816448px;}
.ws6{word-spacing:-38.659200px;}
.ws5{word-spacing:-38.655900px;}
.ws11{word-spacing:-38.443200px;}
.ws6f{word-spacing:-38.431800px;}
.ws2a{word-spacing:-38.430000px;}
.ws21{word-spacing:-38.166000px;}
.wse{word-spacing:-38.160000px;}
.ws4{word-spacing:-38.157000px;}
.ws26{word-spacing:-38.154000px;}
.ws31{word-spacing:-38.153400px;}
.ws65{word-spacing:-38.152800px;}
.ws22{word-spacing:-38.149200px;}
.wsa{word-spacing:-38.147400px;}
.ws2{word-spacing:-38.081700px;}
.ws9{word-spacing:-38.067600px;}
.ws0{word-spacing:-37.944000px;}
.ws7{word-spacing:-37.935900px;}
.ws35{word-spacing:-37.928400px;}
.ws3{word-spacing:-37.925400px;}
.ws32{word-spacing:-37.922400px;}
.ws23{word-spacing:-37.918200px;}
.ws42{word-spacing:-37.905300px;}
.ws6a{word-spacing:-37.727700px;}
.ws46{word-spacing:-37.713600px;}
.ws6b{word-spacing:-37.639800px;}
.ws12{word-spacing:-37.432800px;}
.ws66{word-spacing:-37.213200px;}
.ws27{word-spacing:-37.002600px;}
.ws4d{word-spacing:-36.998700px;}
.ws6c{word-spacing:-36.503100px;}
.ws54{word-spacing:-36.332448px;}
.ws20{word-spacing:-35.994000px;}
.wsd{word-spacing:-35.280600px;}
.ws1e{word-spacing:-34.560000px;}
.ws5d{word-spacing:-32.900400px;}
.ws2d{word-spacing:-32.184000px;}
.ws28{word-spacing:-30.954600px;}
.ws6e{word-spacing:-30.749100px;}
.ws59{word-spacing:-30.507000px;}
.ws67{word-spacing:-30.024000px;}
.ws2c{word-spacing:-28.364400px;}
.ws58{word-spacing:-27.847800px;}
.ws25{word-spacing:-26.417700px;}
.ws17{word-spacing:-26.334000px;}
.ws69{word-spacing:-26.194200px;}
.ws55{word-spacing:-25.777136px;}
.ws10{word-spacing:-25.689600px;}
.ws1c{word-spacing:-25.180200px;}
.ws1d{word-spacing:-24.982200px;}
.ws1f{word-spacing:-24.486000px;}
.ws18{word-spacing:-24.264000px;}
.ws48{word-spacing:-24.248448px;}
.wsc{word-spacing:-23.747700px;}
.ws15{word-spacing:-23.544000px;}
.ws24{word-spacing:-23.525400px;}
.ws3c{word-spacing:-23.132448px;}
.wsb{word-spacing:-23.040000px;}
.ws6d{word-spacing:-22.091400px;}
.ws5c{word-spacing:-21.608829px;}
.ws3b{word-spacing:-20.900448px;}
.ws51{word-spacing:-19.944000px;}
.ws64{word-spacing:-18.709200px;}
.ws63{word-spacing:-17.976300px;}
.ws68{word-spacing:-16.339500px;}
.ws61{word-spacing:-15.506448px;}
.ws5e{word-spacing:-14.886000px;}
.ws62{word-spacing:-14.435088px;}
.ws3d{word-spacing:-14.204448px;}
.ws5f{word-spacing:-13.944600px;}
.ws44{word-spacing:-13.829088px;}
.ws14{word-spacing:-13.176000px;}
.ws13{word-spacing:-12.960000px;}
.wsf{word-spacing:-8.400600px;}
.ws34{word-spacing:-4.524214px;}
.ws1a{word-spacing:-3.600000px;}
.ws50{word-spacing:-3.581088px;}
.ws1b{word-spacing:-3.384000px;}
.ws5b{word-spacing:-2.666636px;}
.ws29{word-spacing:-1.917000px;}
.ws2e{word-spacing:-1.459884px;}
.ws3e{word-spacing:-0.812448px;}
.ws38{word-spacing:0.000000px;}
.ws16{word-spacing:2.164500px;}
.ws3a{word-spacing:6.999552px;}
.ws41{word-spacing:11.746800px;}
.ws33{word-spacing:12.716544px;}
.ws2b{word-spacing:20.880000px;}
.ws36{word-spacing:38.579040px;}
.ws60{word-spacing:39.631764px;}
.ws43{word-spacing:40.309764px;}
.ws30{word-spacing:47.455296px;}
.ws49{word-spacing:72.657552px;}
.ws4a{word-spacing:75.402912px;}
.ws4b{word-spacing:89.442192px;}
.ws5a{word-spacing:90.648170px;}
.ws37{word-spacing:90.708480px;}
.ws4c{word-spacing:92.976192px;}
.ws47{word-spacing:110.764116px;}
.ws45{word-spacing:117.103296px;}
.ws57{word-spacing:149.633233px;}
.ws4f{word-spacing:191.083764px;}
.ws56{word-spacing:196.390658px;}
.ws4e{word-spacing:211.973099px;}
.ws1{word-spacing:1037.484900px;}
.ws3f{word-spacing:1132.440912px;}
.ws40{word-spacing:1146.529296px;}
.ws39{word-spacing:1412.400793px;}
._3e{margin-left:-1416.404775px;}
._41{margin-left:-1329.339582px;}
._24{margin-left:-1196.967744px;}
._2c{margin-left:-901.352640px;}
._4d{margin-left:-321.514200px;}
._4f{margin-left:-313.506000px;}
._4a{margin-left:-308.523262px;}
._49{margin-left:-243.574200px;}
._48{margin-left:-239.457075px;}
._47{margin-left:-226.131075px;}
._46{margin-left:-184.014000px;}
._3a{margin-left:-6.546000px;}
._4e{margin-left:-2.516784px;}
._3{margin-left:-1.381800px;}
._0{width:1.076400px;}
._3c{width:4.414552px;}
._3b{width:5.886000px;}
._39{width:7.758000px;}
._45{width:8.778000px;}
._1e{width:12.276000px;}
._1d{width:14.508000px;}
._1{width:18.968400px;}
._b{width:20.321400px;}
._a{width:21.684000px;}
._4{width:22.828800px;}
._4b{width:24.048000px;}
._e{width:25.072200px;}
._c{width:26.706600px;}
._1c{width:27.977400px;}
._9{width:29.857200px;}
._6{width:31.377600px;}
._2{width:33.330000px;}
._13{width:35.670000px;}
._36{width:36.940500px;}
._11{width:38.298000px;}
._1f{width:41.292000px;}
._4c{width:42.340800px;}
._7{width:43.783200px;}
._23{width:44.863800px;}
._20{width:46.129800px;}
._5{width:48.844800px;}
._22{width:50.419200px;}
._2a{width:51.783360px;}
._d{width:52.932000px;}
._2b{width:54.219360px;}
._3d{width:57.586350px;}
._8{width:59.250600px;}
._25{width:68.890800px;}
._1b{width:76.406400px;}
._14{width:79.292256px;}
._29{width:80.552256px;}
._16{width:82.491168px;}
._15{width:86.658000px;}
._17{width:89.446968px;}
._f{width:97.794000px;}
._10{width:99.102000px;}
._12{width:100.974000px;}
._38{width:107.067360px;}
._37{width:112.131360px;}
._28{width:116.642256px;}
._18{width:127.383648px;}
._1a{width:137.493648px;}
._35{width:139.613088px;}
._19{width:142.731648px;}
._30{width:147.126000px;}
._27{width:172.425648px;}
._26{width:208.395648px;}
._33{width:214.688640px;}
._31{width:217.992000px;}
._34{width:219.277632px;}
._32{width:236.547360px;}
._42{width:238.935461px;}
._44{width:240.028211px;}
._2f{width:244.404000px;}
._21{width:248.838000px;}
._43{width:257.477335px;}
._40{width:259.530543px;}
._2d{width:287.565648px;}
._2e{width:351.061800px;}
._3f{width:456.905606px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs2{font-size:41.292000px;}
.fs1{font-size:46.800000px;}
.fs8{font-size:69.120000px;}
.fs3{font-size:71.424000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:72.858877px;}
.fs6{font-size:73.728000px;}
.fs4{font-size:75.048180px;}
.fs7{font-size:77.244156px;}
.fsa{font-size:93.558000px;}
.fs5{font-size:96.576000px;}
.fsb{font-size:112.716000px;}
.y0{bottom:0.000000px;}
.y45{bottom:4.252500px;}
.y4f{bottom:4.326000px;}
.y7e{bottom:4.336500px;}
.y5c{bottom:4.398000px;}
.y49{bottom:4.473000px;}
.y8d{bottom:4.921500px;}
.y60{bottom:5.271000px;}
.y83{bottom:7.453500px;}
.y7c{bottom:7.492500px;}
.y73{bottom:7.500000px;}
.y46{bottom:8.829000px;}
.y4b{bottom:9.324000px;}
.y66{bottom:9.601500px;}
.y63{bottom:9.930000px;}
.y56{bottom:10.447500px;}
.y70{bottom:10.498500px;}
.y4c{bottom:10.662000px;}
.y69{bottom:11.829000px;}
.y4{bottom:12.240000px;}
.y5d{bottom:12.358500px;}
.y8a{bottom:12.984000px;}
.y35{bottom:14.130000px;}
.y32{bottom:14.190000px;}
.y37{bottom:14.250000px;}
.y78{bottom:14.925000px;}
.y41{bottom:15.046500px;}
.y91{bottom:15.300000px;}
.y82{bottom:15.516000px;}
.y88{bottom:17.719500px;}
.y7a{bottom:19.600500px;}
.y68{bottom:19.807500px;}
.y8c{bottom:23.953500px;}
.y61{bottom:24.048000px;}
.y67{bottom:24.771000px;}
.y77{bottom:27.109500px;}
.y79{bottom:31.786500px;}
.y8b{bottom:35.296500px;}
.y62{bottom:35.436000px;}
.y55{bottom:37.432500px;}
.y6f{bottom:37.615500px;}
.y89{bottom:43.359000px;}
.y31{bottom:45.330000px;}
.y40{bottom:46.005000px;}
.y87{bottom:48.094500px;}
.y51{bottom:63.106500px;}
.y3{bottom:63.975000px;}
.y54{bottom:64.419000px;}
.y6e{bottom:64.734000px;}
.y33{bottom:66.390000px;}
.y58{bottom:75.195000px;}
.y2e{bottom:76.290000px;}
.y53{bottom:91.404000px;}
.y6d{bottom:91.851000px;}
.y30{bottom:97.350000px;}
.y4e{bottom:103.800000px;}
.y2d{bottom:107.430000px;}
.y4d{bottom:108.436500px;}
.y8e{bottom:110.055000px;}
.y52{bottom:118.390500px;}
.y6c{bottom:118.968000px;}
.y22{bottom:126.796500px;}
.y2f{bottom:128.490000px;}
.y57{bottom:129.213000px;}
.y4a{bottom:156.375000px;}
.y86{bottom:158.400000px;}
.y2c{bottom:159.450000px;}
.y48{bottom:162.525000px;}
.y47{bottom:167.115000px;}
.y85{bottom:174.750000px;}
.y21{bottom:178.815000px;}
.y84{bottom:182.236500px;}
.y2b{bottom:190.590000px;}
.y20{bottom:209.775000px;}
.y44{bottom:218.475000px;}
.y2a{bottom:221.550000px;}
.y43{bottom:227.415000px;}
.y81{bottom:231.600000px;}
.y80{bottom:239.115000px;}
.y1f{bottom:240.915000px;}
.y42{bottom:259.275000px;}
.y1e{bottom:271.875000px;}
.y7f{bottom:272.955000px;}
.y3f{bottom:297.150000px;}
.y76{bottom:300.000000px;}
.y1d{bottom:303.015000px;}
.y7d{bottom:310.500000px;}
.y7b{bottom:312.075000px;}
.y75{bottom:319.575000px;}
.y1c{bottom:355.036500px;}
.y3e{bottom:360.825000px;}
.y74{bottom:364.215000px;}
.y1b{bottom:386.175000px;}
.y3d{bottom:392.625000px;}
.y72{bottom:412.350000px;}
.y71{bottom:419.836500px;}
.y3c{bottom:424.425000px;}
.y1a{bottom:438.196500px;}
.y3b{bottom:456.225000px;}
.y6b{bottom:467.775000px;}
.y19{bottom:469.155000px;}
.y3a{bottom:488.025000px;}
.y18{bottom:500.296500px;}
.y39{bottom:519.825000px;}
.y17{bottom:531.255000px;}
.y6a{bottom:532.515000px;}
.y38{bottom:551.625000px;}
.y16{bottom:562.215000px;}
.y36{bottom:583.425000px;}
.y15{bottom:593.355000px;}
.ya2{bottom:598.575000px;}
.y34{bottom:615.225000px;}
.ya1{bottom:620.715000px;}
.y65{bottom:637.725000px;}
.ya0{bottom:642.855000px;}
.y14{bottom:645.375000px;}
.y29{bottom:647.025000px;}
.y9f{bottom:664.996500px;}
.y9e{bottom:686.955000px;}
.y13{bottom:697.396500px;}
.y64{bottom:708.555000px;}
.y9d{bottom:718.096500px;}
.y12{bottom:728.536500px;}
.y5f{bottom:756.675000px;}
.y11{bottom:759.496500px;}
.y9c{bottom:770.115000px;}
.y10{bottom:790.636500px;}
.yf{bottom:821.596500px;}
.y9b{bottom:822.136500px;}
.y5e{bottom:849.136500px;}
.ye{bottom:852.736500px;}
.y9a{bottom:853.275000px;}
.y99{bottom:884.236500px;}
.y5b{bottom:897.300000px;}
.yd{bottom:897.555000px;}
.y98{bottom:915.375000px;}
.yc{bottom:921.315000px;}
.y97{bottom:946.336500px;}
.y5a{bottom:956.236500px;}
.y28{bottom:973.336500px;}
.y59{bottom:987.375000px;}
.y96{bottom:998.355000px;}
.y27{bottom:1004.475000px;}
.yb{bottom:1027.155000px;}
.y95{bottom:1029.495000px;}
.y26{bottom:1035.436500px;}
.y50{bottom:1035.525000px;}
.ya{bottom:1049.295000px;}
.y94{bottom:1060.455000px;}
.y25{bottom:1066.575000px;}
.y9{bottom:1071.255000px;}
.y93{bottom:1091.595000px;}
.y8{bottom:1093.395000px;}
.y24{bottom:1097.536500px;}
.y7{bottom:1115.536500px;}
.y92{bottom:1122.555000px;}
.y23{bottom:1128.675000px;}
.y6{bottom:1137.495000px;}
.y90{bottom:1149.825000px;}
.y8f{bottom:1157.115000px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.hd{height:16.575000px;}
.h13{height:20.400000px;}
.h1a{height:23.700000px;}
.h1f{height:24.150000px;}
.h9{height:26.625000px;}
.h24{height:27.000000px;}
.h22{height:27.150000px;}
.h21{height:28.650000px;}
.h19{height:28.670520px;}
.ha{height:28.690682px;}
.he{height:30.600000px;}
.h7{height:31.725000px;}
.h3{height:32.700000px;}
.h1c{height:35.625000px;}
.h14{height:47.992500px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.hb{height:49.592250px;}
.h18{height:49.627125px;}
.h20{height:49.875000px;}
.h5{height:50.027344px;}
.h15{height:50.588537px;}
.h12{height:51.192000px;}
.h10{height:51.228000px;}
.hc{height:52.108649px;}
.h11{height:53.633393px;}
.h1b{height:57.225000px;}
.h25{height:63.000000px;}
.h8{height:63.600000px;}
.h17{height:64.960682px;}
.hf{height:67.056188px;}
.h23{height:68.293125px;}
.h1d{height:78.262770px;}
.h1e{height:138.600000px;}
.h16{height:140.925000px;}
.h6{height:239.025000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.wa{width:15.300000px;}
.w19{width:37.425000px;}
.w14{width:55.650000px;}
.w15{width:63.000000px;}
.w17{width:66.075000px;}
.w16{width:67.500000px;}
.wb{width:69.825000px;}
.w13{width:84.075000px;}
.w1b{width:85.125000px;}
.w18{width:85.500000px;}
.wc{width:86.400000px;}
.w3{width:88.200000px;}
.w1a{width:93.075000px;}
.w11{width:106.200000px;}
.w6{width:120.300000px;}
.w4{width:123.375000px;}
.w8{width:124.125000px;}
.w5{width:127.125000px;}
.w7{width:130.200000px;}
.w10{width:151.575000px;}
.we{width:247.275000px;}
.w9{width:251.475000px;}
.wf{width:261.150000px;}
.w12{width:372.225000px;}
.wd{width:639.000000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:1.590000px;}
.x1e{left:2.971500px;}
.x25{left:4.125000px;}
.x4{left:11.760000px;}
.x2a{left:12.991500px;}
.x41{left:14.250000px;}
.x1c{left:16.342500px;}
.x18{left:17.869500px;}
.x31{left:19.321500px;}
.x4a{left:22.002000px;}
.x3a{left:26.695500px;}
.x48{left:28.677000px;}
.x2b{left:30.016500px;}
.x2d{left:33.391500px;}
.x15{left:39.292500px;}
.x34{left:40.666500px;}
.x33{left:42.069000px;}
.x1f{left:44.476500px;}
.x23{left:45.562500px;}
.x4f{left:46.992000px;}
.x35{left:52.446000px;}
.x2f{left:56.043000px;}
.x1d{left:58.125000px;}
.x39{left:61.884000px;}
.x4e{left:67.252500px;}
.x21{left:72.807000px;}
.x38{left:74.503500px;}
.xf{left:80.055000px;}
.x30{left:87.418500px;}
.x51{left:90.513000px;}
.x2e{left:93.093000px;}
.x50{left:103.176000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.xd{left:129.600000px;}
.x28{left:135.171000px;}
.x4d{left:139.335000px;}
.xc{left:148.138500px;}
.x2{left:160.560000px;}
.x36{left:186.150000px;}
.xb{left:203.038500px;}
.x32{left:205.575000px;}
.x10{left:212.550000px;}
.x14{left:224.100000px;}
.x17{left:238.377000px;}
.x29{left:240.466500px;}
.x4b{left:297.538500px;}
.x20{left:298.650000px;}
.x19{left:304.575000px;}
.x9{left:308.700000px;}
.x8{left:317.700000px;}
.x1a{left:319.860000px;}
.x37{left:326.175000px;}
.xa{left:336.060000px;}
.x7{left:342.900000px;}
.x6{left:344.520000px;}
.x27{left:346.500000px;}
.x26{left:353.550000px;}
.x52{left:370.800000px;}
.x4c{left:373.500000px;}
.x5{left:374.938500px;}
.x22{left:398.520000px;}
.x2c{left:401.400000px;}
.x3b{left:411.838500px;}
.x3c{left:422.625000px;}
.x1b{left:456.825000px;}
.x11{left:462.900000px;}
.x53{left:469.980000px;}
.x3d{left:479.880000px;}
.x3e{left:496.950000px;}
.x47{left:520.050000px;}
.x3f{left:561.780000px;}
.x49{left:563.400000px;}
.x40{left:572.400000px;}
.x12{left:583.125000px;}
.x24{left:628.405500px;}
.x42{left:641.700000px;}
.x43{left:652.500000px;}
.x13{left:713.250000px;}
.x44{left:720.360000px;}
.x45{left:737.250000px;}
.xe{left:750.960000px;}
.x46{left:824.578500px;}
@media print{
.v2{vertical-align:-55.418667pt;}
.v4{vertical-align:-28.666667pt;}
.v1{vertical-align:-4.480000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.592000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.165333pt;}
.ls2{letter-spacing:18.114987pt;}
.ls3{letter-spacing:19.517824pt;}
.ls5{letter-spacing:34.737153pt;}
.ls7{letter-spacing:41.355653pt;}
.ls9{letter-spacing:41.698987pt;}
.lse{letter-spacing:43.080320pt;}
.lsc{letter-spacing:47.506987pt;}
.lsd{letter-spacing:69.925333pt;}
.ls4{letter-spacing:70.612833pt;}
.ls6{letter-spacing:73.356333pt;}
.ls8{letter-spacing:75.253333pt;}
.lsb{letter-spacing:76.389333pt;}
.lsa{letter-spacing:108.231333pt;}
.ws8{word-spacing:-49.728000pt;}
.ws52{word-spacing:-49.495509pt;}
.ws53{word-spacing:-49.330176pt;}
.ws19{word-spacing:-34.550400pt;}
.ws2f{word-spacing:-34.503509pt;}
.ws6{word-spacing:-34.363733pt;}
.ws5{word-spacing:-34.360800pt;}
.ws11{word-spacing:-34.171733pt;}
.ws6f{word-spacing:-34.161600pt;}
.ws2a{word-spacing:-34.160000pt;}
.ws21{word-spacing:-33.925333pt;}
.wse{word-spacing:-33.920000pt;}
.ws4{word-spacing:-33.917333pt;}
.ws26{word-spacing:-33.914667pt;}
.ws31{word-spacing:-33.914133pt;}
.ws65{word-spacing:-33.913600pt;}
.ws22{word-spacing:-33.910400pt;}
.wsa{word-spacing:-33.908800pt;}
.ws2{word-spacing:-33.850400pt;}
.ws9{word-spacing:-33.837867pt;}
.ws0{word-spacing:-33.728000pt;}
.ws7{word-spacing:-33.720800pt;}
.ws35{word-spacing:-33.714133pt;}
.ws3{word-spacing:-33.711467pt;}
.ws32{word-spacing:-33.708800pt;}
.ws23{word-spacing:-33.705067pt;}
.ws42{word-spacing:-33.693600pt;}
.ws6a{word-spacing:-33.535733pt;}
.ws46{word-spacing:-33.523200pt;}
.ws6b{word-spacing:-33.457600pt;}
.ws12{word-spacing:-33.273600pt;}
.ws66{word-spacing:-33.078400pt;}
.ws27{word-spacing:-32.891200pt;}
.ws4d{word-spacing:-32.887733pt;}
.ws6c{word-spacing:-32.447200pt;}
.ws54{word-spacing:-32.295509pt;}
.ws20{word-spacing:-31.994667pt;}
.wsd{word-spacing:-31.360533pt;}
.ws1e{word-spacing:-30.720000pt;}
.ws5d{word-spacing:-29.244800pt;}
.ws2d{word-spacing:-28.608000pt;}
.ws28{word-spacing:-27.515200pt;}
.ws6e{word-spacing:-27.332533pt;}
.ws59{word-spacing:-27.117333pt;}
.ws67{word-spacing:-26.688000pt;}
.ws2c{word-spacing:-25.212800pt;}
.ws58{word-spacing:-24.753600pt;}
.ws25{word-spacing:-23.482400pt;}
.ws17{word-spacing:-23.408000pt;}
.ws69{word-spacing:-23.283733pt;}
.ws55{word-spacing:-22.913009pt;}
.ws10{word-spacing:-22.835200pt;}
.ws1c{word-spacing:-22.382400pt;}
.ws1d{word-spacing:-22.206400pt;}
.ws1f{word-spacing:-21.765333pt;}
.ws18{word-spacing:-21.568000pt;}
.ws48{word-spacing:-21.554176pt;}
.wsc{word-spacing:-21.109067pt;}
.ws15{word-spacing:-20.928000pt;}
.ws24{word-spacing:-20.911467pt;}
.ws3c{word-spacing:-20.562176pt;}
.wsb{word-spacing:-20.480000pt;}
.ws6d{word-spacing:-19.636800pt;}
.ws5c{word-spacing:-19.207848pt;}
.ws3b{word-spacing:-18.578176pt;}
.ws51{word-spacing:-17.728000pt;}
.ws64{word-spacing:-16.630400pt;}
.ws63{word-spacing:-15.978933pt;}
.ws68{word-spacing:-14.524000pt;}
.ws61{word-spacing:-13.783509pt;}
.ws5e{word-spacing:-13.232000pt;}
.ws62{word-spacing:-12.831189pt;}
.ws3d{word-spacing:-12.626176pt;}
.ws5f{word-spacing:-12.395200pt;}
.ws44{word-spacing:-12.292523pt;}
.ws14{word-spacing:-11.712000pt;}
.ws13{word-spacing:-11.520000pt;}
.wsf{word-spacing:-7.467200pt;}
.ws34{word-spacing:-4.021524pt;}
.ws1a{word-spacing:-3.200000pt;}
.ws50{word-spacing:-3.183189pt;}
.ws1b{word-spacing:-3.008000pt;}
.ws5b{word-spacing:-2.370343pt;}
.ws29{word-spacing:-1.704000pt;}
.ws2e{word-spacing:-1.297675pt;}
.ws3e{word-spacing:-0.722176pt;}
.ws38{word-spacing:0.000000pt;}
.ws16{word-spacing:1.924000pt;}
.ws3a{word-spacing:6.221824pt;}
.ws41{word-spacing:10.441600pt;}
.ws33{word-spacing:11.303595pt;}
.ws2b{word-spacing:18.560000pt;}
.ws36{word-spacing:34.292480pt;}
.ws60{word-spacing:35.228235pt;}
.ws43{word-spacing:35.830901pt;}
.ws30{word-spacing:42.182485pt;}
.ws49{word-spacing:64.584491pt;}
.ws4a{word-spacing:67.024811pt;}
.ws4b{word-spacing:79.504171pt;}
.ws5a{word-spacing:80.576151pt;}
.ws37{word-spacing:80.629760pt;}
.ws4c{word-spacing:82.645504pt;}
.ws47{word-spacing:98.456992pt;}
.ws45{word-spacing:104.091819pt;}
.ws57{word-spacing:133.007319pt;}
.ws4f{word-spacing:169.852235pt;}
.ws56{word-spacing:174.569473pt;}
.ws4e{word-spacing:188.420532pt;}
.ws1{word-spacing:922.208800pt;}
.ws3f{word-spacing:1006.614144pt;}
.ws40{word-spacing:1019.137152pt;}
.ws39{word-spacing:1255.467372pt;}
._3e{margin-left:-1259.026467pt;}
._41{margin-left:-1181.635184pt;}
._24{margin-left:-1063.971328pt;}
._2c{margin-left:-801.202347pt;}
._4d{margin-left:-285.790400pt;}
._4f{margin-left:-278.672000pt;}
._4a{margin-left:-274.242900pt;}
._49{margin-left:-216.510400pt;}
._48{margin-left:-212.850733pt;}
._47{margin-left:-201.005400pt;}
._46{margin-left:-163.568000pt;}
._3a{margin-left:-5.818667pt;}
._4e{margin-left:-2.237141pt;}
._3{margin-left:-1.228267pt;}
._0{width:0.956800pt;}
._3c{width:3.924047pt;}
._3b{width:5.232000pt;}
._39{width:6.896000pt;}
._45{width:7.802667pt;}
._1e{width:10.912000pt;}
._1d{width:12.896000pt;}
._1{width:16.860800pt;}
._b{width:18.063467pt;}
._a{width:19.274667pt;}
._4{width:20.292267pt;}
._4b{width:21.376000pt;}
._e{width:22.286400pt;}
._c{width:23.739200pt;}
._1c{width:24.868800pt;}
._9{width:26.539733pt;}
._6{width:27.891200pt;}
._2{width:29.626667pt;}
._13{width:31.706667pt;}
._36{width:32.836000pt;}
._11{width:34.042667pt;}
._1f{width:36.704000pt;}
._4c{width:37.636267pt;}
._7{width:38.918400pt;}
._23{width:39.878933pt;}
._20{width:41.004267pt;}
._5{width:43.417600pt;}
._22{width:44.817067pt;}
._2a{width:46.029653pt;}
._d{width:47.050667pt;}
._2b{width:48.194987pt;}
._3d{width:51.187867pt;}
._8{width:52.667200pt;}
._25{width:61.236267pt;}
._1b{width:67.916800pt;}
._14{width:70.482005pt;}
._29{width:71.602005pt;}
._16{width:73.325483pt;}
._15{width:77.029333pt;}
._17{width:79.508416pt;}
._f{width:86.928000pt;}
._10{width:88.090667pt;}
._12{width:89.754667pt;}
._38{width:95.170987pt;}
._37{width:99.672320pt;}
._28{width:103.682005pt;}
._18{width:113.229909pt;}
._1a{width:122.216576pt;}
._35{width:124.100523pt;}
._19{width:126.872576pt;}
._30{width:130.778667pt;}
._27{width:153.267243pt;}
._26{width:185.240576pt;}
._33{width:190.834347pt;}
._31{width:193.770667pt;}
._34{width:194.913451pt;}
._32{width:210.264320pt;}
._42{width:212.387076pt;}
._44{width:213.358409pt;}
._2f{width:217.248000pt;}
._21{width:221.189333pt;}
._43{width:228.868743pt;}
._40{width:230.693816pt;}
._2d{width:255.613909pt;}
._2e{width:312.054933pt;}
._3f{width:406.138316pt;}
.fs2{font-size:36.704000pt;}
.fs1{font-size:41.600000pt;}
.fs8{font-size:61.440000pt;}
.fs3{font-size:63.488000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:64.763446pt;}
.fs6{font-size:65.536000pt;}
.fs4{font-size:66.709494pt;}
.fs7{font-size:68.661472pt;}
.fsa{font-size:83.162667pt;}
.fs5{font-size:85.845333pt;}
.fsb{font-size:100.192000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:3.780000pt;}
.y4f{bottom:3.845333pt;}
.y7e{bottom:3.854667pt;}
.y5c{bottom:3.909333pt;}
.y49{bottom:3.976000pt;}
.y8d{bottom:4.374667pt;}
.y60{bottom:4.685333pt;}
.y83{bottom:6.625333pt;}
.y7c{bottom:6.660000pt;}
.y73{bottom:6.666667pt;}
.y46{bottom:7.848000pt;}
.y4b{bottom:8.288000pt;}
.y66{bottom:8.534667pt;}
.y63{bottom:8.826667pt;}
.y56{bottom:9.286667pt;}
.y70{bottom:9.332000pt;}
.y4c{bottom:9.477333pt;}
.y69{bottom:10.514667pt;}
.y4{bottom:10.880000pt;}
.y5d{bottom:10.985333pt;}
.y8a{bottom:11.541333pt;}
.y35{bottom:12.560000pt;}
.y32{bottom:12.613333pt;}
.y37{bottom:12.666667pt;}
.y78{bottom:13.266667pt;}
.y41{bottom:13.374667pt;}
.y91{bottom:13.600000pt;}
.y82{bottom:13.792000pt;}
.y88{bottom:15.750667pt;}
.y7a{bottom:17.422667pt;}
.y68{bottom:17.606667pt;}
.y8c{bottom:21.292000pt;}
.y61{bottom:21.376000pt;}
.y67{bottom:22.018667pt;}
.y77{bottom:24.097333pt;}
.y79{bottom:28.254667pt;}
.y8b{bottom:31.374667pt;}
.y62{bottom:31.498667pt;}
.y55{bottom:33.273333pt;}
.y6f{bottom:33.436000pt;}
.y89{bottom:38.541333pt;}
.y31{bottom:40.293333pt;}
.y40{bottom:40.893333pt;}
.y87{bottom:42.750667pt;}
.y51{bottom:56.094667pt;}
.y3{bottom:56.866667pt;}
.y54{bottom:57.261333pt;}
.y6e{bottom:57.541333pt;}
.y33{bottom:59.013333pt;}
.y58{bottom:66.840000pt;}
.y2e{bottom:67.813333pt;}
.y53{bottom:81.248000pt;}
.y6d{bottom:81.645333pt;}
.y30{bottom:86.533333pt;}
.y4e{bottom:92.266667pt;}
.y2d{bottom:95.493333pt;}
.y4d{bottom:96.388000pt;}
.y8e{bottom:97.826667pt;}
.y52{bottom:105.236000pt;}
.y6c{bottom:105.749333pt;}
.y22{bottom:112.708000pt;}
.y2f{bottom:114.213333pt;}
.y57{bottom:114.856000pt;}
.y4a{bottom:139.000000pt;}
.y86{bottom:140.800000pt;}
.y2c{bottom:141.733333pt;}
.y48{bottom:144.466667pt;}
.y47{bottom:148.546667pt;}
.y85{bottom:155.333333pt;}
.y21{bottom:158.946667pt;}
.y84{bottom:161.988000pt;}
.y2b{bottom:169.413333pt;}
.y20{bottom:186.466667pt;}
.y44{bottom:194.200000pt;}
.y2a{bottom:196.933333pt;}
.y43{bottom:202.146667pt;}
.y81{bottom:205.866667pt;}
.y80{bottom:212.546667pt;}
.y1f{bottom:214.146667pt;}
.y42{bottom:230.466667pt;}
.y1e{bottom:241.666667pt;}
.y7f{bottom:242.626667pt;}
.y3f{bottom:264.133333pt;}
.y76{bottom:266.666667pt;}
.y1d{bottom:269.346667pt;}
.y7d{bottom:276.000000pt;}
.y7b{bottom:277.400000pt;}
.y75{bottom:284.066667pt;}
.y1c{bottom:315.588000pt;}
.y3e{bottom:320.733333pt;}
.y74{bottom:323.746667pt;}
.y1b{bottom:343.266667pt;}
.y3d{bottom:349.000000pt;}
.y72{bottom:366.533333pt;}
.y71{bottom:373.188000pt;}
.y3c{bottom:377.266667pt;}
.y1a{bottom:389.508000pt;}
.y3b{bottom:405.533333pt;}
.y6b{bottom:415.800000pt;}
.y19{bottom:417.026667pt;}
.y3a{bottom:433.800000pt;}
.y18{bottom:444.708000pt;}
.y39{bottom:462.066667pt;}
.y17{bottom:472.226667pt;}
.y6a{bottom:473.346667pt;}
.y38{bottom:490.333333pt;}
.y16{bottom:499.746667pt;}
.y36{bottom:518.600000pt;}
.y15{bottom:527.426667pt;}
.ya2{bottom:532.066667pt;}
.y34{bottom:546.866667pt;}
.ya1{bottom:551.746667pt;}
.y65{bottom:566.866667pt;}
.ya0{bottom:571.426667pt;}
.y14{bottom:573.666667pt;}
.y29{bottom:575.133333pt;}
.y9f{bottom:591.108000pt;}
.y9e{bottom:610.626667pt;}
.y13{bottom:619.908000pt;}
.y64{bottom:629.826667pt;}
.y9d{bottom:638.308000pt;}
.y12{bottom:647.588000pt;}
.y5f{bottom:672.600000pt;}
.y11{bottom:675.108000pt;}
.y9c{bottom:684.546667pt;}
.y10{bottom:702.788000pt;}
.yf{bottom:730.308000pt;}
.y9b{bottom:730.788000pt;}
.y5e{bottom:754.788000pt;}
.ye{bottom:757.988000pt;}
.y9a{bottom:758.466667pt;}
.y99{bottom:785.988000pt;}
.y5b{bottom:797.600000pt;}
.yd{bottom:797.826667pt;}
.y98{bottom:813.666667pt;}
.yc{bottom:818.946667pt;}
.y97{bottom:841.188000pt;}
.y5a{bottom:849.988000pt;}
.y28{bottom:865.188000pt;}
.y59{bottom:877.666667pt;}
.y96{bottom:887.426667pt;}
.y27{bottom:892.866667pt;}
.yb{bottom:913.026667pt;}
.y95{bottom:915.106667pt;}
.y26{bottom:920.388000pt;}
.y50{bottom:920.466667pt;}
.ya{bottom:932.706667pt;}
.y94{bottom:942.626667pt;}
.y25{bottom:948.066667pt;}
.y9{bottom:952.226667pt;}
.y93{bottom:970.306667pt;}
.y8{bottom:971.906667pt;}
.y24{bottom:975.588000pt;}
.y7{bottom:991.588000pt;}
.y92{bottom:997.826667pt;}
.y23{bottom:1003.266667pt;}
.y6{bottom:1011.106667pt;}
.y90{bottom:1022.066667pt;}
.y8f{bottom:1028.546667pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.hd{height:14.733333pt;}
.h13{height:18.133333pt;}
.h1a{height:21.066667pt;}
.h1f{height:21.466667pt;}
.h9{height:23.666667pt;}
.h24{height:24.000000pt;}
.h22{height:24.133333pt;}
.h21{height:25.466667pt;}
.h19{height:25.484906pt;}
.ha{height:25.502828pt;}
.he{height:27.200000pt;}
.h7{height:28.200000pt;}
.h3{height:29.066667pt;}
.h1c{height:31.666667pt;}
.h14{height:42.660000pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.hb{height:44.082000pt;}
.h18{height:44.113000pt;}
.h20{height:44.333333pt;}
.h5{height:44.468750pt;}
.h15{height:44.967588pt;}
.h12{height:45.504000pt;}
.h10{height:45.536000pt;}
.hc{height:46.318799pt;}
.h11{height:47.674127pt;}
.h1b{height:50.866667pt;}
.h25{height:56.000000pt;}
.h8{height:56.533333pt;}
.h17{height:57.742828pt;}
.hf{height:59.605500pt;}
.h23{height:60.705000pt;}
.h1d{height:69.566906pt;}
.h1e{height:123.200000pt;}
.h16{height:125.266667pt;}
.h6{height:212.466667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.wa{width:13.600000pt;}
.w19{width:33.266667pt;}
.w14{width:49.466667pt;}
.w15{width:56.000000pt;}
.w17{width:58.733333pt;}
.w16{width:60.000000pt;}
.wb{width:62.066667pt;}
.w13{width:74.733333pt;}
.w1b{width:75.666667pt;}
.w18{width:76.000000pt;}
.wc{width:76.800000pt;}
.w3{width:78.400000pt;}
.w1a{width:82.733333pt;}
.w11{width:94.400000pt;}
.w6{width:106.933333pt;}
.w4{width:109.666667pt;}
.w8{width:110.333333pt;}
.w5{width:113.000000pt;}
.w7{width:115.733333pt;}
.w10{width:134.733333pt;}
.we{width:219.800000pt;}
.w9{width:223.533333pt;}
.wf{width:232.133333pt;}
.w12{width:330.866667pt;}
.wd{width:568.000000pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:1.413333pt;}
.x1e{left:2.641333pt;}
.x25{left:3.666667pt;}
.x4{left:10.453333pt;}
.x2a{left:11.548000pt;}
.x41{left:12.666667pt;}
.x1c{left:14.526667pt;}
.x18{left:15.884000pt;}
.x31{left:17.174667pt;}
.x4a{left:19.557333pt;}
.x3a{left:23.729333pt;}
.x48{left:25.490667pt;}
.x2b{left:26.681333pt;}
.x2d{left:29.681333pt;}
.x15{left:34.926667pt;}
.x34{left:36.148000pt;}
.x33{left:37.394667pt;}
.x1f{left:39.534667pt;}
.x23{left:40.500000pt;}
.x4f{left:41.770667pt;}
.x35{left:46.618667pt;}
.x2f{left:49.816000pt;}
.x1d{left:51.666667pt;}
.x39{left:55.008000pt;}
.x4e{left:59.780000pt;}
.x21{left:64.717333pt;}
.x38{left:66.225333pt;}
.xf{left:71.160000pt;}
.x30{left:77.705333pt;}
.x51{left:80.456000pt;}
.x2e{left:82.749333pt;}
.x50{left:91.712000pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.xd{left:115.200000pt;}
.x28{left:120.152000pt;}
.x4d{left:123.853333pt;}
.xc{left:131.678667pt;}
.x2{left:142.720000pt;}
.x36{left:165.466667pt;}
.xb{left:180.478667pt;}
.x32{left:182.733333pt;}
.x10{left:188.933333pt;}
.x14{left:199.200000pt;}
.x17{left:211.890667pt;}
.x29{left:213.748000pt;}
.x4b{left:264.478667pt;}
.x20{left:265.466667pt;}
.x19{left:270.733333pt;}
.x9{left:274.400000pt;}
.x8{left:282.400000pt;}
.x1a{left:284.320000pt;}
.x37{left:289.933333pt;}
.xa{left:298.720000pt;}
.x7{left:304.800000pt;}
.x6{left:306.240000pt;}
.x27{left:308.000000pt;}
.x26{left:314.266667pt;}
.x52{left:329.600000pt;}
.x4c{left:332.000000pt;}
.x5{left:333.278667pt;}
.x22{left:354.240000pt;}
.x2c{left:356.800000pt;}
.x3b{left:366.078667pt;}
.x3c{left:375.666667pt;}
.x1b{left:406.066667pt;}
.x11{left:411.466667pt;}
.x53{left:417.760000pt;}
.x3d{left:426.560000pt;}
.x3e{left:441.733333pt;}
.x47{left:462.266667pt;}
.x3f{left:499.360000pt;}
.x49{left:500.800000pt;}
.x40{left:508.800000pt;}
.x12{left:518.333333pt;}
.x24{left:558.582667pt;}
.x42{left:570.400000pt;}
.x43{left:580.000000pt;}
.x13{left:634.000000pt;}
.x44{left:640.320000pt;}
.x45{left:655.333333pt;}
.xe{left:667.520000pt;}
.x46{left:732.958667pt;}
}




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