
    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_2d0e4d1f1c06dea28870b300.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.208000;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_7f4c65b131e077e105197f73.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.208000;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_d3c08383e8902c2cc9000749.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.208000;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_dc2733ad2acbe68883625b6a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.208000;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_e326de5a771cc3f1155134f2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.208000;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_8a0a69f3d65b03b6a753f850.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.208000;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_6afc37cf4009719badbde2ca.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.208000;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_1531a071ce81fdcfa557e5eb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.208000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_336e986ff526ceda9221e0e3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.208000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_aa7ef89df6f4ade5afc938f4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.208000;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_36942c9e09ed432ec1f8443a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.208000;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_c19fd136b08856b54ca4430b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.208000;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_5d6a43bf5f77406daa9cb84d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.208000;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_d51ec932cf3a5a3dabab233d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.740723;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_70d61eea72cd05e691e4dcc5.woff2')format("woff");}.fff{font-family:fff;line-height:1.208000;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_112cd12d449d31d8f63e2c02.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.708008;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;}
.v1{vertical-align:12.240000px;}
.v2{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.768000px;}
.ls2d{letter-spacing:-0.744000px;}
.ls29{letter-spacing:-0.732000px;}
.ls1f{letter-spacing:-0.535800px;}
.lsc{letter-spacing:-0.449400px;}
.ls8{letter-spacing:-0.410400px;}
.ls6{letter-spacing:-0.366000px;}
.ls2a{letter-spacing:-0.294000px;}
.ls19{letter-spacing:-0.285000px;}
.ls28{letter-spacing:-0.198600px;}
.ls5{letter-spacing:-0.191400px;}
.ls1e{letter-spacing:-0.190200px;}
.ls26{letter-spacing:-0.169800px;}
.ls13{letter-spacing:-0.161400px;}
.ls9{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.100800px;}
.ls18{letter-spacing:-0.048960px;}
.ls17{letter-spacing:-0.046080px;}
.ls7{letter-spacing:-0.017280px;}
.ls2b{letter-spacing:-0.014400px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.060600px;}
.ls2c{letter-spacing:0.094800px;}
.ls20{letter-spacing:0.097800px;}
.ls25{letter-spacing:0.129600px;}
.ls3{letter-spacing:0.139200px;}
.ls27{letter-spacing:0.169800px;}
.lse{letter-spacing:0.184200px;}
.ls1{letter-spacing:0.198720px;}
.ls2{letter-spacing:0.210240px;}
.ls0{letter-spacing:0.233400px;}
.lsd{letter-spacing:0.236400px;}
.ls1d{letter-spacing:0.239040px;}
.lsa{letter-spacing:0.246240px;}
.ls11{letter-spacing:0.259200px;}
.ls15{letter-spacing:0.270600px;}
.lsb{letter-spacing:0.335400px;}
.ls16{letter-spacing:0.385800px;}
.ls1a{letter-spacing:0.385920px;}
.ls14{letter-spacing:6.330240px;}
.ls22{letter-spacing:28.650240px;}
.ls21{letter-spacing:68.970240px;}
.ls1c{letter-spacing:99.210240px;}
.ls23{letter-spacing:164.850240px;}
.ls24{letter-spacing:205.230240px;}
.ls1b{letter-spacing:847.560000px;}
.sc_{text-shadow:none;}
.sc6{text-shadow:-0.015em 0 rgb(0,0,10),0 0.015em rgb(0,0,10),0.015em 0 rgb(0,0,10),0 -0.015em  rgb(0,0,10);}
.sc5{text-shadow:-0.015em 0 rgb(191,191,191),0 0.015em rgb(191,191,191),0.015em 0 rgb(191,191,191),0 -0.015em  rgb(191,191,191);}
.sc4{text-shadow:-0.015em 0 rgb(127,127,127),0 0.015em rgb(127,127,127),0.015em 0 rgb(127,127,127),0 -0.015em  rgb(127,127,127);}
.sc3{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(153,153,153),0 0.015em rgb(153,153,153),0.015em 0 rgb(153,153,153),0 -0.015em  rgb(153,153,153);}
.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;}
.sc6{-webkit-text-stroke:0.015em rgb(0,0,10);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(191,191,191);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(127,127,127);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(153,153,153);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-36.335640px;}
.ws4{word-spacing:-36.102240px;}
.ws17{word-spacing:-19.540800px;}
.ws15{word-spacing:-19.491840px;}
.ws16{word-spacing:-19.255800px;}
.ws13{word-spacing:-18.420360px;}
.ws10{word-spacing:-18.386160px;}
.ws6{word-spacing:-18.348480px;}
.ws1d{word-spacing:-18.319560px;}
.ws20{word-spacing:-18.279360px;}
.ws19{word-spacing:-18.247560px;}
.ws23{word-spacing:-18.244560px;}
.ws7{word-spacing:-18.149760px;}
.ws21{word-spacing:-18.135360px;}
.ws14{word-spacing:-18.103680px;}
.ws11{word-spacing:-18.048960px;}
.ws12{word-spacing:-17.988360px;}
.ws1b{word-spacing:-17.979960px;}
.ws1e{word-spacing:-17.951160px;}
.ws1a{word-spacing:-17.864760px;}
.ws1f{word-spacing:-17.855760px;}
.wsf{word-spacing:-17.700360px;}
.ws22{word-spacing:-17.417760px;}
.ws24{word-spacing:-17.405760px;}
.ws9{word-spacing:-14.146080px;}
.ws8{word-spacing:-14.006880px;}
.wsb{word-spacing:-12.312000px;}
.wsa{word-spacing:-12.168000px;}
.wse{word-spacing:-11.442240px;}
.ws1c{word-spacing:-10.653120px;}
.ws0{word-spacing:-8.920800px;}
.wsd{word-spacing:-8.285760px;}
.ws2{word-spacing:-8.268480px;}
.ws18{word-spacing:-8.095560px;}
.ws3{word-spacing:-7.875360px;}
.ws1{word-spacing:-4.932000px;}
.wsc{word-spacing:0.000000px;}
._15{margin-left:-6.031680px;}
._11{margin-left:-4.040640px;}
._3{margin-left:-2.231520px;}
._1{margin-left:-1.088640px;}
._0{width:1.874880px;}
._2{width:2.997600px;}
._5{width:4.018080px;}
._4{width:5.052960px;}
._1b{width:6.066240px;}
._6{width:7.071840px;}
._7{width:8.660160px;}
._b{width:10.372320px;}
._12{width:11.674080px;}
._8{width:12.736800px;}
._f{width:14.656320px;}
._9{width:15.747840px;}
._a{width:16.915680px;}
._d{width:18.165600px;}
._c{width:19.501920px;}
._e{width:21.169440px;}
._23{width:22.190400px;}
._14{width:23.316480px;}
._18{width:24.366720px;}
._16{width:25.502400px;}
._20{width:26.893440px;}
._29{width:28.224480px;}
._10{width:29.449920px;}
._13{width:30.828480px;}
._17{width:32.626560px;}
._1e{width:33.848640px;}
._1f{width:34.983360px;}
._1c{width:37.094400px;}
._1d{width:38.808000px;}
._19{width:43.387200px;}
._1a{width:44.812800px;}
._2a{width:55.189440px;}
._31{width:56.203920px;}
._2f{width:57.297600px;}
._30{width:58.336800px;}
._26{width:69.816960px;}
._24{width:98.830080px;}
._25{width:99.918720px;}
._28{width:148.756800px;}
._2b{width:164.436480px;}
._22{width:191.098560px;}
._21{width:192.360960px;}
._2c{width:204.067440px;}
._2d{width:205.577040px;}
._2e{width:248.802720px;}
._27{width:368.294400px;}
.fc7{color:transparent;}
.fc1{color:rgb(0,0,10);}
.fc6{color:rgb(191,191,191);}
.fc5{color:rgb(127,127,127);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(153,153,153);}
.fc0{color:rgb(166,166,166);}
.fs8{font-size:12.240000px;}
.fs4{font-size:18.000000px;}
.fs1{font-size:30.240000px;}
.fs2{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs6{font-size:51.120000px;}
.fs9{font-size:54.000000px;}
.fs3{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fsb{font-size:84.240000px;}
.fs5{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:1.500000px;}
.y60{bottom:2.520000px;}
.yb{bottom:3.060000px;}
.y54{bottom:4.680000px;}
.y5f{bottom:13.680000px;}
.ya{bottom:16.560000px;}
.y5e{bottom:25.020000px;}
.y9{bottom:30.060000px;}
.y5d{bottom:36.180000px;}
.y8{bottom:43.020000px;}
.y5c{bottom:47.556000px;}
.y7{bottom:54.216000px;}
.y6{bottom:65.556000px;}
.y10e{bottom:70.056000px;}
.y8a{bottom:72.936000px;}
.ye5{bottom:75.276000px;}
.y5{bottom:76.716000px;}
.yc3{bottom:81.936000px;}
.yf4{bottom:82.116000px;}
.y4{bottom:88.056000px;}
.y10d{bottom:94.896000px;}
.y89{bottom:97.776000px;}
.y3{bottom:99.216000px;}
.ye4{bottom:100.116000px;}
.y55{bottom:101.280000px;}
.yaf{bottom:106.776000px;}
.y2{bottom:111.996000px;}
.y10c{bottom:119.556000px;}
.y88{bottom:122.616000px;}
.ye3{bottom:124.776000px;}
.y1{bottom:129.996000px;}
.yae{bottom:131.616000px;}
.y10b{bottom:144.396000px;}
.y87{bottom:147.276000px;}
.ye2{bottom:149.616000px;}
.yad{bottom:156.270000px;}
.y3b{bottom:163.110000px;}
.y86{bottom:172.110000px;}
.ye1{bottom:174.270000px;}
.y3a{bottom:178.950000px;}
.yfa{bottom:180.930000px;}
.yac{bottom:181.110000px;}
.y10a{bottom:183.990000px;}
.y39{bottom:194.610000px;}
.y85{bottom:196.770000px;}
.ye0{bottom:199.110000px;}
.yc2{bottom:205.770000px;}
.y109{bottom:208.830000px;}
.y38{bottom:210.450000px;}
.yab{bottom:214.770000px;}
.y12a{bottom:220.710000px;}
.y84{bottom:221.610000px;}
.ydf{bottom:223.770000px;}
.y37{bottom:226.110000px;}
.yf7{bottom:230.430000px;}
.yc1{bottom:230.610000px;}
.y108{bottom:233.670000px;}
.yf3{bottom:239.430000px;}
.yaa{bottom:239.610000px;}
.y36{bottom:241.950000px;}
.y129{bottom:245.550000px;}
.y83{bottom:246.270000px;}
.yde{bottom:248.610000px;}
.yc0{bottom:255.270000px;}
.y35{bottom:257.610000px;}
.y107{bottom:258.330000px;}
.ya9{bottom:264.270000px;}
.y128{bottom:270.390000px;}
.y82{bottom:271.110000px;}
.y34{bottom:273.450000px;}
.ybf{bottom:280.110000px;}
.ydd{bottom:282.270000px;}
.y33{bottom:289.110000px;}
.y81{bottom:295.770000px;}
.y106{bottom:297.930000px;}
.ybe{bottom:304.815000px;}
.y32{bottom:304.995000px;}
.ydc{bottom:307.155000px;}
.y127{bottom:310.035000px;}
.ya8{bottom:313.815000px;}
.yf6{bottom:315.435000px;}
.y31{bottom:327.135000px;}
.y80{bottom:329.475000px;}
.ybd{bottom:329.655000px;}
.ydb{bottom:331.815000px;}
.y105{bottom:333.435000px;}
.y126{bottom:334.875000px;}
.ya7{bottom:338.655000px;}
.y30{bottom:343.155000px;}
.y7f{bottom:354.315000px;}
.yda{bottom:356.655000px;}
.y125{bottom:359.715000px;}
.ya6{bottom:363.315000px;}
.y2f{bottom:367.815000px;}
.y7e{bottom:379.155000px;}
.yd9{bottom:381.315000px;}
.y2e{bottom:383.655000px;}
.yf5{bottom:387.975000px;}
.yf2{bottom:388.155000px;}
.ya5{bottom:396.975000px;}
.yec{bottom:398.775000px;}
.y124{bottom:399.315000px;}
.y2d{bottom:399.495000px;}
.y7d{bottom:403.815000px;}
.yd8{bottom:406.155000px;}
.yf1{bottom:412.815000px;}
.y2c{bottom:415.155000px;}
.ya4{bottom:421.815000px;}
.y123{bottom:424.155000px;}
.y7c{bottom:428.655000px;}
.yd7{bottom:430.815000px;}
.y2b{bottom:430.995000px;}
.yeb{bottom:437.475000px;}
.yf0{bottom:437.655000px;}
.y104{bottom:446.475000px;}
.y2a{bottom:446.655000px;}
.ybc{bottom:453.315000px;}
.yd6{bottom:455.655000px;}
.y7b{bottom:462.315000px;}
.y29{bottom:462.495000px;}
.y122{bottom:463.755000px;}
.ya3{bottom:471.315000px;}
.y28{bottom:478.155000px;}
.yd5{bottom:480.315000px;}
.y7a{bottom:487.155000px;}
.y121{bottom:488.595000px;}
.y27{bottom:493.995000px;}
.ya2{bottom:496.155000px;}
.ybb{bottom:502.815000px;}
.yd4{bottom:505.155000px;}
.y26{bottom:511.815000px;}
.y120{bottom:513.435000px;}
.ya1{bottom:520.815000px;}
.yd3{bottom:529.815000px;}
.y25{bottom:535.395000px;}
.y79{bottom:536.655000px;}
.y11f{bottom:538.095000px;}
.yba{bottom:538.275000px;}
.ya0{bottom:545.655000px;}
.y24{bottom:554.475000px;}
.yd2{bottom:554.655000px;}
.y78{bottom:561.345000px;}
.y11e{bottom:562.965000px;}
.y9f{bottom:570.345000px;}
.y23{bottom:573.765000px;}
.yb9{bottom:577.005000px;}
.yd1{bottom:579.345000px;}
.y77{bottom:586.185000px;}
.y11d{bottom:587.625000px;}
.y22{bottom:592.845000px;}
.y9e{bottom:595.185000px;}
.y103{bottom:604.005000px;}
.yd0{bottom:604.185000px;}
.y76{bottom:610.845000px;}
.y21{bottom:611.925000px;}
.y9d{bottom:619.845000px;}
.y11c{bottom:627.405000px;}
.ycf{bottom:628.845000px;}
.y20{bottom:631.005000px;}
.y75{bottom:635.685000px;}
.y9c{bottom:644.685000px;}
.y1f{bottom:651.345000px;}
.y11b{bottom:652.245000px;}
.yce{bottom:653.685000px;}
.y74{bottom:660.345000px;}
.y9b{bottom:669.345000px;}
.y11a{bottom:676.905000px;}
.ycd{bottom:678.345000px;}
.y1e{bottom:685.005000px;}
.y73{bottom:685.185000px;}
.yf9{bottom:694.005000px;}
.y9a{bottom:694.185000px;}
.yea{bottom:703.005000px;}
.ycc{bottom:703.185000px;}
.y135{bottom:703.905000px;}
.y1d{bottom:709.845000px;}
.y119{bottom:716.505000px;}
.y99{bottom:718.845000px;}
.ye9{bottom:727.845000px;}
.y72{bottom:734.685000px;}
.ycb{bottom:736.845000px;}
.y134{bottom:737.565000px;}
.y118{bottom:741.345000px;}
.y1c{bottom:743.505000px;}
.y98{bottom:743.685000px;}
.ye8{bottom:752.685000px;}
.y71{bottom:759.345000px;}
.yca{bottom:761.685000px;}
.y133{bottom:762.405000px;}
.y1b{bottom:768.345000px;}
.y97{bottom:777.345000px;}
.y117{bottom:781.125000px;}
.y70{bottom:784.185000px;}
.yc9{bottom:786.345000px;}
.y132{bottom:787.245000px;}
.yb8{bottom:793.185000px;}
.y96{bottom:802.185000px;}
.y116{bottom:805.965000px;}
.y1a{bottom:807.945000px;}
.yc8{bottom:811.185000px;}
.y131{bottom:811.905000px;}
.yb7{bottom:817.890000px;}
.y6f{bottom:819.510000px;}
.y95{bottom:826.890000px;}
.y115{bottom:830.670000px;}
.yc7{bottom:835.890000px;}
.y130{bottom:836.790000px;}
.yb6{bottom:842.730000px;}
.y6e{bottom:848.310000px;}
.y94{bottom:851.730000px;}
.y114{bottom:855.510000px;}
.y19{bottom:857.490000px;}
.yc6{bottom:860.730000px;}
.y12f{bottom:861.450000px;}
.yb5{bottom:867.390000px;}
.y6d{bottom:868.650000px;}
.y93{bottom:876.390000px;}
.yc5{bottom:885.390000px;}
.y12e{bottom:886.290000px;}
.y6c{bottom:888.810000px;}
.yb4{bottom:892.230000px;}
.y102{bottom:894.390000px;}
.y113{bottom:895.110000px;}
.yef{bottom:901.050000px;}
.y92{bottom:901.230000px;}
.y18{bottom:906.990000px;}
.yc4{bottom:910.230000px;}
.y6b{bottom:916.890000px;}
.y101{bottom:919.230000px;}
.y112{bottom:919.950000px;}
.y12d{bottom:921.570000px;}
.ye7{bottom:925.890000px;}
.y91{bottom:934.890000px;}
.y56{bottom:938.310000px;}
.y6a{bottom:941.730000px;}
.y100{bottom:943.890000px;}
.y111{bottom:944.790000px;}
.y17{bottom:947.670000px;}
.ye6{bottom:950.730000px;}
.y69{bottom:957.570000px;}
.y16{bottom:958.830000px;}
.yf8{bottom:959.550000px;}
.y90{bottom:959.730000px;}
.y12c{bottom:960.450000px;}
.yb3{bottom:966.390000px;}
.yff{bottom:968.730000px;}
.y110{bottom:969.450000px;}
.y15{bottom:970.170000px;}
.y68{bottom:973.230000px;}
.yee{bottom:975.390000px;}
.y14{bottom:981.330000px;}
.y8f{bottom:984.390000px;}
.y67{bottom:989.070000px;}
.y13{bottom:992.670000px;}
.yfe{bottom:993.390000px;}
.y12b{bottom:994.110000px;}
.yb2{bottom:1000.050000px;}
.yed{bottom:1000.230000px;}
.y12{bottom:1003.830000px;}
.y66{bottom:1004.730000px;}
.y10f{bottom:1009.050000px;}
.y8e{bottom:1009.230000px;}
.y11{bottom:1015.170000px;}
.yfd{bottom:1018.230000px;}
.y65{bottom:1020.570000px;}
.yb1{bottom:1024.890000px;}
.y10{bottom:1026.330000px;}
.y8d{bottom:1033.890000px;}
.y64{bottom:1036.230000px;}
.yf{bottom:1037.670000px;}
.yfc{bottom:1042.890000px;}
.y4e{bottom:1048.230000px;}
.y53{bottom:1048.710000px;}
.y42{bottom:1048.830000px;}
.y4b{bottom:1049.730000px;}
.y45{bottom:1050.030000px;}
.y48{bottom:1050.330000px;}
.y63{bottom:1052.070000px;}
.y3e{bottom:1057.230000px;}
.ye{bottom:1057.830000px;}
.yb0{bottom:1058.550000px;}
.y8c{bottom:1058.730000px;}
.y50{bottom:1069.680000px;}
.y4d{bottom:1071.480000px;}
.y52{bottom:1071.960000px;}
.y41{bottom:1072.080000px;}
.y4a{bottom:1072.980000px;}
.y44{bottom:1073.280000px;}
.y47{bottom:1073.580000px;}
.y62{bottom:1074.240000px;}
.yfb{bottom:1078.380000px;}
.y3d{bottom:1080.480000px;}
.yd{bottom:1081.080000px;}
.y8b{bottom:1083.420000px;}
.y61{bottom:1090.260000px;}
.y4f{bottom:1103.520000px;}
.y4c{bottom:1105.320000px;}
.y51{bottom:1105.800000px;}
.y40{bottom:1105.920000px;}
.y49{bottom:1106.820000px;}
.y43{bottom:1107.120000px;}
.y46{bottom:1107.420000px;}
.y5b{bottom:1108.800000px;}
.y3c{bottom:1114.320000px;}
.yc{bottom:1114.920000px;}
.y5a{bottom:1132.200000px;}
.y59{bottom:1144.260000px;}
.y58{bottom:1160.100000px;}
.y57{bottom:1175.760000px;}
.h9{height:11.505600px;}
.h2{height:28.425600px;}
.h5{height:29.160000px;}
.h3{height:33.840000px;}
.h8{height:39.254400px;}
.h15{height:39.313477px;}
.h1{height:45.345600px;}
.h7{height:48.052800px;}
.h17{height:50.760000px;}
.h4{height:62.265600px;}
.h16{height:67.680000px;}
.h18{height:79.185600px;}
.h6{height:123.854400px;}
.h14{height:1080.000000px;}
.h11{height:1176.600000px;}
.h10{height:1178.400000px;}
.h12{height:1178.880000px;}
.hc{height:1179.000000px;}
.hf{height:1179.900000px;}
.hd{height:1180.200000px;}
.he{height:1180.500000px;}
.h13{height:1183.320000px;}
.hb{height:1186.500000px;}
.ha{height:1187.400000px;}
.h0{height:1188.000000px;}
.wa{width:810.000000px;}
.w7{width:915.899986px;}
.w6{width:916.499986px;}
.w8{width:916.739986px;}
.w3{width:916.799986px;}
.w4{width:917.099986px;}
.w5{width:917.249986px;}
.w9{width:917.339986px;}
.w2{width:917.399986px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:1.200014px;}
.x2{left:53.999986px;}
.xc{left:104.760012px;}
.xa{left:138.995986px;}
.xe{left:316.514986px;}
.x10{left:393.194986px;}
.x11{left:455.654986px;}
.xf{left:456.914986px;}
.x1{left:459.074986px;}
.x5{left:508.034986px;}
.x6{left:528.044986px;}
.x4{left:612.824986px;}
.x8{left:618.764986px;}
.xd{left:681.689988px;}
.x7{left:694.184986px;}
.x3{left:708.764986px;}
.x9{left:864.149986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880000pt;}
.v2{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.682667pt;}
.ls2d{letter-spacing:-0.661333pt;}
.ls29{letter-spacing:-0.650667pt;}
.ls1f{letter-spacing:-0.476267pt;}
.lsc{letter-spacing:-0.399467pt;}
.ls8{letter-spacing:-0.364800pt;}
.ls6{letter-spacing:-0.325333pt;}
.ls2a{letter-spacing:-0.261333pt;}
.ls19{letter-spacing:-0.253333pt;}
.ls28{letter-spacing:-0.176533pt;}
.ls5{letter-spacing:-0.170133pt;}
.ls1e{letter-spacing:-0.169067pt;}
.ls26{letter-spacing:-0.150933pt;}
.ls13{letter-spacing:-0.143467pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.089600pt;}
.ls18{letter-spacing:-0.043520pt;}
.ls17{letter-spacing:-0.040960pt;}
.ls7{letter-spacing:-0.015360pt;}
.ls2b{letter-spacing:-0.012800pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.053867pt;}
.ls2c{letter-spacing:0.084267pt;}
.ls20{letter-spacing:0.086933pt;}
.ls25{letter-spacing:0.115200pt;}
.ls3{letter-spacing:0.123733pt;}
.ls27{letter-spacing:0.150933pt;}
.lse{letter-spacing:0.163733pt;}
.ls1{letter-spacing:0.176640pt;}
.ls2{letter-spacing:0.186880pt;}
.ls0{letter-spacing:0.207467pt;}
.lsd{letter-spacing:0.210133pt;}
.ls1d{letter-spacing:0.212480pt;}
.lsa{letter-spacing:0.218880pt;}
.ls11{letter-spacing:0.230400pt;}
.ls15{letter-spacing:0.240533pt;}
.lsb{letter-spacing:0.298133pt;}
.ls16{letter-spacing:0.342933pt;}
.ls1a{letter-spacing:0.343040pt;}
.ls14{letter-spacing:5.626880pt;}
.ls22{letter-spacing:25.466880pt;}
.ls21{letter-spacing:61.306880pt;}
.ls1c{letter-spacing:88.186880pt;}
.ls23{letter-spacing:146.533547pt;}
.ls24{letter-spacing:182.426880pt;}
.ls1b{letter-spacing:753.386667pt;}
.ws5{word-spacing:-32.298347pt;}
.ws4{word-spacing:-32.090880pt;}
.ws17{word-spacing:-17.369600pt;}
.ws15{word-spacing:-17.326080pt;}
.ws16{word-spacing:-17.116267pt;}
.ws13{word-spacing:-16.373653pt;}
.ws10{word-spacing:-16.343253pt;}
.ws6{word-spacing:-16.309760pt;}
.ws1d{word-spacing:-16.284053pt;}
.ws20{word-spacing:-16.248320pt;}
.ws19{word-spacing:-16.220053pt;}
.ws23{word-spacing:-16.217387pt;}
.ws7{word-spacing:-16.133120pt;}
.ws21{word-spacing:-16.120320pt;}
.ws14{word-spacing:-16.092160pt;}
.ws11{word-spacing:-16.043520pt;}
.ws12{word-spacing:-15.989653pt;}
.ws1b{word-spacing:-15.982187pt;}
.ws1e{word-spacing:-15.956587pt;}
.ws1a{word-spacing:-15.879787pt;}
.ws1f{word-spacing:-15.871787pt;}
.wsf{word-spacing:-15.733653pt;}
.ws22{word-spacing:-15.482453pt;}
.ws24{word-spacing:-15.471787pt;}
.ws9{word-spacing:-12.574293pt;}
.ws8{word-spacing:-12.450560pt;}
.wsb{word-spacing:-10.944000pt;}
.wsa{word-spacing:-10.816000pt;}
.wse{word-spacing:-10.170880pt;}
.ws1c{word-spacing:-9.469440pt;}
.ws0{word-spacing:-7.929600pt;}
.wsd{word-spacing:-7.365120pt;}
.ws2{word-spacing:-7.349760pt;}
.ws18{word-spacing:-7.196053pt;}
.ws3{word-spacing:-7.000320pt;}
.ws1{word-spacing:-4.384000pt;}
.wsc{word-spacing:0.000000pt;}
._15{margin-left:-5.361493pt;}
._11{margin-left:-3.591680pt;}
._3{margin-left:-1.983573pt;}
._1{margin-left:-0.967680pt;}
._0{width:1.666560pt;}
._2{width:2.664533pt;}
._5{width:3.571627pt;}
._4{width:4.491520pt;}
._1b{width:5.392213pt;}
._6{width:6.286080pt;}
._7{width:7.697920pt;}
._b{width:9.219840pt;}
._12{width:10.376960pt;}
._8{width:11.321600pt;}
._f{width:13.027840pt;}
._9{width:13.998080pt;}
._a{width:15.036160pt;}
._d{width:16.147200pt;}
._c{width:17.335040pt;}
._e{width:18.817280pt;}
._23{width:19.724800pt;}
._14{width:20.725760pt;}
._18{width:21.659307pt;}
._16{width:22.668800pt;}
._20{width:23.905280pt;}
._29{width:25.088427pt;}
._10{width:26.177707pt;}
._13{width:27.403093pt;}
._17{width:29.001387pt;}
._1e{width:30.087680pt;}
._1f{width:31.096320pt;}
._1c{width:32.972800pt;}
._1d{width:34.496000pt;}
._19{width:38.566400pt;}
._1a{width:39.833600pt;}
._2a{width:49.057280pt;}
._31{width:49.959040pt;}
._2f{width:50.931200pt;}
._30{width:51.854933pt;}
._26{width:62.059520pt;}
._24{width:87.848960pt;}
._25{width:88.816640pt;}
._28{width:132.228267pt;}
._2b{width:146.165760pt;}
._22{width:169.865387pt;}
._21{width:170.987520pt;}
._2c{width:181.393280pt;}
._2d{width:182.735147pt;}
._2e{width:221.157973pt;}
._27{width:327.372800pt;}
.fs8{font-size:10.880000pt;}
.fs4{font-size:16.000000pt;}
.fs1{font-size:26.880000pt;}
.fs2{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs6{font-size:45.440000pt;}
.fs9{font-size:48.000000pt;}
.fs3{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fsb{font-size:74.880000pt;}
.fs5{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:1.333333pt;}
.y60{bottom:2.240000pt;}
.yb{bottom:2.720000pt;}
.y54{bottom:4.160000pt;}
.y5f{bottom:12.160000pt;}
.ya{bottom:14.720000pt;}
.y5e{bottom:22.240000pt;}
.y9{bottom:26.720000pt;}
.y5d{bottom:32.160000pt;}
.y8{bottom:38.240000pt;}
.y5c{bottom:42.272000pt;}
.y7{bottom:48.192000pt;}
.y6{bottom:58.272000pt;}
.y10e{bottom:62.272000pt;}
.y8a{bottom:64.832000pt;}
.ye5{bottom:66.912000pt;}
.y5{bottom:68.192000pt;}
.yc3{bottom:72.832000pt;}
.yf4{bottom:72.992000pt;}
.y4{bottom:78.272000pt;}
.y10d{bottom:84.352000pt;}
.y89{bottom:86.912000pt;}
.y3{bottom:88.192000pt;}
.ye4{bottom:88.992000pt;}
.y55{bottom:90.026667pt;}
.yaf{bottom:94.912000pt;}
.y2{bottom:99.552000pt;}
.y10c{bottom:106.272000pt;}
.y88{bottom:108.992000pt;}
.ye3{bottom:110.912000pt;}
.y1{bottom:115.552000pt;}
.yae{bottom:116.992000pt;}
.y10b{bottom:128.352000pt;}
.y87{bottom:130.912000pt;}
.ye2{bottom:132.992000pt;}
.yad{bottom:138.906667pt;}
.y3b{bottom:144.986667pt;}
.y86{bottom:152.986667pt;}
.ye1{bottom:154.906667pt;}
.y3a{bottom:159.066667pt;}
.yfa{bottom:160.826667pt;}
.yac{bottom:160.986667pt;}
.y10a{bottom:163.546667pt;}
.y39{bottom:172.986667pt;}
.y85{bottom:174.906667pt;}
.ye0{bottom:176.986667pt;}
.yc2{bottom:182.906667pt;}
.y109{bottom:185.626667pt;}
.y38{bottom:187.066667pt;}
.yab{bottom:190.906667pt;}
.y12a{bottom:196.186667pt;}
.y84{bottom:196.986667pt;}
.ydf{bottom:198.906667pt;}
.y37{bottom:200.986667pt;}
.yf7{bottom:204.826667pt;}
.yc1{bottom:204.986667pt;}
.y108{bottom:207.706667pt;}
.yf3{bottom:212.826667pt;}
.yaa{bottom:212.986667pt;}
.y36{bottom:215.066667pt;}
.y129{bottom:218.266667pt;}
.y83{bottom:218.906667pt;}
.yde{bottom:220.986667pt;}
.yc0{bottom:226.906667pt;}
.y35{bottom:228.986667pt;}
.y107{bottom:229.626667pt;}
.ya9{bottom:234.906667pt;}
.y128{bottom:240.346667pt;}
.y82{bottom:240.986667pt;}
.y34{bottom:243.066667pt;}
.ybf{bottom:248.986667pt;}
.ydd{bottom:250.906667pt;}
.y33{bottom:256.986667pt;}
.y81{bottom:262.906667pt;}
.y106{bottom:264.826667pt;}
.ybe{bottom:270.946667pt;}
.y32{bottom:271.106667pt;}
.ydc{bottom:273.026667pt;}
.y127{bottom:275.586667pt;}
.ya8{bottom:278.946667pt;}
.yf6{bottom:280.386667pt;}
.y31{bottom:290.786667pt;}
.y80{bottom:292.866667pt;}
.ybd{bottom:293.026667pt;}
.ydb{bottom:294.946667pt;}
.y105{bottom:296.386667pt;}
.y126{bottom:297.666667pt;}
.ya7{bottom:301.026667pt;}
.y30{bottom:305.026667pt;}
.y7f{bottom:314.946667pt;}
.yda{bottom:317.026667pt;}
.y125{bottom:319.746667pt;}
.ya6{bottom:322.946667pt;}
.y2f{bottom:326.946667pt;}
.y7e{bottom:337.026667pt;}
.yd9{bottom:338.946667pt;}
.y2e{bottom:341.026667pt;}
.yf5{bottom:344.866667pt;}
.yf2{bottom:345.026667pt;}
.ya5{bottom:352.866667pt;}
.yec{bottom:354.466667pt;}
.y124{bottom:354.946667pt;}
.y2d{bottom:355.106667pt;}
.y7d{bottom:358.946667pt;}
.yd8{bottom:361.026667pt;}
.yf1{bottom:366.946667pt;}
.y2c{bottom:369.026667pt;}
.ya4{bottom:374.946667pt;}
.y123{bottom:377.026667pt;}
.y7c{bottom:381.026667pt;}
.yd7{bottom:382.946667pt;}
.y2b{bottom:383.106667pt;}
.yeb{bottom:388.866667pt;}
.yf0{bottom:389.026667pt;}
.y104{bottom:396.866667pt;}
.y2a{bottom:397.026667pt;}
.ybc{bottom:402.946667pt;}
.yd6{bottom:405.026667pt;}
.y7b{bottom:410.946667pt;}
.y29{bottom:411.106667pt;}
.y122{bottom:412.226667pt;}
.ya3{bottom:418.946667pt;}
.y28{bottom:425.026667pt;}
.yd5{bottom:426.946667pt;}
.y7a{bottom:433.026667pt;}
.y121{bottom:434.306667pt;}
.y27{bottom:439.106667pt;}
.ya2{bottom:441.026667pt;}
.ybb{bottom:446.946667pt;}
.yd4{bottom:449.026667pt;}
.y26{bottom:454.946667pt;}
.y120{bottom:456.386667pt;}
.ya1{bottom:462.946667pt;}
.yd3{bottom:470.946667pt;}
.y25{bottom:475.906667pt;}
.y79{bottom:477.026667pt;}
.y11f{bottom:478.306667pt;}
.yba{bottom:478.466667pt;}
.ya0{bottom:485.026667pt;}
.y24{bottom:492.866667pt;}
.yd2{bottom:493.026667pt;}
.y78{bottom:498.973333pt;}
.y11e{bottom:500.413333pt;}
.y9f{bottom:506.973333pt;}
.y23{bottom:510.013333pt;}
.yb9{bottom:512.893333pt;}
.yd1{bottom:514.973333pt;}
.y77{bottom:521.053333pt;}
.y11d{bottom:522.333333pt;}
.y22{bottom:526.973333pt;}
.y9e{bottom:529.053333pt;}
.y103{bottom:536.893333pt;}
.yd0{bottom:537.053333pt;}
.y76{bottom:542.973333pt;}
.y21{bottom:543.933333pt;}
.y9d{bottom:550.973333pt;}
.y11c{bottom:557.693333pt;}
.ycf{bottom:558.973333pt;}
.y20{bottom:560.893333pt;}
.y75{bottom:565.053333pt;}
.y9c{bottom:573.053333pt;}
.y1f{bottom:578.973333pt;}
.y11b{bottom:579.773333pt;}
.yce{bottom:581.053333pt;}
.y74{bottom:586.973333pt;}
.y9b{bottom:594.973333pt;}
.y11a{bottom:601.693333pt;}
.ycd{bottom:602.973333pt;}
.y1e{bottom:608.893333pt;}
.y73{bottom:609.053333pt;}
.yf9{bottom:616.893333pt;}
.y9a{bottom:617.053333pt;}
.yea{bottom:624.893333pt;}
.ycc{bottom:625.053333pt;}
.y135{bottom:625.693333pt;}
.y1d{bottom:630.973333pt;}
.y119{bottom:636.893333pt;}
.y99{bottom:638.973333pt;}
.ye9{bottom:646.973333pt;}
.y72{bottom:653.053333pt;}
.ycb{bottom:654.973333pt;}
.y134{bottom:655.613333pt;}
.y118{bottom:658.973333pt;}
.y1c{bottom:660.893333pt;}
.y98{bottom:661.053333pt;}
.ye8{bottom:669.053333pt;}
.y71{bottom:674.973333pt;}
.yca{bottom:677.053333pt;}
.y133{bottom:677.693333pt;}
.y1b{bottom:682.973333pt;}
.y97{bottom:690.973333pt;}
.y117{bottom:694.333333pt;}
.y70{bottom:697.053333pt;}
.yc9{bottom:698.973333pt;}
.y132{bottom:699.773333pt;}
.yb8{bottom:705.053333pt;}
.y96{bottom:713.053333pt;}
.y116{bottom:716.413333pt;}
.y1a{bottom:718.173333pt;}
.yc8{bottom:721.053333pt;}
.y131{bottom:721.693333pt;}
.yb7{bottom:727.013333pt;}
.y6f{bottom:728.453333pt;}
.y95{bottom:735.013333pt;}
.y115{bottom:738.373333pt;}
.yc7{bottom:743.013333pt;}
.y130{bottom:743.813333pt;}
.yb6{bottom:749.093333pt;}
.y6e{bottom:754.053333pt;}
.y94{bottom:757.093333pt;}
.y114{bottom:760.453333pt;}
.y19{bottom:762.213333pt;}
.yc6{bottom:765.093333pt;}
.y12f{bottom:765.733333pt;}
.yb5{bottom:771.013333pt;}
.y6d{bottom:772.133333pt;}
.y93{bottom:779.013333pt;}
.yc5{bottom:787.013333pt;}
.y12e{bottom:787.813333pt;}
.y6c{bottom:790.053333pt;}
.yb4{bottom:793.093333pt;}
.y102{bottom:795.013333pt;}
.y113{bottom:795.653333pt;}
.yef{bottom:800.933333pt;}
.y92{bottom:801.093333pt;}
.y18{bottom:806.213333pt;}
.yc4{bottom:809.093333pt;}
.y6b{bottom:815.013333pt;}
.y101{bottom:817.093333pt;}
.y112{bottom:817.733333pt;}
.y12d{bottom:819.173333pt;}
.ye7{bottom:823.013333pt;}
.y91{bottom:831.013333pt;}
.y56{bottom:834.053333pt;}
.y6a{bottom:837.093333pt;}
.y100{bottom:839.013333pt;}
.y111{bottom:839.813333pt;}
.y17{bottom:842.373333pt;}
.ye6{bottom:845.093333pt;}
.y69{bottom:851.173333pt;}
.y16{bottom:852.293333pt;}
.yf8{bottom:852.933333pt;}
.y90{bottom:853.093333pt;}
.y12c{bottom:853.733333pt;}
.yb3{bottom:859.013333pt;}
.yff{bottom:861.093333pt;}
.y110{bottom:861.733333pt;}
.y15{bottom:862.373333pt;}
.y68{bottom:865.093333pt;}
.yee{bottom:867.013333pt;}
.y14{bottom:872.293333pt;}
.y8f{bottom:875.013333pt;}
.y67{bottom:879.173333pt;}
.y13{bottom:882.373333pt;}
.yfe{bottom:883.013333pt;}
.y12b{bottom:883.653333pt;}
.yb2{bottom:888.933333pt;}
.yed{bottom:889.093333pt;}
.y12{bottom:892.293333pt;}
.y66{bottom:893.093333pt;}
.y10f{bottom:896.933333pt;}
.y8e{bottom:897.093333pt;}
.y11{bottom:902.373333pt;}
.yfd{bottom:905.093333pt;}
.y65{bottom:907.173333pt;}
.yb1{bottom:911.013333pt;}
.y10{bottom:912.293333pt;}
.y8d{bottom:919.013333pt;}
.y64{bottom:921.093333pt;}
.yf{bottom:922.373333pt;}
.yfc{bottom:927.013333pt;}
.y4e{bottom:931.760000pt;}
.y53{bottom:932.186667pt;}
.y42{bottom:932.293333pt;}
.y4b{bottom:933.093333pt;}
.y45{bottom:933.360000pt;}
.y48{bottom:933.626667pt;}
.y63{bottom:935.173333pt;}
.y3e{bottom:939.760000pt;}
.ye{bottom:940.293333pt;}
.yb0{bottom:940.933333pt;}
.y8c{bottom:941.093333pt;}
.y50{bottom:950.826667pt;}
.y4d{bottom:952.426667pt;}
.y52{bottom:952.853333pt;}
.y41{bottom:952.960000pt;}
.y4a{bottom:953.760000pt;}
.y44{bottom:954.026667pt;}
.y47{bottom:954.293333pt;}
.y62{bottom:954.880000pt;}
.yfb{bottom:958.560000pt;}
.y3d{bottom:960.426667pt;}
.yd{bottom:960.960000pt;}
.y8b{bottom:963.040000pt;}
.y61{bottom:969.120000pt;}
.y4f{bottom:980.906667pt;}
.y4c{bottom:982.506667pt;}
.y51{bottom:982.933333pt;}
.y40{bottom:983.040000pt;}
.y49{bottom:983.840000pt;}
.y43{bottom:984.106667pt;}
.y46{bottom:984.373333pt;}
.y5b{bottom:985.600000pt;}
.y3c{bottom:990.506667pt;}
.yc{bottom:991.040000pt;}
.y5a{bottom:1006.400000pt;}
.y59{bottom:1017.120000pt;}
.y58{bottom:1031.200000pt;}
.y57{bottom:1045.120000pt;}
.h9{height:10.227200pt;}
.h2{height:25.267200pt;}
.h5{height:25.920000pt;}
.h3{height:30.080000pt;}
.h8{height:34.892800pt;}
.h15{height:34.945312pt;}
.h1{height:40.307200pt;}
.h7{height:42.713600pt;}
.h17{height:45.120000pt;}
.h4{height:55.347200pt;}
.h16{height:60.160000pt;}
.h18{height:70.387200pt;}
.h6{height:110.092800pt;}
.h14{height:960.000000pt;}
.h11{height:1045.866667pt;}
.h10{height:1047.466667pt;}
.h12{height:1047.893333pt;}
.hc{height:1048.000000pt;}
.hf{height:1048.800000pt;}
.hd{height:1049.066667pt;}
.he{height:1049.333333pt;}
.h13{height:1051.840000pt;}
.hb{height:1054.666667pt;}
.ha{height:1055.466667pt;}
.h0{height:1056.000000pt;}
.wa{width:720.000000pt;}
.w7{width:814.133321pt;}
.w6{width:814.666655pt;}
.w8{width:814.879988pt;}
.w3{width:814.933321pt;}
.w4{width:815.199988pt;}
.w5{width:815.333321pt;}
.w9{width:815.413321pt;}
.w2{width:815.466655pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:1.066679pt;}
.x2{left:47.999988pt;}
.xc{left:93.120011pt;}
.xa{left:123.551988pt;}
.xe{left:281.346655pt;}
.x10{left:349.506655pt;}
.x11{left:405.026655pt;}
.xf{left:406.146655pt;}
.x1{left:408.066655pt;}
.x5{left:451.586655pt;}
.x6{left:469.373321pt;}
.x4{left:544.733321pt;}
.x8{left:550.013321pt;}
.xd{left:605.946656pt;}
.x7{left:617.053321pt;}
.x3{left:630.013321pt;}
.x9{left:768.133321pt;}
}




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