
    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_49236bf825ebe07379a15f3f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_51efcd8960701f97cda67abf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_15a6ea63480256a79c074b12.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.693359;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_009dd4a2c5f04b5972d5054c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_de409c1913fa136d6671bfbc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_c4baad1c3e30095b854bc172.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_828eeba0d8595a9d56a27d0e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_21d4b7053d7b9d6b64f43354.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c6e51eb46b96f0a9ce1ddd82.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_1ad5aabdaba0412281f81541.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_254d7ed5fe57c097995009bf.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.691895;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_6b6b1b1ef2e5c8dbe9acab2e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861816;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);}
.v5{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:14.400000px;}
.v2{vertical-align:27.360000px;}
.v1{vertical-align:30.242160px;}
.v4{vertical-align:40.320000px;}
.v3{vertical-align:54.720000px;}
.v7{vertical-align:69.120000px;}
.ls1c{letter-spacing:-0.936000px;}
.ls25{letter-spacing:-0.927360px;}
.lsf{letter-spacing:-0.926640px;}
.ls27{letter-spacing:-0.861120px;}
.ls26{letter-spacing:-0.794880px;}
.lsd{letter-spacing:-0.758160px;}
.lsa{letter-spacing:-0.728640px;}
.ls2a{letter-spacing:-0.662400px;}
.ls29{letter-spacing:-0.596160px;}
.ls2e{letter-spacing:-0.463680px;}
.ls18{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.397440px;}
.ls6{letter-spacing:-0.336960px;}
.ls17{letter-spacing:-0.288000px;}
.ls24{letter-spacing:-0.264960px;}
.ls20{letter-spacing:-0.255600px;}
.lsb{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.204480px;}
.ls2d{letter-spacing:-0.198720px;}
.ls10{letter-spacing:-0.168480px;}
.ls19{letter-spacing:-0.144000px;}
.ls2f{letter-spacing:-0.132480px;}
.ls16{letter-spacing:-0.084240px;}
.ls1b{letter-spacing:-0.072000px;}
.ls23{letter-spacing:-0.066240px;}
.ls1{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.066240px;}
.ls1a{letter-spacing:0.072000px;}
.lse{letter-spacing:0.084240px;}
.ls2{letter-spacing:0.120240px;}
.ls21{letter-spacing:0.132480px;}
.ls4{letter-spacing:0.144000px;}
.ls2b{letter-spacing:0.191520px;}
.ls22{letter-spacing:0.211968px;}
.ls3{letter-spacing:0.240480px;}
.ls2c{letter-spacing:0.264960px;}
.ls5{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.331200px;}
.ls0{letter-spacing:0.336960px;}
.ls12{letter-spacing:0.360000px;}
.ls30{letter-spacing:0.364320px;}
.ls1d{letter-spacing:0.378000px;}
.ls7{letter-spacing:0.378720px;}
.lsc{letter-spacing:0.421200px;}
.ls13{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.727200px;}
.ls1e{letter-spacing:20.376000px;}
.ls11{letter-spacing:21.228480px;}
.ls14{letter-spacing:54.864000px;}
.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;}
}
.ws2e{word-spacing:-72.288000px;}
.ws33{word-spacing:-72.000000px;}
.ws31{word-spacing:-55.944000px;}
.ws35{word-spacing:-50.915520px;}
.ws32{word-spacing:-50.864400px;}
.ws2f{word-spacing:-50.544000px;}
.ws34{word-spacing:-31.445424px;}
.ws30{word-spacing:-30.725424px;}
.ws36{word-spacing:-27.237024px;}
.ws0{word-spacing:-27.174240px;}
.ws47{word-spacing:-21.833280px;}
.ws3{word-spacing:-21.396960px;}
.ws2{word-spacing:-21.060000px;}
.ws1c{word-spacing:-20.975760px;}
.ws1{word-spacing:-20.723040px;}
.wsb{word-spacing:-20.301840px;}
.ws2a{word-spacing:-18.288000px;}
.ws1d{word-spacing:-18.144000px;}
.ws1e{word-spacing:-18.000000px;}
.ws27{word-spacing:-17.928000px;}
.ws28{word-spacing:-17.856000px;}
.ws37{word-spacing:-17.784000px;}
.ws1f{word-spacing:-17.712000px;}
.ws29{word-spacing:-17.064000px;}
.ws49{word-spacing:-15.235200px;}
.ws3b{word-spacing:-15.102720px;}
.ws3d{word-spacing:-15.036480px;}
.ws38{word-spacing:-14.970240px;}
.ws39{word-spacing:-14.904000px;}
.ws3c{word-spacing:-14.705280px;}
.ws48{word-spacing:-14.506560px;}
.ws4f{word-spacing:-14.374080px;}
.ws3a{word-spacing:-14.042880px;}
.ws2d{word-spacing:-12.060000px;}
.ws1a{word-spacing:-4.548960px;}
.ws18{word-spacing:-4.127760px;}
.ws14{word-spacing:-1.347840px;}
.ws11{word-spacing:-1.263600px;}
.wsa{word-spacing:-1.008000px;}
.ws4a{word-spacing:-0.861120px;}
.wse{word-spacing:-0.728640px;}
.ws6{word-spacing:-0.721440px;}
.ws4e{word-spacing:-0.662400px;}
.ws13{word-spacing:-0.589680px;}
.ws3f{word-spacing:-0.529920px;}
.ws8{word-spacing:-0.505440px;}
.ws7{word-spacing:-0.480960px;}
.ws4c{word-spacing:-0.397440px;}
.ws12{word-spacing:-0.336960px;}
.wsc{word-spacing:-0.331200px;}
.ws26{word-spacing:-0.288000px;}
.ws4d{word-spacing:-0.264960px;}
.ws2b{word-spacing:-0.216000px;}
.ws9{word-spacing:-0.144000px;}
.ws43{word-spacing:-0.132480px;}
.ws21{word-spacing:-0.084240px;}
.ws2c{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.ws41{word-spacing:0.066240px;}
.ws5{word-spacing:0.120240px;}
.ws50{word-spacing:0.132480px;}
.ws24{word-spacing:0.144000px;}
.ws1b{word-spacing:0.168480px;}
.ws3e{word-spacing:0.198720px;}
.ws22{word-spacing:0.216000px;}
.ws40{word-spacing:0.264960px;}
.ws20{word-spacing:0.288000px;}
.ws4b{word-spacing:0.331200px;}
.ws17{word-spacing:0.336960px;}
.wsd{word-spacing:0.397440px;}
.ws23{word-spacing:0.432000px;}
.ws10{word-spacing:0.540000px;}
.ws46{word-spacing:0.596160px;}
.wsf{word-spacing:0.728640px;}
.ws45{word-spacing:0.794880px;}
.ws44{word-spacing:0.861120px;}
.ws19{word-spacing:0.926640px;}
.ws42{word-spacing:0.927360px;}
.ws25{word-spacing:1.008000px;}
.ws15{word-spacing:59.473440px;}
.ws16{word-spacing:59.894640px;}
._a{margin-left:-9.000000px;}
._6{margin-left:-4.679856px;}
._5{margin-left:-3.637872px;}
._0{margin-left:-1.106208px;}
._1{width:1.363392px;}
._c{width:4.163328px;}
._b{width:5.222160px;}
._9{width:10.161216px;}
._d{width:260.488800px;}
._4{width:293.608800px;}
._3{width:554.400000px;}
._7{width:842.905440px;}
._8{width:846.000000px;}
._2{width:1342.800000px;}
.fc4{color:rgb(47,84,150);}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(91,155,213);}
.fc0{color:rgb(30,76,119);}
.fs8{font-size:48.240000px;}
.fsa{font-size:51.120000px;}
.fs9{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fsb{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.fs0{font-size:144.000000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y68{bottom:2.880000px;}
.y5f{bottom:3.960000px;}
.y29{bottom:4.500000px;}
.y2f{bottom:4.680000px;}
.y67{bottom:18.360000px;}
.y2d{bottom:28.620000px;}
.y5d{bottom:45.360000px;}
.y34{bottom:52.740000px;}
.y19{bottom:54.719280px;}
.y18{bottom:73.614240px;}
.y17{bottom:93.420000px;}
.y14{bottom:113.400000px;}
.yeb{bottom:135.048960px;}
.y13{bottom:147.780000px;}
.yea{bottom:156.825360px;}
.y8c{bottom:159.660000px;}
.y8b{bottom:168.120000px;}
.y8a{bottom:171.720000px;}
.y12{bottom:182.160000px;}
.ye9{bottom:187.610400px;}
.ye8{bottom:209.204640px;}
.y89{bottom:214.200000px;}
.y11{bottom:216.540000px;}
.y70{bottom:232.200000px;}
.y88{bottom:232.740000px;}
.y87{bottom:236.340000px;}
.ye7{bottom:239.989680px;}
.y10{bottom:250.740000px;}
.y6f{bottom:254.520000px;}
.y86{bottom:255.600000px;}
.y85{bottom:259.200000px;}
.ye6{bottom:261.766080px;}
.y6e{bottom:277.020000px;}
.y58{bottom:280.800000px;}
.y84{bottom:281.880000px;}
.ye5{bottom:283.542480px;}
.yf{bottom:285.120000px;}
.y6d{bottom:299.340000px;}
.y83{bottom:304.740000px;}
.ye4{bottom:314.145360px;}
.y57{bottom:315.180000px;}
.ye{bottom:320.408820px;}
.y6c{bottom:321.660000px;}
.yba{bottom:325.440000px;}
.y82{bottom:335.700000px;}
.ye3{bottom:335.921760px;}
.y56{bottom:337.500000px;}
.y81{bottom:339.300000px;}
.y80{bottom:351.360000px;}
.y6b{bottom:351.900000px;}
.yd{bottom:358.380000px;}
.y55{bottom:359.820000px;}
.yb9{bottom:362.700000px;}
.y38{bottom:364.688820px;}
.ye2{bottom:366.706800px;}
.y54{bottom:382.140000px;}
.yb2{bottom:385.020000px;}
.ye1{bottom:388.483200px;}
.y7f{bottom:393.840000px;}
.yc{bottom:401.040000px;}
.y37{bottom:402.660000px;}
.y53{bottom:404.460000px;}
.yb8{bottom:407.340000px;}
.ye0{bottom:410.259600px;}
.y7e{bottom:416.160000px;}
.yb1{bottom:419.400000px;}
.y36{bottom:422.280000px;}
.yb7{bottom:429.840000px;}
.y7d{bottom:438.480000px;}
.y52{bottom:438.840000px;}
.ydf{bottom:440.862480px;}
.y33{bottom:446.580000px;}
.yb6{bottom:452.160000px;}
.yb0{bottom:453.780000px;}
.yb{bottom:457.740000px;}
.y7c{bottom:460.800000px;}
.y51{bottom:461.160000px;}
.yde{bottom:462.638880px;}
.yb5{bottom:474.480000px;}
.y35{bottom:475.200000px;}
.yaf{bottom:476.100000px;}
.y7b{bottom:483.300000px;}
.ydd{bottom:484.415280px;}
.y50{bottom:495.360000px;}
.yb4{bottom:496.800000px;}
.yae{bottom:498.420000px;}
.y7a{bottom:505.620000px;}
.y9b{bottom:508.680000px;}
.ya{bottom:514.440000px;}
.ydc{bottom:515.200320px;}
.y32{bottom:518.940000px;}
.yad{bottom:520.740000px;}
.yb3{bottom:527.220000px;}
.y79{bottom:527.940000px;}
.ydb{bottom:536.794560px;}
.y4f{bottom:542.700000px;}
.y31{bottom:543.060000px;}
.y9a{bottom:545.940000px;}
.y78{bottom:550.260000px;}
.yac{bottom:552.060000px;}
.y4e{bottom:566.280000px;}
.y30{bottom:567.180000px;}
.yda{bottom:567.579600px;}
.y9{bottom:571.140000px;}
.y77{bottom:572.580000px;}
.y99{bottom:580.320000px;}
.yab{bottom:586.440000px;}
.yd9{bottom:589.356000px;}
.y4d{bottom:590.040000px;}
.y2e{bottom:591.300000px;}
.y76{bottom:594.900000px;}
.y98{bottom:602.640000px;}
.yaa{bottom:608.760000px;}
.yd8{bottom:611.132400px;}
.y4c{bottom:612.180000px;}
.y2c{bottom:615.600000px;}
.y75{bottom:617.220000px;}
.ya9{bottom:631.080000px;}
.yd7{bottom:632.726640px;}
.y97{bottom:632.880000px;}
.y8{bottom:633.780000px;}
.y4b{bottom:648.000000px;}
.y74{bottom:651.600000px;}
.ya8{bottom:653.400000px;}
.yd6{bottom:663.511680px;}
.y2b{bottom:663.840000px;}
.y4a{bottom:670.320000px;}
.y73{bottom:673.920000px;}
.ya7{bottom:675.720000px;}
.yd5{bottom:685.288080px;}
.y2a{bottom:687.960000px;}
.y7{bottom:688.320000px;}
.y49{bottom:692.640000px;}
.y72{bottom:696.240000px;}
.ya6{bottom:698.040000px;}
.yd4{bottom:707.064480px;}
.y28{bottom:712.080000px;}
.y48{bottom:714.960000px;}
.ya5{bottom:720.360000px;}
.y71{bottom:726.660000px;}
.yd3{bottom:728.658720px;}
.y47{bottom:737.280000px;}
.y6{bottom:741.240000px;}
.ya4{bottom:742.680000px;}
.yd2{bottom:750.435120px;}
.y27{bottom:753.840000px;}
.yd1{bottom:772.211520px;}
.y46{bottom:772.560000px;}
.ya3{bottom:777.060000px;}
.y26{bottom:788.220000px;}
.yfa{bottom:791.653680px;}
.y5{bottom:792.720000px;}
.y6a{bottom:795.240000px;}
.ya2{bottom:799.380000px;}
.yd0{bottom:802.996560px;}
.y45{bottom:809.820000px;}
.y25{bottom:811.443060px;}
.ya1{bottom:821.700000px;}
.yf9{bottom:822.438720px;}
.ycf{bottom:824.590800px;}
.y69{bottom:829.620000px;}
.y24{bottom:837.367920px;}
.y44{bottom:844.020000px;}
.yf8{bottom:844.215120px;}
.y66{bottom:846.360000px;}
.yce{bottom:846.367200px;}
.y4{bottom:858.431340px;}
.y23{bottom:863.461260px;}
.yf7{bottom:865.809360px;}
.y43{bottom:866.520000px;}
.yc4{bottom:874.979850px;}
.ycd{bottom:877.152240px;}
.y65{bottom:878.040000px;}
.y42{bottom:888.840000px;}
.y22{bottom:889.554600px;}
.yf6{bottom:896.594400px;}
.y3{bottom:897.840000px;}
.y64{bottom:898.740000px;}
.ycc{bottom:898.928640px;}
.ya0{bottom:911.160000px;}
.yc3{bottom:912.627360px;}
.y96{bottom:914.400000px;}
.yf5{bottom:918.370800px;}
.y63{bottom:919.440000px;}
.ycb{bottom:920.522880px;}
.y21{bottom:923.040000px;}
.y9f{bottom:933.480000px;}
.yc2{bottom:934.403760px;}
.y62{bottom:940.140000px;}
.yf4{bottom:940.147200px;}
.y41{bottom:945.360000px;}
.y95{bottom:948.780000px;}
.y20{bottom:949.154400px;}
.yca{bottom:951.307920px;}
.y9e{bottom:955.800000px;}
.yc1{bottom:956.180160px;}
.y61{bottom:960.840000px;}
.y40{bottom:967.860000px;}
.yf3{bottom:970.750080px;}
.y94{bottom:971.100000px;}
.yc9{bottom:973.084320px;}
.y1f{bottom:975.247740px;}
.yc0{bottom:977.956560px;}
.y9d{bottom:978.120000px;}
.y60{bottom:981.540000px;}
.y3f{bottom:990.180000px;}
.yf2{bottom:992.526480px;}
.y93{bottom:993.420000px;}
.ybf{bottom:999.550800px;}
.y9c{bottom:1000.440000px;}
.y1e{bottom:1001.341080px;}
.y5c{bottom:1002.960000px;}
.yc8{bottom:1003.869360px;}
.y3e{bottom:1012.500000px;}
.y92{bottom:1015.740000px;}
.y2{bottom:1018.620000px;}
.ybe{bottom:1021.327200px;}
.yf1{bottom:1023.311520px;}
.yc7{bottom:1025.463600px;}
.y1d{bottom:1027.434420px;}
.y5e{bottom:1027.620000px;}
.y3d{bottom:1034.820000px;}
.y91{bottom:1038.060000px;}
.ybd{bottom:1043.103600px;}
.yf0{bottom:1045.087920px;}
.yc6{bottom:1047.240000px;}
.y1c{bottom:1053.359280px;}
.y3c{bottom:1057.140000px;}
.y90{bottom:1060.380000px;}
.ybc{bottom:1064.880000px;}
.yef{bottom:1066.682160px;}
.y3b{bottom:1079.460000px;}
.yc5{bottom:1080.720000px;}
.y8f{bottom:1082.700000px;}
.y5b{bottom:1084.860000px;}
.yee{bottom:1088.458560px;}
.y1b{bottom:1091.520000px;}
.ybb{bottom:1098.899280px;}
.y3a{bottom:1101.780000px;}
.y1{bottom:1104.480000px;}
.y5a{bottom:1105.560000px;}
.y8e{bottom:1117.080000px;}
.yed{bottom:1119.243600px;}
.y1a{bottom:1131.300000px;}
.y39{bottom:1137.060000px;}
.y8d{bottom:1139.400000px;}
.y59{bottom:1139.940000px;}
.yec{bottom:1141.020000px;}
.y16{bottom:1171.980000px;}
.y15{bottom:1192.320000px;}
.h15{height:20.700000px;}
.h16{height:20.701500px;}
.hc{height:24.118500px;}
.hd{height:24.120000px;}
.hf{height:24.300000px;}
.h17{height:30.961500px;}
.h1b{height:35.843906px;}
.h18{height:37.520508px;}
.h9{height:46.025156px;}
.he{height:48.240000px;}
.ha{height:49.227187px;}
.h13{height:49.992188px;}
.h8{height:50.027344px;}
.h1a{height:50.484375px;}
.h11{height:57.092344px;}
.h7{height:58.531992px;}
.h1e{height:60.854766px;}
.h12{height:60.878320px;}
.h14{height:62.100000px;}
.h1c{height:64.427344px;}
.h1f{height:65.460938px;}
.h10{height:72.360000px;}
.h6{height:73.195312px;}
.h4{height:82.195312px;}
.hb{height:88.774152px;}
.h5{height:100.054688px;}
.h19{height:105.204375px;}
.h2{height:107.015625px;}
.h1d{height:119.604375px;}
.h3{height:147.656250px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:110.700000px;}
.w8{width:133.380000px;}
.w5{width:134.460000px;}
.w4{width:145.260000px;}
.w6{width:155.878500px;}
.w2{width:265.500000px;}
.w3{width:403.920000px;}
.w9{width:679.678500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:8.100000px;}
.x1b{left:54.360000px;}
.x1c{left:62.100000px;}
.x1e{left:67.860000px;}
.x1f{left:75.780000px;}
.x20{left:76.860000px;}
.x1d{left:84.780000px;}
.x22{left:85.860000px;}
.xe{left:95.580000px;}
.x21{left:98.280000px;}
.x11{left:103.680000px;}
.x1{left:106.200000px;}
.x2{left:122.220000px;}
.x3{left:126.000000px;}
.x13{left:133.200000px;}
.x6{left:156.780000px;}
.x14{left:160.200000px;}
.xb{left:214.200000px;}
.xc{left:233.820000px;}
.x15{left:251.460000px;}
.x9{left:259.200000px;}
.xa{left:267.476580px;}
.x25{left:323.820000px;}
.x8{left:335.340000px;}
.xd{left:338.040000px;}
.x4{left:344.325780px;}
.x5{left:353.340000px;}
.x10{left:361.080000px;}
.x12{left:369.180000px;}
.x2b{left:380.700000px;}
.x16{left:385.920000px;}
.x2c{left:387.900000px;}
.x7{left:446.400000px;}
.x2d{left:457.020000px;}
.x26{left:461.880000px;}
.x2a{left:462.960000px;}
.x2e{left:512.100000px;}
.x27{left:519.120000px;}
.x17{left:541.800000px;}
.x18{left:549.900000px;}
.x28{left:568.980000px;}
.x29{left:612.900000px;}
.x19{left:652.500000px;}
.x1a{left:660.600000px;}
.x24{left:700.020000px;}
.x2f{left:726.840000px;}
.x23{left:774.180000px;}
.x30{left:785.700000px;}
@media print{
.v5{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:12.800000pt;}
.v2{vertical-align:24.320000pt;}
.v1{vertical-align:26.881920pt;}
.v4{vertical-align:35.840000pt;}
.v3{vertical-align:48.640000pt;}
.v7{vertical-align:61.440000pt;}
.ls1c{letter-spacing:-0.832000pt;}
.ls25{letter-spacing:-0.824320pt;}
.lsf{letter-spacing:-0.823680pt;}
.ls27{letter-spacing:-0.765440pt;}
.ls26{letter-spacing:-0.706560pt;}
.lsd{letter-spacing:-0.673920pt;}
.lsa{letter-spacing:-0.647680pt;}
.ls2a{letter-spacing:-0.588800pt;}
.ls29{letter-spacing:-0.529920pt;}
.ls2e{letter-spacing:-0.412160pt;}
.ls18{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.353280pt;}
.ls6{letter-spacing:-0.299520pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls24{letter-spacing:-0.235520pt;}
.ls20{letter-spacing:-0.227200pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.181760pt;}
.ls2d{letter-spacing:-0.176640pt;}
.ls10{letter-spacing:-0.149760pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls2f{letter-spacing:-0.117760pt;}
.ls16{letter-spacing:-0.074880pt;}
.ls1b{letter-spacing:-0.064000pt;}
.ls23{letter-spacing:-0.058880pt;}
.ls1{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.058880pt;}
.ls1a{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.074880pt;}
.ls2{letter-spacing:0.106880pt;}
.ls21{letter-spacing:0.117760pt;}
.ls4{letter-spacing:0.128000pt;}
.ls2b{letter-spacing:0.170240pt;}
.ls22{letter-spacing:0.188416pt;}
.ls3{letter-spacing:0.213760pt;}
.ls2c{letter-spacing:0.235520pt;}
.ls5{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.294400pt;}
.ls0{letter-spacing:0.299520pt;}
.ls12{letter-spacing:0.320000pt;}
.ls30{letter-spacing:0.323840pt;}
.ls1d{letter-spacing:0.336000pt;}
.ls7{letter-spacing:0.336640pt;}
.lsc{letter-spacing:0.374400pt;}
.ls13{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.646400pt;}
.ls1e{letter-spacing:18.112000pt;}
.ls11{letter-spacing:18.869760pt;}
.ls14{letter-spacing:48.768000pt;}
.ws2e{word-spacing:-64.256000pt;}
.ws33{word-spacing:-64.000000pt;}
.ws31{word-spacing:-49.728000pt;}
.ws35{word-spacing:-45.258240pt;}
.ws32{word-spacing:-45.212800pt;}
.ws2f{word-spacing:-44.928000pt;}
.ws34{word-spacing:-27.951488pt;}
.ws30{word-spacing:-27.311488pt;}
.ws36{word-spacing:-24.210688pt;}
.ws0{word-spacing:-24.154880pt;}
.ws47{word-spacing:-19.407360pt;}
.ws3{word-spacing:-19.019520pt;}
.ws2{word-spacing:-18.720000pt;}
.ws1c{word-spacing:-18.645120pt;}
.ws1{word-spacing:-18.420480pt;}
.wsb{word-spacing:-18.046080pt;}
.ws2a{word-spacing:-16.256000pt;}
.ws1d{word-spacing:-16.128000pt;}
.ws1e{word-spacing:-16.000000pt;}
.ws27{word-spacing:-15.936000pt;}
.ws28{word-spacing:-15.872000pt;}
.ws37{word-spacing:-15.808000pt;}
.ws1f{word-spacing:-15.744000pt;}
.ws29{word-spacing:-15.168000pt;}
.ws49{word-spacing:-13.542400pt;}
.ws3b{word-spacing:-13.424640pt;}
.ws3d{word-spacing:-13.365760pt;}
.ws38{word-spacing:-13.306880pt;}
.ws39{word-spacing:-13.248000pt;}
.ws3c{word-spacing:-13.071360pt;}
.ws48{word-spacing:-12.894720pt;}
.ws4f{word-spacing:-12.776960pt;}
.ws3a{word-spacing:-12.482560pt;}
.ws2d{word-spacing:-10.720000pt;}
.ws1a{word-spacing:-4.043520pt;}
.ws18{word-spacing:-3.669120pt;}
.ws14{word-spacing:-1.198080pt;}
.ws11{word-spacing:-1.123200pt;}
.wsa{word-spacing:-0.896000pt;}
.ws4a{word-spacing:-0.765440pt;}
.wse{word-spacing:-0.647680pt;}
.ws6{word-spacing:-0.641280pt;}
.ws4e{word-spacing:-0.588800pt;}
.ws13{word-spacing:-0.524160pt;}
.ws3f{word-spacing:-0.471040pt;}
.ws8{word-spacing:-0.449280pt;}
.ws7{word-spacing:-0.427520pt;}
.ws4c{word-spacing:-0.353280pt;}
.ws12{word-spacing:-0.299520pt;}
.wsc{word-spacing:-0.294400pt;}
.ws26{word-spacing:-0.256000pt;}
.ws4d{word-spacing:-0.235520pt;}
.ws2b{word-spacing:-0.192000pt;}
.ws9{word-spacing:-0.128000pt;}
.ws43{word-spacing:-0.117760pt;}
.ws21{word-spacing:-0.074880pt;}
.ws2c{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.ws41{word-spacing:0.058880pt;}
.ws5{word-spacing:0.106880pt;}
.ws50{word-spacing:0.117760pt;}
.ws24{word-spacing:0.128000pt;}
.ws1b{word-spacing:0.149760pt;}
.ws3e{word-spacing:0.176640pt;}
.ws22{word-spacing:0.192000pt;}
.ws40{word-spacing:0.235520pt;}
.ws20{word-spacing:0.256000pt;}
.ws4b{word-spacing:0.294400pt;}
.ws17{word-spacing:0.299520pt;}
.wsd{word-spacing:0.353280pt;}
.ws23{word-spacing:0.384000pt;}
.ws10{word-spacing:0.480000pt;}
.ws46{word-spacing:0.529920pt;}
.wsf{word-spacing:0.647680pt;}
.ws45{word-spacing:0.706560pt;}
.ws44{word-spacing:0.765440pt;}
.ws19{word-spacing:0.823680pt;}
.ws42{word-spacing:0.824320pt;}
.ws25{word-spacing:0.896000pt;}
.ws15{word-spacing:52.865280pt;}
.ws16{word-spacing:53.239680pt;}
._a{margin-left:-8.000000pt;}
._6{margin-left:-4.159872pt;}
._5{margin-left:-3.233664pt;}
._0{margin-left:-0.983296pt;}
._1{width:1.211904pt;}
._c{width:3.700736pt;}
._b{width:4.641920pt;}
._9{width:9.032192pt;}
._d{width:231.545600pt;}
._4{width:260.985600pt;}
._3{width:492.800000pt;}
._7{width:749.249280pt;}
._8{width:752.000000pt;}
._2{width:1193.600000pt;}
.fs8{font-size:42.880000pt;}
.fsa{font-size:45.440000pt;}
.fs9{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fsb{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.fs0{font-size:128.000000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:2.560000pt;}
.y5f{bottom:3.520000pt;}
.y29{bottom:4.000000pt;}
.y2f{bottom:4.160000pt;}
.y67{bottom:16.320000pt;}
.y2d{bottom:25.440000pt;}
.y5d{bottom:40.320000pt;}
.y34{bottom:46.880000pt;}
.y19{bottom:48.639360pt;}
.y18{bottom:65.434880pt;}
.y17{bottom:83.040000pt;}
.y14{bottom:100.800000pt;}
.yeb{bottom:120.043520pt;}
.y13{bottom:131.360000pt;}
.yea{bottom:139.400320pt;}
.y8c{bottom:141.920000pt;}
.y8b{bottom:149.440000pt;}
.y8a{bottom:152.640000pt;}
.y12{bottom:161.920000pt;}
.ye9{bottom:166.764800pt;}
.ye8{bottom:185.959680pt;}
.y89{bottom:190.400000pt;}
.y11{bottom:192.480000pt;}
.y70{bottom:206.400000pt;}
.y88{bottom:206.880000pt;}
.y87{bottom:210.080000pt;}
.ye7{bottom:213.324160pt;}
.y10{bottom:222.880000pt;}
.y6f{bottom:226.240000pt;}
.y86{bottom:227.200000pt;}
.y85{bottom:230.400000pt;}
.ye6{bottom:232.680960pt;}
.y6e{bottom:246.240000pt;}
.y58{bottom:249.600000pt;}
.y84{bottom:250.560000pt;}
.ye5{bottom:252.037760pt;}
.yf{bottom:253.440000pt;}
.y6d{bottom:266.080000pt;}
.y83{bottom:270.880000pt;}
.ye4{bottom:279.240320pt;}
.y57{bottom:280.160000pt;}
.ye{bottom:284.807840pt;}
.y6c{bottom:285.920000pt;}
.yba{bottom:289.280000pt;}
.y82{bottom:298.400000pt;}
.ye3{bottom:298.597120pt;}
.y56{bottom:300.000000pt;}
.y81{bottom:301.600000pt;}
.y80{bottom:312.320000pt;}
.y6b{bottom:312.800000pt;}
.yd{bottom:318.560000pt;}
.y55{bottom:319.840000pt;}
.yb9{bottom:322.400000pt;}
.y38{bottom:324.167840pt;}
.ye2{bottom:325.961600pt;}
.y54{bottom:339.680000pt;}
.yb2{bottom:342.240000pt;}
.ye1{bottom:345.318400pt;}
.y7f{bottom:350.080000pt;}
.yc{bottom:356.480000pt;}
.y37{bottom:357.920000pt;}
.y53{bottom:359.520000pt;}
.yb8{bottom:362.080000pt;}
.ye0{bottom:364.675200pt;}
.y7e{bottom:369.920000pt;}
.yb1{bottom:372.800000pt;}
.y36{bottom:375.360000pt;}
.yb7{bottom:382.080000pt;}
.y7d{bottom:389.760000pt;}
.y52{bottom:390.080000pt;}
.ydf{bottom:391.877760pt;}
.y33{bottom:396.960000pt;}
.yb6{bottom:401.920000pt;}
.yb0{bottom:403.360000pt;}
.yb{bottom:406.880000pt;}
.y7c{bottom:409.600000pt;}
.y51{bottom:409.920000pt;}
.yde{bottom:411.234560pt;}
.yb5{bottom:421.760000pt;}
.y35{bottom:422.400000pt;}
.yaf{bottom:423.200000pt;}
.y7b{bottom:429.600000pt;}
.ydd{bottom:430.591360pt;}
.y50{bottom:440.320000pt;}
.yb4{bottom:441.600000pt;}
.yae{bottom:443.040000pt;}
.y7a{bottom:449.440000pt;}
.y9b{bottom:452.160000pt;}
.ya{bottom:457.280000pt;}
.ydc{bottom:457.955840pt;}
.y32{bottom:461.280000pt;}
.yad{bottom:462.880000pt;}
.yb3{bottom:468.640000pt;}
.y79{bottom:469.280000pt;}
.ydb{bottom:477.150720pt;}
.y4f{bottom:482.400000pt;}
.y31{bottom:482.720000pt;}
.y9a{bottom:485.280000pt;}
.y78{bottom:489.120000pt;}
.yac{bottom:490.720000pt;}
.y4e{bottom:503.360000pt;}
.y30{bottom:504.160000pt;}
.yda{bottom:504.515200pt;}
.y9{bottom:507.680000pt;}
.y77{bottom:508.960000pt;}
.y99{bottom:515.840000pt;}
.yab{bottom:521.280000pt;}
.yd9{bottom:523.872000pt;}
.y4d{bottom:524.480000pt;}
.y2e{bottom:525.600000pt;}
.y76{bottom:528.800000pt;}
.y98{bottom:535.680000pt;}
.yaa{bottom:541.120000pt;}
.yd8{bottom:543.228800pt;}
.y4c{bottom:544.160000pt;}
.y2c{bottom:547.200000pt;}
.y75{bottom:548.640000pt;}
.ya9{bottom:560.960000pt;}
.yd7{bottom:562.423680pt;}
.y97{bottom:562.560000pt;}
.y8{bottom:563.360000pt;}
.y4b{bottom:576.000000pt;}
.y74{bottom:579.200000pt;}
.ya8{bottom:580.800000pt;}
.yd6{bottom:589.788160pt;}
.y2b{bottom:590.080000pt;}
.y4a{bottom:595.840000pt;}
.y73{bottom:599.040000pt;}
.ya7{bottom:600.640000pt;}
.yd5{bottom:609.144960pt;}
.y2a{bottom:611.520000pt;}
.y7{bottom:611.840000pt;}
.y49{bottom:615.680000pt;}
.y72{bottom:618.880000pt;}
.ya6{bottom:620.480000pt;}
.yd4{bottom:628.501760pt;}
.y28{bottom:632.960000pt;}
.y48{bottom:635.520000pt;}
.ya5{bottom:640.320000pt;}
.y71{bottom:645.920000pt;}
.yd3{bottom:647.696640pt;}
.y47{bottom:655.360000pt;}
.y6{bottom:658.880000pt;}
.ya4{bottom:660.160000pt;}
.yd2{bottom:667.053440pt;}
.y27{bottom:670.080000pt;}
.yd1{bottom:686.410240pt;}
.y46{bottom:686.720000pt;}
.ya3{bottom:690.720000pt;}
.y26{bottom:700.640000pt;}
.yfa{bottom:703.692160pt;}
.y5{bottom:704.640000pt;}
.y6a{bottom:706.880000pt;}
.ya2{bottom:710.560000pt;}
.yd0{bottom:713.774720pt;}
.y45{bottom:719.840000pt;}
.y25{bottom:721.282720pt;}
.ya1{bottom:730.400000pt;}
.yf9{bottom:731.056640pt;}
.ycf{bottom:732.969600pt;}
.y69{bottom:737.440000pt;}
.y24{bottom:744.327040pt;}
.y44{bottom:750.240000pt;}
.yf8{bottom:750.413440pt;}
.y66{bottom:752.320000pt;}
.yce{bottom:752.326400pt;}
.y4{bottom:763.050080pt;}
.y23{bottom:767.521120pt;}
.yf7{bottom:769.608320pt;}
.y43{bottom:770.240000pt;}
.yc4{bottom:777.759867pt;}
.ycd{bottom:779.690880pt;}
.y65{bottom:780.480000pt;}
.y42{bottom:790.080000pt;}
.y22{bottom:790.715200pt;}
.yf6{bottom:796.972800pt;}
.y3{bottom:798.080000pt;}
.y64{bottom:798.880000pt;}
.ycc{bottom:799.047680pt;}
.ya0{bottom:809.920000pt;}
.yc3{bottom:811.224320pt;}
.y96{bottom:812.800000pt;}
.yf5{bottom:816.329600pt;}
.y63{bottom:817.280000pt;}
.ycb{bottom:818.242560pt;}
.y21{bottom:820.480000pt;}
.y9f{bottom:829.760000pt;}
.yc2{bottom:830.581120pt;}
.y62{bottom:835.680000pt;}
.yf4{bottom:835.686400pt;}
.y41{bottom:840.320000pt;}
.y95{bottom:843.360000pt;}
.y20{bottom:843.692800pt;}
.yca{bottom:845.607040pt;}
.y9e{bottom:849.600000pt;}
.yc1{bottom:849.937920pt;}
.y61{bottom:854.080000pt;}
.y40{bottom:860.320000pt;}
.yf3{bottom:862.888960pt;}
.y94{bottom:863.200000pt;}
.yc9{bottom:864.963840pt;}
.y1f{bottom:866.886880pt;}
.yc0{bottom:869.294720pt;}
.y9d{bottom:869.440000pt;}
.y60{bottom:872.480000pt;}
.y3f{bottom:880.160000pt;}
.yf2{bottom:882.245760pt;}
.y93{bottom:883.040000pt;}
.ybf{bottom:888.489600pt;}
.y9c{bottom:889.280000pt;}
.y1e{bottom:890.080960pt;}
.y5c{bottom:891.520000pt;}
.yc8{bottom:892.328320pt;}
.y3e{bottom:900.000000pt;}
.y92{bottom:902.880000pt;}
.y2{bottom:905.440000pt;}
.ybe{bottom:907.846400pt;}
.yf1{bottom:909.610240pt;}
.yc7{bottom:911.523200pt;}
.y1d{bottom:913.275040pt;}
.y5e{bottom:913.440000pt;}
.y3d{bottom:919.840000pt;}
.y91{bottom:922.720000pt;}
.ybd{bottom:927.203200pt;}
.yf0{bottom:928.967040pt;}
.yc6{bottom:930.880000pt;}
.y1c{bottom:936.319360pt;}
.y3c{bottom:939.680000pt;}
.y90{bottom:942.560000pt;}
.ybc{bottom:946.560000pt;}
.yef{bottom:948.161920pt;}
.y3b{bottom:959.520000pt;}
.yc5{bottom:960.640000pt;}
.y8f{bottom:962.400000pt;}
.y5b{bottom:964.320000pt;}
.yee{bottom:967.518720pt;}
.y1b{bottom:970.240000pt;}
.ybb{bottom:976.799360pt;}
.y3a{bottom:979.360000pt;}
.y1{bottom:981.760000pt;}
.y5a{bottom:982.720000pt;}
.y8e{bottom:992.960000pt;}
.yed{bottom:994.883200pt;}
.y1a{bottom:1005.600000pt;}
.y39{bottom:1010.720000pt;}
.y8d{bottom:1012.800000pt;}
.y59{bottom:1013.280000pt;}
.yec{bottom:1014.240000pt;}
.y16{bottom:1041.760000pt;}
.y15{bottom:1059.840000pt;}
.h15{height:18.400000pt;}
.h16{height:18.401333pt;}
.hc{height:21.438667pt;}
.hd{height:21.440000pt;}
.hf{height:21.600000pt;}
.h17{height:27.521333pt;}
.h1b{height:31.861250pt;}
.h18{height:33.351562pt;}
.h9{height:40.911250pt;}
.he{height:42.880000pt;}
.ha{height:43.757500pt;}
.h13{height:44.437500pt;}
.h8{height:44.468750pt;}
.h1a{height:44.875000pt;}
.h11{height:50.748750pt;}
.h7{height:52.028437pt;}
.h1e{height:54.093125pt;}
.h12{height:54.114063pt;}
.h14{height:55.200000pt;}
.h1c{height:57.268750pt;}
.h1f{height:58.187500pt;}
.h10{height:64.320000pt;}
.h6{height:65.062500pt;}
.h4{height:73.062500pt;}
.hb{height:78.910358pt;}
.h5{height:88.937500pt;}
.h19{height:93.515000pt;}
.h2{height:95.125000pt;}
.h1d{height:106.315000pt;}
.h3{height:131.250000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:98.400000pt;}
.w8{width:118.560000pt;}
.w5{width:119.520000pt;}
.w4{width:129.120000pt;}
.w6{width:138.558667pt;}
.w2{width:236.000000pt;}
.w3{width:359.040000pt;}
.w9{width:604.158667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:7.200000pt;}
.x1b{left:48.320000pt;}
.x1c{left:55.200000pt;}
.x1e{left:60.320000pt;}
.x1f{left:67.360000pt;}
.x20{left:68.320000pt;}
.x1d{left:75.360000pt;}
.x22{left:76.320000pt;}
.xe{left:84.960000pt;}
.x21{left:87.360000pt;}
.x11{left:92.160000pt;}
.x1{left:94.400000pt;}
.x2{left:108.640000pt;}
.x3{left:112.000000pt;}
.x13{left:118.400000pt;}
.x6{left:139.360000pt;}
.x14{left:142.400000pt;}
.xb{left:190.400000pt;}
.xc{left:207.840000pt;}
.x15{left:223.520000pt;}
.x9{left:230.400000pt;}
.xa{left:237.756960pt;}
.x25{left:287.840000pt;}
.x8{left:298.080000pt;}
.xd{left:300.480000pt;}
.x4{left:306.067360pt;}
.x5{left:314.080000pt;}
.x10{left:320.960000pt;}
.x12{left:328.160000pt;}
.x2b{left:338.400000pt;}
.x16{left:343.040000pt;}
.x2c{left:344.800000pt;}
.x7{left:396.800000pt;}
.x2d{left:406.240000pt;}
.x26{left:410.560000pt;}
.x2a{left:411.520000pt;}
.x2e{left:455.200000pt;}
.x27{left:461.440000pt;}
.x17{left:481.600000pt;}
.x18{left:488.800000pt;}
.x28{left:505.760000pt;}
.x29{left:544.800000pt;}
.x19{left:580.000000pt;}
.x1a{left:587.200000pt;}
.x24{left:622.240000pt;}
.x2f{left:646.080000pt;}
.x23{left:688.160000pt;}
.x30{left:698.400000pt;}
}




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