
    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_a5a2ea8c034610400d34c89d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.955078;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_2da65d85e4150eb6ce5c9795.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.087000;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_ca66995a78a6604ae4ac061b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.144000;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_8a8bc94f34cedc2fb46f6761.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_815168b2e3c24189422a6239.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.144000;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_f8adf9b2de1cc8332dee4090.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.094000;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_4aaad9f40a009e4adb1add79.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{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);}
.v5{vertical-align:-44.940000px;}
.v3{vertical-align:-20.040000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.740000px;}
.v1{vertical-align:4.320000px;}
.v6{vertical-align:18.000000px;}
.v4{vertical-align:25.080000px;}
.ls4{letter-spacing:-0.256800px;}
.lse{letter-spacing:-0.154200px;}
.ls9{letter-spacing:-0.072000px;}
.ls1a{letter-spacing:-0.029520px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.043800px;}
.ls11{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.126000px;}
.ls1c{letter-spacing:0.181200px;}
.lsb{letter-spacing:0.252000px;}
.lsa{letter-spacing:0.288000px;}
.ls5{letter-spacing:18.000000px;}
.ls1b{letter-spacing:31.301040px;}
.ls19{letter-spacing:31.445040px;}
.ls18{letter-spacing:32.045040px;}
.ls3{letter-spacing:65.916000px;}
.ls2{letter-spacing:66.009600px;}
.ls1{letter-spacing:66.060000px;}
.ls8{letter-spacing:97.509600px;}
.ls6{letter-spacing:97.560000px;}
.lsd{letter-spacing:101.844000px;}
.ls13{letter-spacing:105.849600px;}
.ls12{letter-spacing:105.900000px;}
.ls17{letter-spacing:119.916000px;}
.ls14{letter-spacing:204.366000px;}
.ls10{letter-spacing:341.748000px;}
.lsf{letter-spacing:354.336000px;}
.ls7{letter-spacing:589.488000px;}
.lsc{letter-spacing:607.525776px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(89,89,89),0 0.015em rgb(89,89,89),0.015em 0 rgb(89,89,89),0 -0.015em  rgb(89,89,89);}
.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(64,64,64),0 0.015em rgb(64,64,64),0.015em 0 rgb(64,64,64),0 -0.015em  rgb(64,64,64);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(89,89,89);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(64,64,64);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws34{word-spacing:-76.415040px;}
.ws1{word-spacing:-37.440000px;}
.ws36{word-spacing:-31.299840px;}
.ws2{word-spacing:-31.262400px;}
.ws35{word-spacing:-31.005600px;}
.ws30{word-spacing:-24.935040px;}
.ws2f{word-spacing:-24.897600px;}
.ws1e{word-spacing:-18.757440px;}
.ws6{word-spacing:-18.720000px;}
.ws37{word-spacing:-14.040000px;}
.ws3d{word-spacing:-2.796480px;}
.ws0{word-spacing:0.000000px;}
.ws3e{word-spacing:9.828000px;}
.ws3{word-spacing:85.480320px;}
.ws39{word-spacing:139.338000px;}
.ws3c{word-spacing:145.578000px;}
.ws3b{word-spacing:167.514000px;}
.ws3a{word-spacing:170.448000px;}
.ws33{word-spacing:219.708000px;}
.ws32{word-spacing:220.392000px;}
.ws38{word-spacing:220.458000px;}
.ws31{word-spacing:233.112000px;}
.wsf{word-spacing:394.848000px;}
.ws2b{word-spacing:401.208000px;}
.ws29{word-spacing:425.088000px;}
.ws2d{word-spacing:468.372000px;}
.ws2e{word-spacing:486.416640px;}
.ws17{word-spacing:505.584000px;}
.ws9{word-spacing:535.944000px;}
.wse{word-spacing:538.212000px;}
.ws1f{word-spacing:539.263296px;}
.ws10{word-spacing:540.516000px;}
.ws2c{word-spacing:546.108000px;}
.ws4{word-spacing:548.844000px;}
.ws26{word-spacing:551.662320px;}
.ws2a{word-spacing:554.268000px;}
.ws28{word-spacing:559.236000px;}
.ws13{word-spacing:563.388000px;}
.ws14{word-spacing:565.692000px;}
.ws16{word-spacing:567.060000px;}
.ws18{word-spacing:569.364000px;}
.ws23{word-spacing:569.636448px;}
.ws21{word-spacing:581.382672px;}
.ws5{word-spacing:581.460000px;}
.ws1d{word-spacing:582.972000px;}
.ws1a{word-spacing:584.412000px;}
.wsc{word-spacing:585.132000px;}
.ws20{word-spacing:585.179088px;}
.ws1b{word-spacing:586.716000px;}
.wsd{word-spacing:587.208000px;}
.ws11{word-spacing:587.436000px;}
.ws8{word-spacing:587.892000px;}
.wsa{word-spacing:590.196000px;}
.ws24{word-spacing:591.781440px;}
.ws27{word-spacing:608.808000px;}
.ws25{word-spacing:617.000448px;}
.ws12{word-spacing:663.912000px;}
.ws22{word-spacing:670.160448px;}
.ws19{word-spacing:685.512000px;}
.ws15{word-spacing:697.968000px;}
.wsb{word-spacing:718.128000px;}
.ws1c{word-spacing:774.072000px;}
.ws7{word-spacing:781.608000px;}
._5{margin-left:-3.009600px;}
._4{margin-left:-1.683360px;}
._3{width:1.198800px;}
._12{width:3.502800px;}
._18{width:4.640400px;}
._17{width:5.881680px;}
._16{width:7.555680px;}
._9{width:9.687600px;}
._a{width:10.951200px;}
._7{width:12.804480px;}
._8{width:13.987440px;}
._6{width:15.163200px;}
._1{width:17.056800px;}
._0{width:18.282240px;}
._2{width:20.183040px;}
._19{width:21.802320px;}
._15{width:29.880000px;}
._1a{width:79.116000px;}
._1b{width:139.614000px;}
._20{width:161.148000px;}
._23{width:188.254800px;}
._21{width:232.764000px;}
._22{width:239.610000px;}
._14{width:259.800000px;}
._1f{width:264.276000px;}
._13{width:272.400000px;}
._1c{width:308.664000px;}
._1d{width:315.630000px;}
._1e{width:393.174000px;}
._b{width:422.772000px;}
._d{width:472.704000px;}
._f{width:499.161168px;}
._10{width:507.600000px;}
._e{width:515.904000px;}
._11{width:525.479904px;}
._c{width:526.824000px;}
.fc9{color:rgb(252,102,33);}
.fc8{color:rgb(59,56,56);}
.fc5{color:rgb(91,155,213);}
.fc1{color:transparent;}
.fc7{color:rgb(127,127,127);}
.fc6{color:rgb(89,89,89);}
.fc4{color:rgb(211,68,3);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(64,64,64);}
.fc0{color:rgb(255,255,255);}
.fs19{font-size:30.240000px;}
.fs0{font-size:33.120000px;}
.fs1{font-size:41.760000px;}
.fs1a{font-size:48.240000px;}
.fs16{font-size:54.000000px;}
.fs17{font-size:54.144000px;}
.fs9{font-size:66.240000px;}
.fsb{font-size:72.000000px;}
.fsc{font-size:72.144000px;}
.fs14{font-size:77.760000px;}
.fs7{font-size:84.240000px;}
.fs15{font-size:84.384000px;}
.fs10{font-size:95.760000px;}
.fs11{font-size:95.904000px;}
.fsd{font-size:108.000000px;}
.fse{font-size:108.144000px;}
.fs5{font-size:120.240000px;}
.fs6{font-size:120.384000px;}
.fsf{font-size:127.440000px;}
.fs4{font-size:144.000000px;}
.fsa{font-size:149.904000px;}
.fs8{font-size:167.760000px;}
.fs18{font-size:167.904000px;}
.fs2{font-size:239.760000px;}
.fs3{font-size:239.904000px;}
.fs12{font-size:293.760000px;}
.fs13{font-size:293.904000px;}
.y0{bottom:0.000000px;}
.y9d{bottom:7.230000px;}
.yd0{bottom:9.468000px;}
.y105{bottom:11.988000px;}
.yfa{bottom:17.820000px;}
.ye1{bottom:18.360000px;}
.yf0{bottom:18.390000px;}
.y83{bottom:19.368000px;}
.y65{bottom:19.476000px;}
.y48{bottom:27.180000px;}
.ya8{bottom:27.795000px;}
.y4c{bottom:31.212000px;}
.y9b{bottom:31.530000px;}
.yb0{bottom:33.156000px;}
.y104{bottom:33.624000px;}
.ycf{bottom:34.704000px;}
.yc2{bottom:34.956000px;}
.y82{bottom:43.848000px;}
.y102{bottom:43.884000px;}
.y64{bottom:43.920000px;}
.yd7{bottom:48.672000px;}
.ye7{bottom:48.705000px;}
.ya2{bottom:54.465000px;}
.y91{bottom:58.170000px;}
.y58{bottom:59.220000px;}
.y46{bottom:59.400000px;}
.yce{bottom:59.904000px;}
.y8f{bottom:60.984000px;}
.yd2{bottom:63.390000px;}
.yd4{bottom:63.435000px;}
.y4b{bottom:63.468000px;}
.yc1{bottom:63.756000px;}
.yaf{bottom:65.592000px;}
.ye3{bottom:66.885000px;}
.y81{bottom:68.292000px;}
.y63{bottom:68.400000px;}
.y36{bottom:68.475000px;}
.y33{bottom:68.505000px;}
.y49{bottom:68.544000px;}
.y24{bottom:68.550000px;}
.y21{bottom:68.580000px;}
.y2c{bottom:68.610000px;}
.y29{bottom:68.655000px;}
.y1b{bottom:68.685000px;}
.yd6{bottom:69.150000px;}
.y1d{bottom:69.765000px;}
.y71{bottom:73.620000px;}
.yf4{bottom:73.650000px;}
.yd8{bottom:75.210000px;}
.ye8{bottom:75.240000px;}
.y3{bottom:78.156000px;}
.yfc{bottom:88.455000px;}
.y8e{bottom:89.784000px;}
.y44{bottom:91.620000px;}
.yc0{bottom:92.556000px;}
.yd1{bottom:93.600000px;}
.ye4{bottom:94.320000px;}
.y2{bottom:94.536000px;}
.y4a{bottom:95.724000px;}
.yf2{bottom:95.865000px;}
.yae{bottom:97.992000px;}
.yd9{bottom:101.775000px;}
.yfd{bottom:104.865000px;}
.yf5{bottom:104.910000px;}
.y12{bottom:106.056000px;}
.y92{bottom:107.310000px;}
.y62{bottom:107.670000px;}
.y15{bottom:115.812000px;}
.y8d{bottom:118.584000px;}
.ybf{bottom:121.356000px;}
.y42{bottom:124.020000px;}
.yd3{bottom:125.355000px;}
.ycd{bottom:126.216000px;}
.y47{bottom:127.980000px;}
.yda{bottom:128.310000px;}
.ye9{bottom:128.340000px;}
.yf3{bottom:130.215000px;}
.yad{bottom:130.392000px;}
.y7f{bottom:130.530000px;}
.yfe{bottom:136.080000px;}
.yf6{bottom:136.110000px;}
.y60{bottom:136.620000px;}
.y108{bottom:139.284000px;}
.ya3{bottom:142.815000px;}
.y11{bottom:146.016000px;}
.ye6{bottom:146.775000px;}
.y8c{bottom:147.420000px;}
.ybe{bottom:150.150000px;}
.ydb{bottom:154.830000px;}
.yea{bottom:154.875000px;}
.y40{bottom:156.240000px;}
.y93{bottom:156.420000px;}
.ycc{bottom:158.610000px;}
.y7d{bottom:159.510000px;}
.y45{bottom:160.230000px;}
.y59{bottom:163.260000px;}
.y18{bottom:163.290000px;}
.y70{bottom:165.315000px;}
.yff{bottom:167.325000px;}
.yf7{bottom:167.370000px;}
.y8b{bottom:176.220000px;}
.y10{bottom:178.410000px;}
.ybd{bottom:178.950000px;}
.ydc{bottom:181.410000px;}
.yeb{bottom:181.440000px;}
.y90{bottom:181.800000px;}
.y72{bottom:186.150000px;}
.y3e{bottom:188.460000px;}
.ycb{bottom:191.010000px;}
.y43{bottom:192.495000px;}
.y56{bottom:192.705000px;}
.y17{bottom:195.735000px;}
.y10d{bottom:195.870000px;}
.y6f{bottom:197.745000px;}
.y100{bottom:198.570000px;}
.yf8{bottom:198.615000px;}
.y8a{bottom:205.020000px;}
.y94{bottom:205.530000px;}
.ydd{bottom:207.930000px;}
.yec{bottom:207.975000px;}
.y10c{bottom:217.515000px;}
.yf{bottom:218.235000px;}
.y3c{bottom:220.680000px;}
.ybc{bottom:222.915000px;}
.yca{bottom:223.455000px;}
.y5a{bottom:224.355000px;}
.y41{bottom:224.745000px;}
.y55{bottom:225.105000px;}
.y73{bottom:227.775000px;}
.y101{bottom:229.785000px;}
.yf9{bottom:229.830000px;}
.y6e{bottom:230.145000px;}
.ya4{bottom:231.150000px;}
.y89{bottom:233.820000px;}
.yde{bottom:234.465000px;}
.yed{bottom:234.510000px;}
.yf1{bottom:240.195000px;}
.y16{bottom:243.255000px;}
.ye{bottom:250.635000px;}
.ye5{bottom:251.355000px;}
.ybb{bottom:251.715000px;}
.yfb{bottom:252.825000px;}
.y3a{bottom:252.900000px;}
.y95{bottom:254.670000px;}
.yc9{bottom:255.855000px;}
.y3f{bottom:256.965000px;}
.y54{bottom:257.505000px;}
.ya9{bottom:259.050000px;}
.yd5{bottom:259.740000px;}
.ydf{bottom:261.030000px;}
.yee{bottom:261.075000px;}
.y6d{bottom:262.545000px;}
.y88{bottom:262.620000px;}
.y9c{bottom:262.980000px;}
.y74{bottom:269.430000px;}
.yba{bottom:280.515000px;}
.y38{bottom:285.120000px;}
.y5b{bottom:285.450000px;}
.yc8{bottom:288.255000px;}
.y3d{bottom:289.230000px;}
.y53{bottom:289.905000px;}
.ye0{bottom:290.055000px;}
.yef{bottom:290.085000px;}
.yd{bottom:290.595000px;}
.y87{bottom:291.450000px;}
.y6c{bottom:294.945000px;}
.y96{bottom:303.765000px;}
.y8{bottom:305.430000px;}
.yb9{bottom:309.315000px;}
.y75{bottom:311.040000px;}
.y35{bottom:317.520000px;}
.ya5{bottom:319.500000px;}
.y86{bottom:320.250000px;}
.yc7{bottom:320.655000px;}
.y3b{bottom:321.480000px;}
.y6b{bottom:327.345000px;}
.y61{bottom:330.120000px;}
.yc{bottom:337.935000px;}
.yb8{bottom:338.115000px;}
.y5c{bottom:346.500000px;}
.y85{bottom:349.050000px;}
.y32{bottom:349.740000px;}
.y76{bottom:352.695000px;}
.y97{bottom:352.905000px;}
.y39{bottom:353.730000px;}
.y52{bottom:354.750000px;}
.yb1{bottom:355.170000px;}
.y7{bottom:359.430000px;}
.y6a{bottom:359.790000px;}
.yc6{bottom:368.025000px;}
.yb{bottom:370.365000px;}
.y84{bottom:377.850000px;}
.y7e{bottom:378.030000px;}
.yb7{bottom:381.885000px;}
.y30{bottom:381.960000px;}
.y37{bottom:385.995000px;}
.y51{bottom:387.150000px;}
.y69{bottom:392.190000px;}
.y77{bottom:394.305000px;}
.y10b{bottom:400.245000px;}
.yc5{bottom:400.425000px;}
.y98{bottom:402.015000px;}
.y5d{bottom:407.595000px;}
.ya6{bottom:407.850000px;}
.yb3{bottom:407.910000px;}
.yb6{bottom:410.685000px;}
.y2e{bottom:414.180000px;}
.y6{bottom:417.450000px;}
.ya{bottom:417.885000px;}
.y34{bottom:418.245000px;}
.y50{bottom:419.550000px;}
.yac{bottom:429.090000px;}
.ya1{bottom:430.845000px;}
.yc4{bottom:432.825000px;}
.y78{bottom:435.960000px;}
.yb5{bottom:439.485000px;}
.y2b{bottom:446.400000px;}
.y31{bottom:450.510000px;}
.y99{bottom:451.155000px;}
.yab{bottom:453.525000px;}
.ya0{bottom:455.325000px;}
.y68{bottom:456.990000px;}
.ye2{bottom:460.440000px;}
.y9{bottom:465.225000px;}
.yb4{bottom:468.285000px;}
.y5e{bottom:468.645000px;}
.y79{bottom:477.570000px;}
.yaa{bottom:478.005000px;}
.y28{bottom:478.620000px;}
.y9f{bottom:479.775000px;}
.y2f{bottom:482.760000px;}
.y4f{bottom:484.380000px;}
.yb2{bottom:487.290000px;}
.y67{bottom:489.420000px;}
.y5{bottom:489.495000px;}
.ya7{bottom:496.230000px;}
.y9a{bottom:500.250000px;}
.y26{bottom:510.840000px;}
.y2d{bottom:515.010000px;}
.y4e{bottom:516.780000px;}
.y7a{bottom:519.225000px;}
.y66{bottom:521.820000px;}
.y5f{bottom:529.740000px;}
.y9e{bottom:532.875000px;}
.y14{bottom:538.125000px;}
.y19{bottom:539.490000px;}
.y23{bottom:543.240000px;}
.y2a{bottom:547.275000px;}
.y4d{bottom:549.180000px;}
.y7b{bottom:560.850000px;}
.y4{bottom:561.495000px;}
.y103{bottom:571.575000px;}
.y20{bottom:575.460000px;}
.y27{bottom:579.525000px;}
.y10a{bottom:580.215000px;}
.y107{bottom:595.335000px;}
.y7c{bottom:602.490000px;}
.y25{bottom:611.790000px;}
.y80{bottom:617.430000px;}
.y109{bottom:627.555000px;}
.y106{bottom:627.735000px;}
.y22{bottom:644.040000px;}
.y1a{bottom:672.120000px;}
.y1f{bottom:676.290000px;}
.y13{bottom:705.750000px;}
.yc3{bottom:707.010000px;}
.y1e{bottom:708.555000px;}
.y57{bottom:715.710000px;}
.y1c{bottom:740.805000px;}
.y1{bottom:744.045000px;}
.h1{height:25.341328px;}
.h2b{height:27.276490px;}
.h2{height:31.952109px;}
.h2c{height:36.910195px;}
.h24{height:48.708000px;}
.h25{height:48.837888px;}
.h26{height:50.448000px;}
.h20{height:59.497031px;}
.ha{height:59.748480px;}
.h8{height:64.455117px;}
.hd{height:64.944000px;}
.h10{height:65.073888px;}
.h28{height:66.708000px;}
.he{height:69.264000px;}
.h11{height:69.393888px;}
.h2a{height:71.940960px;}
.h27{height:73.788000px;}
.h21{height:75.984480px;}
.h22{height:76.114368px;}
.h1a{height:81.779040px;}
.h1b{height:86.375520px;}
.h1c{height:86.505408px;}
.h14{height:92.232000px;}
.h15{height:97.416000px;}
.h16{height:97.545888px;}
.h18{height:107.941680px;}
.h6{height:108.456480px;}
.h7{height:108.586368px;}
.h13{height:114.120000px;}
.hb{height:128.018016px;}
.h5{height:129.888000px;}
.hc{height:137.880000px;}
.h9{height:143.267040px;}
.h29{height:143.390016px;}
.h12{height:146.340000px;}
.hf{height:151.380000px;}
.h3{height:203.076720px;}
.h4{height:203.198688px;}
.h1e{height:224.766562px;}
.h1f{height:224.876742px;}
.h23{height:324.000000px;}
.h1d{height:578.520000px;}
.h17{height:583.740000px;}
.h19{height:662.940000px;}
.h0{height:810.000000px;}
.w3{width:188.820000px;}
.w2{width:297.720000px;}
.w8{width:540.180000px;}
.w6{width:708.840000px;}
.w7{width:709.020000px;}
.w4{width:975.060000px;}
.w5{width:1015.200000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x11{left:4.860000px;}
.x58{left:9.900000px;}
.x57{left:17.604000px;}
.x5{left:19.331979px;}
.x25{left:22.650000px;}
.x39{left:25.343979px;}
.x2c{left:28.511979px;}
.x33{left:29.880000px;}
.x23{left:32.370000px;}
.x45{left:38.190000px;}
.x30{left:39.570000px;}
.x56{left:40.755000px;}
.x22{left:46.650000px;}
.x42{left:47.880000px;}
.x31{left:49.830000px;}
.xe{left:52.380000px;}
.x6{left:55.691979px;}
.x43{left:58.140000px;}
.x3a{left:59.183979px;}
.x2d{left:62.351979px;}
.x2f{left:64.110000px;}
.x24{left:70.410000px;}
.x4c{left:75.671979px;}
.x64{left:78.119979px;}
.x41{left:82.725000px;}
.x4{left:83.987979px;}
.x32{left:87.870000px;}
.x3b{left:90.827989px;}
.x63{left:98.565000px;}
.x44{left:106.455000px;}
.x50{left:110.160000px;}
.x59{left:117.150000px;}
.x9{left:118.799979px;}
.x4f{left:121.103979px;}
.x5c{left:123.660000px;}
.xa{left:145.835979px;}
.x51{left:147.495000px;}
.x3d{left:151.199989px;}
.x3e{left:167.609989px;}
.x47{left:170.310000px;}
.xb{left:172.829979px;}
.x60{left:179.355000px;}
.x62{left:187.095000px;}
.x14{left:189.869979px;}
.x61{left:191.550000px;}
.x5a{left:192.810000px;}
.x28{left:195.735000px;}
.xc{left:199.829979px;}
.x16{left:204.989979px;}
.x52{left:206.790000px;}
.x1a{left:213.089979px;}
.x1e{left:222.089979px;}
.x36{left:223.530000px;}
.x17{left:226.049979px;}
.xf{left:233.429979px;}
.x5e{left:239.970000px;}
.x1d{left:249.629979px;}
.x15{left:251.789979px;}
.x19{left:253.589979px;}
.x1c{left:256.139979px;}
.x1b{left:261.539979px;}
.x1f{left:270.539979px;}
.x18{left:274.679979px;}
.x53{left:289.185000px;}
.x4a{left:303.584979px;}
.x3c{left:318.884989px;}
.x3f{left:323.969989px;}
.x46{left:326.625000px;}
.x35{left:330.990000px;}
.x54{left:344.550000px;}
.x48{left:353.190000px;}
.x29{left:356.115000px;}
.x5f{left:363.600000px;}
.x2e{left:373.680000px;}
.x13{left:377.069979px;}
.x27{left:389.625000px;}
.x21{left:406.080000px;}
.x12{left:413.429979px;}
.x55{left:423.150000px;}
.x5b{left:432.645000px;}
.x26{left:456.480000px;}
.x34{left:485.250000px;}
.x4b{left:516.929979px;}
.x49{left:548.130000px;}
.x2a{left:556.095000px;}
.x68{left:558.614979px;}
.x66{left:571.784979px;}
.x69{left:585.974979px;}
.x7{left:600.089979px;}
.x37{left:609.270000px;}
.x8{left:624.389979px;}
.x4d{left:644.729979px;}
.x2b{left:718.350000px;}
.x10{left:727.380000px;}
.x40{left:730.980000px;}
.x65{left:748.154979px;}
.x38{left:754.275000px;}
.x4e{left:757.904979px;}
.x5d{left:789.480000px;}
.x3{left:893.549979px;}
.x2{left:927.569979px;}
.x20{left:1004.729979px;}
.xd{left:1060.304979px;}
.x67{left:1108.514979px;}
.x1{left:1402.739979px;}
@media print{
.v5{vertical-align:-39.946667pt;}
.v3{vertical-align:-17.813333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.546667pt;}
.v1{vertical-align:3.840000pt;}
.v6{vertical-align:16.000000pt;}
.v4{vertical-align:22.293333pt;}
.ls4{letter-spacing:-0.228267pt;}
.lse{letter-spacing:-0.137067pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls1a{letter-spacing:-0.026240pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.038933pt;}
.ls11{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.112000pt;}
.ls1c{letter-spacing:0.161067pt;}
.lsb{letter-spacing:0.224000pt;}
.lsa{letter-spacing:0.256000pt;}
.ls5{letter-spacing:16.000000pt;}
.ls1b{letter-spacing:27.823147pt;}
.ls19{letter-spacing:27.951147pt;}
.ls18{letter-spacing:28.484480pt;}
.ls3{letter-spacing:58.592000pt;}
.ls2{letter-spacing:58.675200pt;}
.ls1{letter-spacing:58.720000pt;}
.ls8{letter-spacing:86.675200pt;}
.ls6{letter-spacing:86.720000pt;}
.lsd{letter-spacing:90.528000pt;}
.ls13{letter-spacing:94.088533pt;}
.ls12{letter-spacing:94.133333pt;}
.ls17{letter-spacing:106.592000pt;}
.ls14{letter-spacing:181.658667pt;}
.ls10{letter-spacing:303.776000pt;}
.lsf{letter-spacing:314.965333pt;}
.ls7{letter-spacing:523.989333pt;}
.lsc{letter-spacing:540.022912pt;}
.ws34{word-spacing:-67.924480pt;}
.ws1{word-spacing:-33.280000pt;}
.ws36{word-spacing:-27.822080pt;}
.ws2{word-spacing:-27.788800pt;}
.ws35{word-spacing:-27.560533pt;}
.ws30{word-spacing:-22.164480pt;}
.ws2f{word-spacing:-22.131200pt;}
.ws1e{word-spacing:-16.673280pt;}
.ws6{word-spacing:-16.640000pt;}
.ws37{word-spacing:-12.480000pt;}
.ws3d{word-spacing:-2.485760pt;}
.ws0{word-spacing:0.000000pt;}
.ws3e{word-spacing:8.736000pt;}
.ws3{word-spacing:75.982507pt;}
.ws39{word-spacing:123.856000pt;}
.ws3c{word-spacing:129.402667pt;}
.ws3b{word-spacing:148.901333pt;}
.ws3a{word-spacing:151.509333pt;}
.ws33{word-spacing:195.296000pt;}
.ws32{word-spacing:195.904000pt;}
.ws38{word-spacing:195.962667pt;}
.ws31{word-spacing:207.210667pt;}
.wsf{word-spacing:350.976000pt;}
.ws2b{word-spacing:356.629333pt;}
.ws29{word-spacing:377.856000pt;}
.ws2d{word-spacing:416.330667pt;}
.ws2e{word-spacing:432.370347pt;}
.ws17{word-spacing:449.408000pt;}
.ws9{word-spacing:476.394667pt;}
.wse{word-spacing:478.410667pt;}
.ws1f{word-spacing:479.345152pt;}
.ws10{word-spacing:480.458667pt;}
.ws2c{word-spacing:485.429333pt;}
.ws4{word-spacing:487.861333pt;}
.ws26{word-spacing:490.366507pt;}
.ws2a{word-spacing:492.682667pt;}
.ws28{word-spacing:497.098667pt;}
.ws13{word-spacing:500.789333pt;}
.ws14{word-spacing:502.837333pt;}
.ws16{word-spacing:504.053333pt;}
.ws18{word-spacing:506.101333pt;}
.ws23{word-spacing:506.343509pt;}
.ws21{word-spacing:516.784597pt;}
.ws5{word-spacing:516.853333pt;}
.ws1d{word-spacing:518.197333pt;}
.ws1a{word-spacing:519.477333pt;}
.wsc{word-spacing:520.117333pt;}
.ws20{word-spacing:520.159189pt;}
.ws1b{word-spacing:521.525333pt;}
.wsd{word-spacing:521.962667pt;}
.ws11{word-spacing:522.165333pt;}
.ws8{word-spacing:522.570667pt;}
.wsa{word-spacing:524.618667pt;}
.ws24{word-spacing:526.027947pt;}
.ws27{word-spacing:541.162667pt;}
.ws25{word-spacing:548.444843pt;}
.ws12{word-spacing:590.144000pt;}
.ws22{word-spacing:595.698176pt;}
.ws19{word-spacing:609.344000pt;}
.ws15{word-spacing:620.416000pt;}
.wsb{word-spacing:638.336000pt;}
.ws1c{word-spacing:688.064000pt;}
.ws7{word-spacing:694.762667pt;}
._5{margin-left:-2.675200pt;}
._4{margin-left:-1.496320pt;}
._3{width:1.065600pt;}
._12{width:3.113600pt;}
._18{width:4.124800pt;}
._17{width:5.228160pt;}
._16{width:6.716160pt;}
._9{width:8.611200pt;}
._a{width:9.734400pt;}
._7{width:11.381760pt;}
._8{width:12.433280pt;}
._6{width:13.478400pt;}
._1{width:15.161600pt;}
._0{width:16.250880pt;}
._2{width:17.940480pt;}
._19{width:19.379840pt;}
._15{width:26.560000pt;}
._1a{width:70.325333pt;}
._1b{width:124.101333pt;}
._20{width:143.242667pt;}
._23{width:167.337600pt;}
._21{width:206.901333pt;}
._22{width:212.986667pt;}
._14{width:230.933333pt;}
._1f{width:234.912000pt;}
._13{width:242.133333pt;}
._1c{width:274.368000pt;}
._1d{width:280.560000pt;}
._1e{width:349.488000pt;}
._b{width:375.797333pt;}
._d{width:420.181333pt;}
._f{width:443.698816pt;}
._10{width:451.200000pt;}
._e{width:458.581333pt;}
._11{width:467.093248pt;}
._c{width:468.288000pt;}
.fs19{font-size:26.880000pt;}
.fs0{font-size:29.440000pt;}
.fs1{font-size:37.120000pt;}
.fs1a{font-size:42.880000pt;}
.fs16{font-size:48.000000pt;}
.fs17{font-size:48.128000pt;}
.fs9{font-size:58.880000pt;}
.fsb{font-size:64.000000pt;}
.fsc{font-size:64.128000pt;}
.fs14{font-size:69.120000pt;}
.fs7{font-size:74.880000pt;}
.fs15{font-size:75.008000pt;}
.fs10{font-size:85.120000pt;}
.fs11{font-size:85.248000pt;}
.fsd{font-size:96.000000pt;}
.fse{font-size:96.128000pt;}
.fs5{font-size:106.880000pt;}
.fs6{font-size:107.008000pt;}
.fsf{font-size:113.280000pt;}
.fs4{font-size:128.000000pt;}
.fsa{font-size:133.248000pt;}
.fs8{font-size:149.120000pt;}
.fs18{font-size:149.248000pt;}
.fs2{font-size:213.120000pt;}
.fs3{font-size:213.248000pt;}
.fs12{font-size:261.120000pt;}
.fs13{font-size:261.248000pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:6.426667pt;}
.yd0{bottom:8.416000pt;}
.y105{bottom:10.656000pt;}
.yfa{bottom:15.840000pt;}
.ye1{bottom:16.320000pt;}
.yf0{bottom:16.346667pt;}
.y83{bottom:17.216000pt;}
.y65{bottom:17.312000pt;}
.y48{bottom:24.160000pt;}
.ya8{bottom:24.706667pt;}
.y4c{bottom:27.744000pt;}
.y9b{bottom:28.026667pt;}
.yb0{bottom:29.472000pt;}
.y104{bottom:29.888000pt;}
.ycf{bottom:30.848000pt;}
.yc2{bottom:31.072000pt;}
.y82{bottom:38.976000pt;}
.y102{bottom:39.008000pt;}
.y64{bottom:39.040000pt;}
.yd7{bottom:43.264000pt;}
.ye7{bottom:43.293333pt;}
.ya2{bottom:48.413333pt;}
.y91{bottom:51.706667pt;}
.y58{bottom:52.640000pt;}
.y46{bottom:52.800000pt;}
.yce{bottom:53.248000pt;}
.y8f{bottom:54.208000pt;}
.yd2{bottom:56.346667pt;}
.yd4{bottom:56.386667pt;}
.y4b{bottom:56.416000pt;}
.yc1{bottom:56.672000pt;}
.yaf{bottom:58.304000pt;}
.ye3{bottom:59.453333pt;}
.y81{bottom:60.704000pt;}
.y63{bottom:60.800000pt;}
.y36{bottom:60.866667pt;}
.y33{bottom:60.893333pt;}
.y49{bottom:60.928000pt;}
.y24{bottom:60.933333pt;}
.y21{bottom:60.960000pt;}
.y2c{bottom:60.986667pt;}
.y29{bottom:61.026667pt;}
.y1b{bottom:61.053333pt;}
.yd6{bottom:61.466667pt;}
.y1d{bottom:62.013333pt;}
.y71{bottom:65.440000pt;}
.yf4{bottom:65.466667pt;}
.yd8{bottom:66.853333pt;}
.ye8{bottom:66.880000pt;}
.y3{bottom:69.472000pt;}
.yfc{bottom:78.626667pt;}
.y8e{bottom:79.808000pt;}
.y44{bottom:81.440000pt;}
.yc0{bottom:82.272000pt;}
.yd1{bottom:83.200000pt;}
.ye4{bottom:83.840000pt;}
.y2{bottom:84.032000pt;}
.y4a{bottom:85.088000pt;}
.yf2{bottom:85.213333pt;}
.yae{bottom:87.104000pt;}
.yd9{bottom:90.466667pt;}
.yfd{bottom:93.213333pt;}
.yf5{bottom:93.253333pt;}
.y12{bottom:94.272000pt;}
.y92{bottom:95.386667pt;}
.y62{bottom:95.706667pt;}
.y15{bottom:102.944000pt;}
.y8d{bottom:105.408000pt;}
.ybf{bottom:107.872000pt;}
.y42{bottom:110.240000pt;}
.yd3{bottom:111.426667pt;}
.ycd{bottom:112.192000pt;}
.y47{bottom:113.760000pt;}
.yda{bottom:114.053333pt;}
.ye9{bottom:114.080000pt;}
.yf3{bottom:115.746667pt;}
.yad{bottom:115.904000pt;}
.y7f{bottom:116.026667pt;}
.yfe{bottom:120.960000pt;}
.yf6{bottom:120.986667pt;}
.y60{bottom:121.440000pt;}
.y108{bottom:123.808000pt;}
.ya3{bottom:126.946667pt;}
.y11{bottom:129.792000pt;}
.ye6{bottom:130.466667pt;}
.y8c{bottom:131.040000pt;}
.ybe{bottom:133.466667pt;}
.ydb{bottom:137.626667pt;}
.yea{bottom:137.666667pt;}
.y40{bottom:138.880000pt;}
.y93{bottom:139.040000pt;}
.ycc{bottom:140.986667pt;}
.y7d{bottom:141.786667pt;}
.y45{bottom:142.426667pt;}
.y59{bottom:145.120000pt;}
.y18{bottom:145.146667pt;}
.y70{bottom:146.946667pt;}
.yff{bottom:148.733333pt;}
.yf7{bottom:148.773333pt;}
.y8b{bottom:156.640000pt;}
.y10{bottom:158.586667pt;}
.ybd{bottom:159.066667pt;}
.ydc{bottom:161.253333pt;}
.yeb{bottom:161.280000pt;}
.y90{bottom:161.600000pt;}
.y72{bottom:165.466667pt;}
.y3e{bottom:167.520000pt;}
.ycb{bottom:169.786667pt;}
.y43{bottom:171.106667pt;}
.y56{bottom:171.293333pt;}
.y17{bottom:173.986667pt;}
.y10d{bottom:174.106667pt;}
.y6f{bottom:175.773333pt;}
.y100{bottom:176.506667pt;}
.yf8{bottom:176.546667pt;}
.y8a{bottom:182.240000pt;}
.y94{bottom:182.693333pt;}
.ydd{bottom:184.826667pt;}
.yec{bottom:184.866667pt;}
.y10c{bottom:193.346667pt;}
.yf{bottom:193.986667pt;}
.y3c{bottom:196.160000pt;}
.ybc{bottom:198.146667pt;}
.yca{bottom:198.626667pt;}
.y5a{bottom:199.426667pt;}
.y41{bottom:199.773333pt;}
.y55{bottom:200.093333pt;}
.y73{bottom:202.466667pt;}
.y101{bottom:204.253333pt;}
.yf9{bottom:204.293333pt;}
.y6e{bottom:204.573333pt;}
.ya4{bottom:205.466667pt;}
.y89{bottom:207.840000pt;}
.yde{bottom:208.413333pt;}
.yed{bottom:208.453333pt;}
.yf1{bottom:213.506667pt;}
.y16{bottom:216.226667pt;}
.ye{bottom:222.786667pt;}
.ye5{bottom:223.426667pt;}
.ybb{bottom:223.746667pt;}
.yfb{bottom:224.733333pt;}
.y3a{bottom:224.800000pt;}
.y95{bottom:226.373333pt;}
.yc9{bottom:227.426667pt;}
.y3f{bottom:228.413333pt;}
.y54{bottom:228.893333pt;}
.ya9{bottom:230.266667pt;}
.yd5{bottom:230.880000pt;}
.ydf{bottom:232.026667pt;}
.yee{bottom:232.066667pt;}
.y6d{bottom:233.373333pt;}
.y88{bottom:233.440000pt;}
.y9c{bottom:233.760000pt;}
.y74{bottom:239.493333pt;}
.yba{bottom:249.346667pt;}
.y38{bottom:253.440000pt;}
.y5b{bottom:253.733333pt;}
.yc8{bottom:256.226667pt;}
.y3d{bottom:257.093333pt;}
.y53{bottom:257.693333pt;}
.ye0{bottom:257.826667pt;}
.yef{bottom:257.853333pt;}
.yd{bottom:258.306667pt;}
.y87{bottom:259.066667pt;}
.y6c{bottom:262.173333pt;}
.y96{bottom:270.013333pt;}
.y8{bottom:271.493333pt;}
.yb9{bottom:274.946667pt;}
.y75{bottom:276.480000pt;}
.y35{bottom:282.240000pt;}
.ya5{bottom:284.000000pt;}
.y86{bottom:284.666667pt;}
.yc7{bottom:285.026667pt;}
.y3b{bottom:285.760000pt;}
.y6b{bottom:290.973333pt;}
.y61{bottom:293.440000pt;}
.yc{bottom:300.386667pt;}
.yb8{bottom:300.546667pt;}
.y5c{bottom:308.000000pt;}
.y85{bottom:310.266667pt;}
.y32{bottom:310.880000pt;}
.y76{bottom:313.506667pt;}
.y97{bottom:313.693333pt;}
.y39{bottom:314.426667pt;}
.y52{bottom:315.333333pt;}
.yb1{bottom:315.706667pt;}
.y7{bottom:319.493333pt;}
.y6a{bottom:319.813333pt;}
.yc6{bottom:327.133333pt;}
.yb{bottom:329.213333pt;}
.y84{bottom:335.866667pt;}
.y7e{bottom:336.026667pt;}
.yb7{bottom:339.453333pt;}
.y30{bottom:339.520000pt;}
.y37{bottom:343.106667pt;}
.y51{bottom:344.133333pt;}
.y69{bottom:348.613333pt;}
.y77{bottom:350.493333pt;}
.y10b{bottom:355.773333pt;}
.yc5{bottom:355.933333pt;}
.y98{bottom:357.346667pt;}
.y5d{bottom:362.306667pt;}
.ya6{bottom:362.533333pt;}
.yb3{bottom:362.586667pt;}
.yb6{bottom:365.053333pt;}
.y2e{bottom:368.160000pt;}
.y6{bottom:371.066667pt;}
.ya{bottom:371.453333pt;}
.y34{bottom:371.773333pt;}
.y50{bottom:372.933333pt;}
.yac{bottom:381.413333pt;}
.ya1{bottom:382.973333pt;}
.yc4{bottom:384.733333pt;}
.y78{bottom:387.520000pt;}
.yb5{bottom:390.653333pt;}
.y2b{bottom:396.800000pt;}
.y31{bottom:400.453333pt;}
.y99{bottom:401.026667pt;}
.yab{bottom:403.133333pt;}
.ya0{bottom:404.733333pt;}
.y68{bottom:406.213333pt;}
.ye2{bottom:409.280000pt;}
.y9{bottom:413.533333pt;}
.yb4{bottom:416.253333pt;}
.y5e{bottom:416.573333pt;}
.y79{bottom:424.506667pt;}
.yaa{bottom:424.893333pt;}
.y28{bottom:425.440000pt;}
.y9f{bottom:426.466667pt;}
.y2f{bottom:429.120000pt;}
.y4f{bottom:430.560000pt;}
.yb2{bottom:433.146667pt;}
.y67{bottom:435.040000pt;}
.y5{bottom:435.106667pt;}
.ya7{bottom:441.093333pt;}
.y9a{bottom:444.666667pt;}
.y26{bottom:454.080000pt;}
.y2d{bottom:457.786667pt;}
.y4e{bottom:459.360000pt;}
.y7a{bottom:461.533333pt;}
.y66{bottom:463.840000pt;}
.y5f{bottom:470.880000pt;}
.y9e{bottom:473.666667pt;}
.y14{bottom:478.333333pt;}
.y19{bottom:479.546667pt;}
.y23{bottom:482.880000pt;}
.y2a{bottom:486.466667pt;}
.y4d{bottom:488.160000pt;}
.y7b{bottom:498.533333pt;}
.y4{bottom:499.106667pt;}
.y103{bottom:508.066667pt;}
.y20{bottom:511.520000pt;}
.y27{bottom:515.133333pt;}
.y10a{bottom:515.746667pt;}
.y107{bottom:529.186667pt;}
.y7c{bottom:535.546667pt;}
.y25{bottom:543.813333pt;}
.y80{bottom:548.826667pt;}
.y109{bottom:557.826667pt;}
.y106{bottom:557.986667pt;}
.y22{bottom:572.480000pt;}
.y1a{bottom:597.440000pt;}
.y1f{bottom:601.146667pt;}
.y13{bottom:627.333333pt;}
.yc3{bottom:628.453333pt;}
.y1e{bottom:629.826667pt;}
.y57{bottom:636.186667pt;}
.y1c{bottom:658.493333pt;}
.y1{bottom:661.373333pt;}
.h1{height:22.525625pt;}
.h2b{height:24.245769pt;}
.h2{height:28.401875pt;}
.h2c{height:32.809062pt;}
.h24{height:43.296000pt;}
.h25{height:43.411456pt;}
.h26{height:44.842667pt;}
.h20{height:52.886250pt;}
.ha{height:53.109760pt;}
.h8{height:57.293437pt;}
.hd{height:57.728000pt;}
.h10{height:57.843456pt;}
.h28{height:59.296000pt;}
.he{height:61.568000pt;}
.h11{height:61.683456pt;}
.h2a{height:63.947520pt;}
.h27{height:65.589333pt;}
.h21{height:67.541760pt;}
.h22{height:67.657216pt;}
.h1a{height:72.692480pt;}
.h1b{height:76.778240pt;}
.h1c{height:76.893696pt;}
.h14{height:81.984000pt;}
.h15{height:86.592000pt;}
.h16{height:86.707456pt;}
.h18{height:95.948160pt;}
.h6{height:96.405760pt;}
.h7{height:96.521216pt;}
.h13{height:101.440000pt;}
.hb{height:113.793792pt;}
.h5{height:115.456000pt;}
.hc{height:122.560000pt;}
.h9{height:127.348480pt;}
.h29{height:127.457792pt;}
.h12{height:130.080000pt;}
.hf{height:134.560000pt;}
.h3{height:180.512640pt;}
.h4{height:180.621056pt;}
.h1e{height:199.792500pt;}
.h1f{height:199.890437pt;}
.h23{height:288.000000pt;}
.h1d{height:514.240000pt;}
.h17{height:518.880000pt;}
.h19{height:589.280000pt;}
.h0{height:720.000000pt;}
.w3{width:167.840000pt;}
.w2{width:264.640000pt;}
.w8{width:480.160000pt;}
.w6{width:630.080000pt;}
.w7{width:630.240000pt;}
.w4{width:866.720000pt;}
.w5{width:902.400000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x11{left:4.320000pt;}
.x58{left:8.800000pt;}
.x57{left:15.648000pt;}
.x5{left:17.183981pt;}
.x25{left:20.133333pt;}
.x39{left:22.527981pt;}
.x2c{left:25.343981pt;}
.x33{left:26.560000pt;}
.x23{left:28.773333pt;}
.x45{left:33.946667pt;}
.x30{left:35.173333pt;}
.x56{left:36.226667pt;}
.x22{left:41.466667pt;}
.x42{left:42.560000pt;}
.x31{left:44.293333pt;}
.xe{left:46.560000pt;}
.x6{left:49.503981pt;}
.x43{left:51.680000pt;}
.x3a{left:52.607981pt;}
.x2d{left:55.423981pt;}
.x2f{left:56.986667pt;}
.x24{left:62.586667pt;}
.x4c{left:67.263981pt;}
.x64{left:69.439981pt;}
.x41{left:73.533333pt;}
.x4{left:74.655981pt;}
.x32{left:78.106667pt;}
.x3b{left:80.735991pt;}
.x63{left:87.613333pt;}
.x44{left:94.626667pt;}
.x50{left:97.920000pt;}
.x59{left:104.133333pt;}
.x9{left:105.599981pt;}
.x4f{left:107.647981pt;}
.x5c{left:109.920000pt;}
.xa{left:129.631981pt;}
.x51{left:131.106667pt;}
.x3d{left:134.399991pt;}
.x3e{left:148.986657pt;}
.x47{left:151.386667pt;}
.xb{left:153.626648pt;}
.x60{left:159.426667pt;}
.x62{left:166.306667pt;}
.x14{left:168.773314pt;}
.x61{left:170.266667pt;}
.x5a{left:171.386667pt;}
.x28{left:173.986667pt;}
.xc{left:177.626648pt;}
.x16{left:182.213314pt;}
.x52{left:183.813333pt;}
.x1a{left:189.413314pt;}
.x1e{left:197.413314pt;}
.x36{left:198.693333pt;}
.x17{left:200.933314pt;}
.xf{left:207.493314pt;}
.x5e{left:213.306667pt;}
.x1d{left:221.893314pt;}
.x15{left:223.813314pt;}
.x19{left:225.413314pt;}
.x1c{left:227.679981pt;}
.x1b{left:232.479981pt;}
.x1f{left:240.479981pt;}
.x18{left:244.159981pt;}
.x53{left:257.053333pt;}
.x4a{left:269.853314pt;}
.x3c{left:283.453324pt;}
.x3f{left:287.973324pt;}
.x46{left:290.333333pt;}
.x35{left:294.213333pt;}
.x54{left:306.266667pt;}
.x48{left:313.946667pt;}
.x29{left:316.546667pt;}
.x5f{left:323.200000pt;}
.x2e{left:332.160000pt;}
.x13{left:335.173314pt;}
.x27{left:346.333333pt;}
.x21{left:360.960000pt;}
.x12{left:367.493314pt;}
.x55{left:376.133333pt;}
.x5b{left:384.573333pt;}
.x26{left:405.760000pt;}
.x34{left:431.333333pt;}
.x4b{left:459.493314pt;}
.x49{left:487.226667pt;}
.x2a{left:494.306667pt;}
.x68{left:496.546648pt;}
.x66{left:508.253314pt;}
.x69{left:520.866648pt;}
.x7{left:533.413314pt;}
.x37{left:541.573333pt;}
.x8{left:555.013314pt;}
.x4d{left:573.093314pt;}
.x2b{left:638.533333pt;}
.x10{left:646.560000pt;}
.x40{left:649.760000pt;}
.x65{left:665.026648pt;}
.x38{left:670.466667pt;}
.x4e{left:673.693314pt;}
.x5d{left:701.760000pt;}
.x3{left:794.266648pt;}
.x2{left:824.506648pt;}
.x20{left:893.093314pt;}
.xd{left:942.493314pt;}
.x67{left:985.346648pt;}
.x1{left:1246.879981pt;}
}




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