
    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_3e685d021288242f501d510a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.024000;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_91a82b71241cfa5d92d64afd.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_6f264a3671a3063937644c01.woff')format("woff");}.ff3{font-family:ff3;line-height:1.107422;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_3cad609a27e90d81fcca931b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.024000;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_59c517336c79b347652981a6.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e6384049f4ea51d61a6d6ab6.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_51feb2188b34a6a24930fe9e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.107422;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_78e772d0748a5ffd0fa99ef9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_757f237bc03e0504c9c9ff9c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.926270;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-4.752000px;}
.v1{vertical-align:-3.024000px;}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-0.618000px;}
.ls20{letter-spacing:-0.612000px;}
.ls1d{letter-spacing:-0.524400px;}
.ls3{letter-spacing:-0.507000px;}
.ls1b{letter-spacing:-0.472200px;}
.ls1c{letter-spacing:-0.375600px;}
.ls6{letter-spacing:-0.357000px;}
.ls7{letter-spacing:-0.308400px;}
.ls27{letter-spacing:-0.232200px;}
.ls1f{letter-spacing:-0.219000px;}
.ls11{letter-spacing:-0.184200px;}
.ls0{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.069000px;}
.lsd{letter-spacing:0.090600px;}
.ls9{letter-spacing:0.090720px;}
.ls10{letter-spacing:0.102600px;}
.ls26{letter-spacing:0.108000px;}
.lse{letter-spacing:0.211800px;}
.ls14{letter-spacing:0.247800px;}
.ls25{letter-spacing:0.496200px;}
.lsf{letter-spacing:0.538800px;}
.ls21{letter-spacing:24.192000px;}
.lsc{letter-spacing:25.920000px;}
.ls19{letter-spacing:52.699200px;}
.ls2{letter-spacing:59.660640px;}
.ls1{letter-spacing:59.803200px;}
.ls5{letter-spacing:68.214240px;}
.ls4{letter-spacing:68.356800px;}
.ls8{letter-spacing:72.627840px;}
.ls13{letter-spacing:73.029600px;}
.ls12{letter-spacing:73.080000px;}
.ls15{letter-spacing:85.989600px;}
.ls16{letter-spacing:86.040000px;}
.ls24{letter-spacing:101.541600px;}
.ls23{letter-spacing:101.592000px;}
.ls1a{letter-spacing:106.152000px;}
.ls18{letter-spacing:120.837600px;}
.ls17{letter-spacing:120.888000px;}
.lsb{letter-spacing:231.081888px;}
.lsa{letter-spacing:231.147840px;}
.sc_{text-shadow:none;}
.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);}
.sc4{text-shadow:-0.015em 0 rgb(0,79,143),0 0.015em rgb(0,79,143),0.015em 0 rgb(0,79,143),0 -0.015em  rgb(0,79,143);}
.sc2{text-shadow:-0.015em 0 rgb(216,202,78),0 0.015em rgb(216,202,78),0.015em 0 rgb(216,202,78),0 -0.015em  rgb(216,202,78);}
.sc1{text-shadow:-0.015em 0 rgb(44,185,161),0 0.015em rgb(44,185,161),0.015em 0 rgb(44,185,161),0 -0.015em  rgb(44,185,161);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(0,79,143);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(216,202,78);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(44,185,161);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws24{word-spacing:-46.877472px;}
.ws25{word-spacing:-46.837440px;}
.ws28{word-spacing:-40.072032px;}
.ws26{word-spacing:-40.032000px;}
.ws27{word-spacing:-39.839832px;}
.ws13{word-spacing:-37.077240px;}
.ws1b{word-spacing:-36.869472px;}
.ws3{word-spacing:-36.829440px;}
.ws17{word-spacing:-36.305040px;}
.ws16{word-spacing:-33.266592px;}
.ws15{word-spacing:-32.850960px;}
.ws19{word-spacing:-31.665312px;}
.ws1a{word-spacing:-31.625280px;}
.ws21{word-spacing:-30.560232px;}
.ws22{word-spacing:-30.132000px;}
.ws2{word-spacing:-30.064032px;}
.ws1{word-spacing:-30.024000px;}
.ws10{word-spacing:-27.033240px;}
.ws11{word-spacing:-26.964072px;}
.ws6{word-spacing:-26.861472px;}
.wsf{word-spacing:-26.821440px;}
.ws1d{word-spacing:-24.656832px;}
.ws1e{word-spacing:-24.624000px;}
.ws7{word-spacing:-23.218560px;}
.ws8{word-spacing:-22.861560px;}
.ws20{word-spacing:-20.056032px;}
.ws4{word-spacing:-16.813440px;}
.ws5{word-spacing:-16.306440px;}
.ws14{word-spacing:-12.003960px;}
.ws1f{word-spacing:-3.839040px;}
.wsc{word-spacing:-1.925280px;}
.wsa{word-spacing:-1.893120px;}
.wsb{word-spacing:-1.445400px;}
.ws23{word-spacing:-0.997152px;}
.wsd{word-spacing:-0.831840px;}
.ws12{word-spacing:-0.458448px;}
.ws18{word-spacing:-0.132480px;}
.ws1c{word-spacing:-0.108000px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:0.295200px;}
.ws9{word-spacing:8.236800px;}
._f{margin-left:-5132.436240px;}
._12{margin-left:-7.301760px;}
._5{margin-left:-5.845680px;}
._a{margin-left:-4.791840px;}
._4{margin-left:-3.765600px;}
._0{margin-left:-2.736000px;}
._1{margin-left:-1.082880px;}
._3{width:1.581120px;}
._2{width:2.637120px;}
._8{width:3.925440px;}
._10{width:5.519520px;}
._7{width:6.595200px;}
._9{width:23.915568px;}
._6{width:25.430736px;}
._b{width:32.771760px;}
._d{width:36.088800px;}
._11{width:2201.374080px;}
._c{width:5088.004320px;}
._e{width:5231.983200px;}
.fcb{color:rgb(192,0,0);}
.fca{color:rgb(128,0,0);}
.fc9{color:rgb(77,75,70);}
.fc6{color:rgb(224,149,1);}
.fc4{color:rgb(44,185,161);}
.fc3{color:rgb(72,169,218);}
.fcc{color:rgb(255,255,255);}
.fc7{color:rgb(0,55,103);}
.fc2{color:rgb(217,217,217);}
.fc1{color:rgb(0,0,0);}
.fc8{color:rgb(35,156,255);}
.fc5{color:rgb(216,202,78);}
.fc0{color:rgb(0,79,143);}
.fs0{font-size:54.720000px;}
.fs7{font-size:60.480000px;}
.fs19{font-size:60.624000px;}
.fsa{font-size:67.680000px;}
.fsb{font-size:67.824000px;}
.fs16{font-size:72.144000px;}
.fs4{font-size:76.320000px;}
.fs5{font-size:76.464000px;}
.fsd{font-size:83.520000px;}
.fsf{font-size:83.664000px;}
.fs8{font-size:96.480000px;}
.fs9{font-size:96.624000px;}
.fse{font-size:101.697833px;}
.fs2{font-size:108.000000px;}
.fs6{font-size:108.144000px;}
.fs15{font-size:113.760000px;}
.fs14{font-size:113.904000px;}
.fs10{font-size:119.520000px;}
.fs11{font-size:119.664000px;}
.fs3{font-size:132.480000px;}
.fs13{font-size:132.624000px;}
.fsc{font-size:144.000000px;}
.fs18{font-size:144.144000px;}
.fs12{font-size:168.480000px;}
.fs17{font-size:168.624000px;}
.fs1{font-size:263.520000px;}
.y0{bottom:0.000000px;}
.yb9{bottom:7.452000px;}
.yd{bottom:7.812000px;}
.y1{bottom:8.568000px;}
.y8d{bottom:8.640000px;}
.yf5{bottom:41.040000px;}
.y3c{bottom:54.288000px;}
.y16{bottom:58.248000px;}
.yb1{bottom:60.480000px;}
.yb6{bottom:67.320000px;}
.y98{bottom:71.964000px;}
.y15{bottom:72.648000px;}
.yb8{bottom:77.040000px;}
.y27{bottom:79.668000px;}
.y6f{bottom:83.880000px;}
.y109{bottom:93.348000px;}
.y5{bottom:97.740000px;}
.y26{bottom:99.828000px;}
.ybb{bottom:103.500000px;}
.yb5{bottom:106.920000px;}
.y97{bottom:107.964000px;}
.yb7{bottom:111.240000px;}
.y108{bottom:111.348000px;}
.yd1{bottom:112.680000px;}
.ya3{bottom:114.120000px;}
.y24{bottom:115.164000px;}
.y3b{bottom:118.044000px;}
.y6e{bottom:119.520000px;}
.y9b{bottom:126.105000px;}
.yb2{bottom:126.570000px;}
.yad{bottom:126.615000px;}
.ya2{bottom:126.750000px;}
.y9d{bottom:126.825000px;}
.y4{bottom:133.056000px;}
.ya9{bottom:133.200000px;}
.yd6{bottom:140.364000px;}
.y4b{bottom:141.444000px;}
.y96{bottom:143.964000px;}
.y3a{bottom:149.040000px;}
.y107{bottom:153.465000px;}
.y6d{bottom:154.830000px;}
.yb4{bottom:157.170000px;}
.y61{bottom:163.830000px;}
.y8c{bottom:164.880000px;}
.y45{bottom:166.680000px;}
.yac{bottom:168.480000px;}
.y71{bottom:170.025000px;}
.y4a{bottom:170.280000px;}
.y106{bottom:172.830000px;}
.y39{bottom:177.480000px;}
.yd5{bottom:178.200000px;}
.y23{bottom:178.560000px;}
.yc9{bottom:182.880000px;}
.y70{bottom:186.225000px;}
.y6c{bottom:187.230000px;}
.yb3{bottom:191.370000px;}
.y60{bottom:196.230000px;}
.yd2{bottom:200.550000px;}
.ycc{bottom:200.595000px;}
.yc7{bottom:200.625000px;}
.yc2{bottom:200.670000px;}
.ybe{bottom:200.700000px;}
.y105{bottom:204.510000px;}
.y38{bottom:205.560000px;}
.y22{bottom:207.360000px;}
.yd4{bottom:210.600000px;}
.yab{bottom:212.145000px;}
.y13{bottom:219.600000px;}
.y62{bottom:221.760000px;}
.y95{bottom:222.120000px;}
.y6b{bottom:222.555000px;}
.y5f{bottom:228.675000px;}
.y44{bottom:230.430000px;}
.yb0{bottom:231.015000px;}
.yca{bottom:232.995000px;}
.yc5{bottom:233.025000px;}
.yc0{bottom:233.070000px;}
.ybd{bottom:233.100000px;}
.y104{bottom:233.355000px;}
.y49{bottom:234.030000px;}
.y37{bottom:234.390000px;}
.y8b{bottom:236.910000px;}
.y21{bottom:239.430000px;}
.yd3{bottom:243.000000px;}
.yaa{bottom:246.345000px;}
.ya8{bottom:248.400000px;}
.yf2{bottom:248.475000px;}
.yc{bottom:249.150000px;}
.y12{bottom:252.030000px;}
.yc4{bottom:253.080000px;}
.y94{bottom:258.150000px;}
.y6a{bottom:258.195000px;}
.yfd{bottom:258.225000px;}
.y43{bottom:262.110000px;}
.y5e{bottom:263.955000px;}
.y48{bottom:264.990000px;}
.y103{bottom:265.035000px;}
.yaf{bottom:265.215000px;}
.y36{bottom:266.430000px;}
.y20{bottom:268.230000px;}
.y8a{bottom:272.910000px;}
.yf1{bottom:277.275000px;}
.ye8{bottom:277.710000px;}
.yd0{bottom:280.830000px;}
.y11{bottom:287.310000px;}
.y69{bottom:293.475000px;}
.y42{bottom:293.790000px;}
.y5d{bottom:296.355000px;}
.y102{bottom:297.075000px;}
.y34{bottom:298.110000px;}
.y35{bottom:298.110007px;}
.yae{bottom:299.415000px;}
.y53{bottom:299.550000px;}
.y1f{bottom:299.910000px;}
.yf0{bottom:306.105000px;}
.yfc{bottom:308.670000px;}
.y89{bottom:308.955000px;}
.ycf{bottom:313.230000px;}
.ya6{bottom:314.640000px;}
.ya0{bottom:314.715000px;}
.yb{bottom:319.755000px;}
.y41{bottom:322.635000px;}
.y7b{bottom:322.710000px;}
.ybf{bottom:323.280000px;}
.y1e{bottom:328.755000px;}
.y68{bottom:328.785000px;}
.y52{bottom:331.995000px;}
.y5c{bottom:332.025000px;}
.yef{bottom:334.905000px;}
.y93{bottom:335.955000px;}
.yce{bottom:345.675000px;}
.ya5{bottom:348.870000px;}
.y9f{bottom:348.915000px;}
.y10{bottom:355.395000px;}
.y47{bottom:357.555000px;}
.y2c{bottom:358.635000px;}
.y7a{bottom:358.710000px;}
.yfb{bottom:359.070000px;}
.y33{bottom:361.875000px;}
.yee{bottom:363.705000px;}
.y73{bottom:364.395000px;}
.y67{bottom:364.425000px;}
.ya1{bottom:366.120000px;}
.y51{bottom:367.275000px;}
.y5b{bottom:367.305000px;}
.y81{bottom:373.215000px;}
.y92{bottom:375.195000px;}
.y88{bottom:380.985000px;}
.ya4{bottom:383.070000px;}
.y9e{bottom:383.145000px;}
.ycd{bottom:383.475000px;}
.y40{bottom:386.355000px;}
.ya{bottom:390.675000px;}
.y1d{bottom:392.505000px;}
.yed{bottom:392.550000px;}
.ybc{bottom:393.480000px;}
.y32{bottom:393.585000px;}
.y79{bottom:394.740000px;}
.y101{bottom:395.430000px;}
.y66{bottom:396.870000px;}
.ye7{bottom:398.310000px;}
.y50{bottom:399.705000px;}
.y5a{bottom:399.750000px;}
.y80{bottom:409.215000px;}
.y91{bottom:414.105000px;}
.ydc{bottom:414.150000px;}
.ydf{bottom:415.185000px;}
.ycb{bottom:415.875000px;}
.y87{bottom:416.985000px;}
.y3f{bottom:418.065000px;}
.y1c{bottom:421.305000px;}
.y2b{bottom:421.665000px;}
.y31{bottom:422.385000px;}
.yec{bottom:424.230000px;}
.yf{bottom:425.985000px;}
.ye6{bottom:427.110000px;}
.ya7{bottom:428.760000px;}
.y78{bottom:430.740000px;}
.y3{bottom:431.205000px;}
.y4f{bottom:432.105000px;}
.y65{bottom:432.150000px;}
.y59{bottom:435.030000px;}
.y100{bottom:438.630000px;}
.yde{bottom:446.865000px;}
.y2a{bottom:449.745000px;}
.y46{bottom:450.105000px;}
.yeb{bottom:453.030000px;}
.yc8{bottom:453.705000px;}
.y30{bottom:454.065000px;}
.ye5{bottom:455.910000px;}
.y9{bottom:461.625000px;}
.yf9{bottom:463.680000px;}
.y4e{bottom:464.505000px;}
.y64{bottom:464.550000px;}
.yf4{bottom:467.385000px;}
.y58{bottom:467.430000px;}
.y9c{bottom:474.120000px;}
.y29{bottom:478.950000px;}
.yff{bottom:478.980000px;}
.y7f{bottom:481.245000px;}
.y3e{bottom:481.830000px;}
.y1b{bottom:484.710000px;}
.yea{bottom:484.740000px;}
.yc6{bottom:486.105000px;}
.ye4{bottom:487.980000px;}
.y86{bottom:489.030000px;}
.ydb{bottom:492.300000px;}
.ye{bottom:496.950000px;}
.y4d{bottom:499.830000px;}
.y57{bottom:499.860000px;}
.y77{bottom:502.770000px;}
.yfa{bottom:504.720000px;}
.y2{bottom:510.450000px;}
.ydd{bottom:510.630000px;}
.y3d{bottom:513.510000px;}
.ye9{bottom:513.540000px;}
.yf7{bottom:514.110000px;}
.y1a{bottom:516.750000px;}
.ye3{bottom:516.780000px;}
.y2f{bottom:517.110000px;}
.y7e{bottom:517.245000px;}
.y9a{bottom:519.120000px;}
.yc3{bottom:523.950000px;}
.y85{bottom:525.060000px;}
.y90{bottom:525.390000px;}
.yda{bottom:528.300000px;}
.y8{bottom:532.230000px;}
.yf3{bottom:535.470000px;}
.y56{bottom:535.500000px;}
.y76{bottom:538.815000px;}
.y28{bottom:542.310000px;}
.yfe{bottom:542.340000px;}
.y2e{bottom:545.190000px;}
.y19{bottom:545.550000px;}
.ye2{bottom:545.580000px;}
.y7d{bottom:553.290000px;}
.yf8{bottom:555.150000px;}
.yc1{bottom:556.350000px;}
.yba{bottom:560.880000px;}
.y8f{bottom:564.300000px;}
.yd9{bottom:564.330000px;}
.yf6{bottom:564.510000px;}
.y72{bottom:567.900000px;}
.y55{bottom:567.930000px;}
.y4c{bottom:570.780000px;}
.y63{bottom:570.810000px;}
.y2d{bottom:574.380000px;}
.y75{bottom:574.815000px;}
.y18{bottom:577.260000px;}
.ye1{bottom:577.290000px;}
.y7c{bottom:589.290000px;}
.y6{bottom:592.560000px;}
.y84{bottom:597.060000px;}
.y8e{bottom:600.300000px;}
.yd8{bottom:600.330000px;}
.y7{bottom:603.180000px;}
.y54{bottom:603.210000px;}
.y17{bottom:606.060000px;}
.ye0{bottom:606.090000px;}
.y83{bottom:633.090000px;}
.yd7{bottom:725.910000px;}
.y99{bottom:726.630000px;}
.y82{bottom:729.900000px;}
.y25{bottom:734.940000px;}
.y74{bottom:735.660000px;}
.y14{bottom:737.820000px;}
.h16{height:39.864375px;}
.h1{height:44.104320px;}
.h10{height:48.746880px;}
.h33{height:48.862944px;}
.h6{height:54.248906px;}
.h2e{height:58.148064px;}
.hb{height:67.317120px;}
.hd{height:67.433184px;}
.ha{height:74.915156px;}
.h24{height:77.308594px;}
.h7{height:77.762880px;}
.h8{height:77.878944px;}
.h26{height:78.679688px;}
.h27{height:78.784594px;}
.hc{height:81.968453px;}
.h2d{height:86.539922px;}
.h2f{height:86.669086px;}
.h3{height:87.048000px;}
.h5{height:87.164064px;}
.h1c{height:91.690560px;}
.h1b{height:91.806624px;}
.h18{height:94.831875px;}
.h11{height:96.333120px;}
.h12{height:96.449184px;}
.h2c{height:96.513750px;}
.he{height:96.873047px;}
.hf{height:97.002211px;}
.h4{height:106.778880px;}
.h19{height:106.894944px;}
.h13{height:107.206172px;}
.h14{height:107.335336px;}
.h9{height:116.064000px;}
.h32{height:116.180064px;}
.h15{height:135.794880px;}
.h31{height:135.910944px;}
.h2{height:212.397120px;}
.h23{height:227.160000px;}
.h17{height:277.560000px;}
.h22{height:344.160000px;}
.h2b{height:361.440000px;}
.h21{height:376.560000px;}
.h25{height:416.520000px;}
.h20{height:424.440000px;}
.h28{height:453.960000px;}
.h1e{height:479.160000px;}
.h2a{height:561.240000px;}
.h1a{height:587.880000px;}
.h1f{height:635.040000px;}
.h29{height:663.840000px;}
.h1d{height:695.880000px;}
.h30{height:768.960000px;}
.h0{height:810.000000px;}
.w2{width:73.080000px;}
.w5{width:187.560000px;}
.w1{width:190.440000px;}
.w8{width:275.400000px;}
.w4{width:340.560000px;}
.w6{width:675.000000px;}
.w3{width:842.040000px;}
.w7{width:1002.240000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x18{left:5.724000px;}
.x14{left:9.000000px;}
.x2e{left:11.016000px;}
.x1{left:21.960000px;}
.x2d{left:81.360000px;}
.x1e{left:107.280000px;}
.x17{left:111.600000px;}
.x15{left:122.724000px;}
.x1d{left:125.496000px;}
.x32{left:133.635000px;}
.x2a{left:142.884000px;}
.x4{left:144.000000px;}
.x2{left:152.490000px;}
.xa{left:154.800000px;}
.x16{left:156.570000px;}
.x13{left:161.250000px;}
.x11{left:164.160000px;}
.x7{left:173.775000px;}
.xf{left:174.960000px;}
.x6{left:177.840000px;}
.xe{left:182.520000px;}
.x26{left:188.970000px;}
.xc{left:221.400000px;}
.x25{left:277.890000px;}
.x9{left:300.525000px;}
.x19{left:301.680000px;}
.x1a{left:374.400000px;}
.x21{left:421.200000px;}
.x1f{left:447.480000px;}
.x1c{left:475.410000px;}
.x3{left:497.490000px;}
.x20{left:634.680000px;}
.xb{left:675.464997px;}
.x2f{left:778.710000px;}
.x8{left:782.130000px;}
.x33{left:805.470000px;}
.x35{left:810.900000px;}
.x24{left:821.130000px;}
.x27{left:827.970000px;}
.x28{left:883.050000px;}
.x1b{left:909.690000px;}
.x2b{left:913.140000px;}
.x34{left:916.740000px;}
.x10{left:959.685000px;}
.x23{left:996.120000px;}
.x12{left:1013.010000px;}
.x2c{left:1072.440000px;}
.x30{left:1083.240000px;}
.x22{left:1175.430000px;}
.x31{left:1200.675000px;}
.xd{left:1392.375000px;}
.x29{left:1396.365000px;}
.x5{left:1399.935000px;}
@media print{
.v2{vertical-align:-4.224000pt;}
.v1{vertical-align:-2.688000pt;}
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-0.549333pt;}
.ls20{letter-spacing:-0.544000pt;}
.ls1d{letter-spacing:-0.466133pt;}
.ls3{letter-spacing:-0.450667pt;}
.ls1b{letter-spacing:-0.419733pt;}
.ls1c{letter-spacing:-0.333867pt;}
.ls6{letter-spacing:-0.317333pt;}
.ls7{letter-spacing:-0.274133pt;}
.ls27{letter-spacing:-0.206400pt;}
.ls1f{letter-spacing:-0.194667pt;}
.ls11{letter-spacing:-0.163733pt;}
.ls0{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.061333pt;}
.lsd{letter-spacing:0.080533pt;}
.ls9{letter-spacing:0.080640pt;}
.ls10{letter-spacing:0.091200pt;}
.ls26{letter-spacing:0.096000pt;}
.lse{letter-spacing:0.188267pt;}
.ls14{letter-spacing:0.220267pt;}
.ls25{letter-spacing:0.441067pt;}
.lsf{letter-spacing:0.478933pt;}
.ls21{letter-spacing:21.504000pt;}
.lsc{letter-spacing:23.040000pt;}
.ls19{letter-spacing:46.843733pt;}
.ls2{letter-spacing:53.031680pt;}
.ls1{letter-spacing:53.158400pt;}
.ls5{letter-spacing:60.634880pt;}
.ls4{letter-spacing:60.761600pt;}
.ls8{letter-spacing:64.558080pt;}
.ls13{letter-spacing:64.915200pt;}
.ls12{letter-spacing:64.960000pt;}
.ls15{letter-spacing:76.435200pt;}
.ls16{letter-spacing:76.480000pt;}
.ls24{letter-spacing:90.259200pt;}
.ls23{letter-spacing:90.304000pt;}
.ls1a{letter-spacing:94.357333pt;}
.ls18{letter-spacing:107.411200pt;}
.ls17{letter-spacing:107.456000pt;}
.lsb{letter-spacing:205.406123pt;}
.lsa{letter-spacing:205.464747pt;}
.ws24{word-spacing:-41.668864pt;}
.ws25{word-spacing:-41.633280pt;}
.ws28{word-spacing:-35.619584pt;}
.ws26{word-spacing:-35.584000pt;}
.ws27{word-spacing:-35.413184pt;}
.ws13{word-spacing:-32.957547pt;}
.ws1b{word-spacing:-32.772864pt;}
.ws3{word-spacing:-32.737280pt;}
.ws17{word-spacing:-32.271147pt;}
.ws16{word-spacing:-29.570304pt;}
.ws15{word-spacing:-29.200853pt;}
.ws19{word-spacing:-28.146944pt;}
.ws1a{word-spacing:-28.111360pt;}
.ws21{word-spacing:-27.164651pt;}
.ws22{word-spacing:-26.784000pt;}
.ws2{word-spacing:-26.723584pt;}
.ws1{word-spacing:-26.688000pt;}
.ws10{word-spacing:-24.029547pt;}
.ws11{word-spacing:-23.968064pt;}
.ws6{word-spacing:-23.876864pt;}
.wsf{word-spacing:-23.841280pt;}
.ws1d{word-spacing:-21.917184pt;}
.ws1e{word-spacing:-21.888000pt;}
.ws7{word-spacing:-20.638720pt;}
.ws8{word-spacing:-20.321387pt;}
.ws20{word-spacing:-17.827584pt;}
.ws4{word-spacing:-14.945280pt;}
.ws5{word-spacing:-14.494613pt;}
.ws14{word-spacing:-10.670187pt;}
.ws1f{word-spacing:-3.412480pt;}
.wsc{word-spacing:-1.711360pt;}
.wsa{word-spacing:-1.682773pt;}
.wsb{word-spacing:-1.284800pt;}
.ws23{word-spacing:-0.886357pt;}
.wsd{word-spacing:-0.739413pt;}
.ws12{word-spacing:-0.407509pt;}
.ws18{word-spacing:-0.117760pt;}
.ws1c{word-spacing:-0.096000pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:0.262400pt;}
.ws9{word-spacing:7.321600pt;}
._f{margin-left:-4562.165547pt;}
._12{margin-left:-6.490453pt;}
._5{margin-left:-5.196160pt;}
._a{margin-left:-4.259413pt;}
._4{margin-left:-3.347200pt;}
._0{margin-left:-2.432000pt;}
._1{margin-left:-0.962560pt;}
._3{width:1.405440pt;}
._2{width:2.344107pt;}
._8{width:3.489280pt;}
._10{width:4.906240pt;}
._7{width:5.862400pt;}
._9{width:21.258283pt;}
._6{width:22.605099pt;}
._b{width:29.130453pt;}
._d{width:32.078933pt;}
._11{width:1956.776960pt;}
._c{width:4522.670507pt;}
._e{width:4650.651733pt;}
.fs0{font-size:48.640000pt;}
.fs7{font-size:53.760000pt;}
.fs19{font-size:53.888000pt;}
.fsa{font-size:60.160000pt;}
.fsb{font-size:60.288000pt;}
.fs16{font-size:64.128000pt;}
.fs4{font-size:67.840000pt;}
.fs5{font-size:67.968000pt;}
.fsd{font-size:74.240000pt;}
.fsf{font-size:74.368000pt;}
.fs8{font-size:85.760000pt;}
.fs9{font-size:85.888000pt;}
.fse{font-size:90.398073pt;}
.fs2{font-size:96.000000pt;}
.fs6{font-size:96.128000pt;}
.fs15{font-size:101.120000pt;}
.fs14{font-size:101.248000pt;}
.fs10{font-size:106.240000pt;}
.fs11{font-size:106.368000pt;}
.fs3{font-size:117.760000pt;}
.fs13{font-size:117.888000pt;}
.fsc{font-size:128.000000pt;}
.fs18{font-size:128.128000pt;}
.fs12{font-size:149.760000pt;}
.fs17{font-size:149.888000pt;}
.fs1{font-size:234.240000pt;}
.y0{bottom:0.000000pt;}
.yb9{bottom:6.624000pt;}
.yd{bottom:6.944000pt;}
.y1{bottom:7.616000pt;}
.y8d{bottom:7.680000pt;}
.yf5{bottom:36.480000pt;}
.y3c{bottom:48.256000pt;}
.y16{bottom:51.776000pt;}
.yb1{bottom:53.760000pt;}
.yb6{bottom:59.840000pt;}
.y98{bottom:63.968000pt;}
.y15{bottom:64.576000pt;}
.yb8{bottom:68.480000pt;}
.y27{bottom:70.816000pt;}
.y6f{bottom:74.560000pt;}
.y109{bottom:82.976000pt;}
.y5{bottom:86.880000pt;}
.y26{bottom:88.736000pt;}
.ybb{bottom:92.000000pt;}
.yb5{bottom:95.040000pt;}
.y97{bottom:95.968000pt;}
.yb7{bottom:98.880000pt;}
.y108{bottom:98.976000pt;}
.yd1{bottom:100.160000pt;}
.ya3{bottom:101.440000pt;}
.y24{bottom:102.368000pt;}
.y3b{bottom:104.928000pt;}
.y6e{bottom:106.240000pt;}
.y9b{bottom:112.093333pt;}
.yb2{bottom:112.506667pt;}
.yad{bottom:112.546667pt;}
.ya2{bottom:112.666667pt;}
.y9d{bottom:112.733333pt;}
.y4{bottom:118.272000pt;}
.ya9{bottom:118.400000pt;}
.yd6{bottom:124.768000pt;}
.y4b{bottom:125.728000pt;}
.y96{bottom:127.968000pt;}
.y3a{bottom:132.480000pt;}
.y107{bottom:136.413333pt;}
.y6d{bottom:137.626667pt;}
.yb4{bottom:139.706667pt;}
.y61{bottom:145.626667pt;}
.y8c{bottom:146.560000pt;}
.y45{bottom:148.160000pt;}
.yac{bottom:149.760000pt;}
.y71{bottom:151.133333pt;}
.y4a{bottom:151.360000pt;}
.y106{bottom:153.626667pt;}
.y39{bottom:157.760000pt;}
.yd5{bottom:158.400000pt;}
.y23{bottom:158.720000pt;}
.yc9{bottom:162.560000pt;}
.y70{bottom:165.533333pt;}
.y6c{bottom:166.426667pt;}
.yb3{bottom:170.106667pt;}
.y60{bottom:174.426667pt;}
.yd2{bottom:178.266667pt;}
.ycc{bottom:178.306667pt;}
.yc7{bottom:178.333333pt;}
.yc2{bottom:178.373333pt;}
.ybe{bottom:178.400000pt;}
.y105{bottom:181.786667pt;}
.y38{bottom:182.720000pt;}
.y22{bottom:184.320000pt;}
.yd4{bottom:187.200000pt;}
.yab{bottom:188.573333pt;}
.y13{bottom:195.200000pt;}
.y62{bottom:197.120000pt;}
.y95{bottom:197.440000pt;}
.y6b{bottom:197.826667pt;}
.y5f{bottom:203.266667pt;}
.y44{bottom:204.826667pt;}
.yb0{bottom:205.346667pt;}
.yca{bottom:207.106667pt;}
.yc5{bottom:207.133333pt;}
.yc0{bottom:207.173333pt;}
.ybd{bottom:207.200000pt;}
.y104{bottom:207.426667pt;}
.y49{bottom:208.026667pt;}
.y37{bottom:208.346667pt;}
.y8b{bottom:210.586667pt;}
.y21{bottom:212.826667pt;}
.yd3{bottom:216.000000pt;}
.yaa{bottom:218.973333pt;}
.ya8{bottom:220.800000pt;}
.yf2{bottom:220.866667pt;}
.yc{bottom:221.466667pt;}
.y12{bottom:224.026667pt;}
.yc4{bottom:224.960000pt;}
.y94{bottom:229.466667pt;}
.y6a{bottom:229.506667pt;}
.yfd{bottom:229.533333pt;}
.y43{bottom:232.986667pt;}
.y5e{bottom:234.626667pt;}
.y48{bottom:235.546667pt;}
.y103{bottom:235.586667pt;}
.yaf{bottom:235.746667pt;}
.y36{bottom:236.826667pt;}
.y20{bottom:238.426667pt;}
.y8a{bottom:242.586667pt;}
.yf1{bottom:246.466667pt;}
.ye8{bottom:246.853333pt;}
.yd0{bottom:249.626667pt;}
.y11{bottom:255.386667pt;}
.y69{bottom:260.866667pt;}
.y42{bottom:261.146667pt;}
.y5d{bottom:263.426667pt;}
.y102{bottom:264.066667pt;}
.y34{bottom:264.986667pt;}
.y35{bottom:264.986673pt;}
.yae{bottom:266.146667pt;}
.y53{bottom:266.266667pt;}
.y1f{bottom:266.586667pt;}
.yf0{bottom:272.093333pt;}
.yfc{bottom:274.373333pt;}
.y89{bottom:274.626667pt;}
.ycf{bottom:278.426667pt;}
.ya6{bottom:279.680000pt;}
.ya0{bottom:279.746667pt;}
.yb{bottom:284.226667pt;}
.y41{bottom:286.786667pt;}
.y7b{bottom:286.853333pt;}
.ybf{bottom:287.360000pt;}
.y1e{bottom:292.226667pt;}
.y68{bottom:292.253333pt;}
.y52{bottom:295.106667pt;}
.y5c{bottom:295.133333pt;}
.yef{bottom:297.693333pt;}
.y93{bottom:298.626667pt;}
.yce{bottom:307.266667pt;}
.ya5{bottom:310.106667pt;}
.y9f{bottom:310.146667pt;}
.y10{bottom:315.906667pt;}
.y47{bottom:317.826667pt;}
.y2c{bottom:318.786667pt;}
.y7a{bottom:318.853333pt;}
.yfb{bottom:319.173333pt;}
.y33{bottom:321.666667pt;}
.yee{bottom:323.293333pt;}
.y73{bottom:323.906667pt;}
.y67{bottom:323.933333pt;}
.ya1{bottom:325.440000pt;}
.y51{bottom:326.466667pt;}
.y5b{bottom:326.493333pt;}
.y81{bottom:331.746667pt;}
.y92{bottom:333.506667pt;}
.y88{bottom:338.653333pt;}
.ya4{bottom:340.506667pt;}
.y9e{bottom:340.573333pt;}
.ycd{bottom:340.866667pt;}
.y40{bottom:343.426667pt;}
.ya{bottom:347.266667pt;}
.y1d{bottom:348.893333pt;}
.yed{bottom:348.933333pt;}
.ybc{bottom:349.760000pt;}
.y32{bottom:349.853333pt;}
.y79{bottom:350.880000pt;}
.y101{bottom:351.493333pt;}
.y66{bottom:352.773333pt;}
.ye7{bottom:354.053333pt;}
.y50{bottom:355.293333pt;}
.y5a{bottom:355.333333pt;}
.y80{bottom:363.746667pt;}
.y91{bottom:368.093333pt;}
.ydc{bottom:368.133333pt;}
.ydf{bottom:369.053333pt;}
.ycb{bottom:369.666667pt;}
.y87{bottom:370.653333pt;}
.y3f{bottom:371.613333pt;}
.y1c{bottom:374.493333pt;}
.y2b{bottom:374.813333pt;}
.y31{bottom:375.453333pt;}
.yec{bottom:377.093333pt;}
.yf{bottom:378.653333pt;}
.ye6{bottom:379.653333pt;}
.ya7{bottom:381.120000pt;}
.y78{bottom:382.880000pt;}
.y3{bottom:383.293333pt;}
.y4f{bottom:384.093333pt;}
.y65{bottom:384.133333pt;}
.y59{bottom:386.693333pt;}
.y100{bottom:389.893333pt;}
.yde{bottom:397.213333pt;}
.y2a{bottom:399.773333pt;}
.y46{bottom:400.093333pt;}
.yeb{bottom:402.693333pt;}
.yc8{bottom:403.293333pt;}
.y30{bottom:403.613333pt;}
.ye5{bottom:405.253333pt;}
.y9{bottom:410.333333pt;}
.yf9{bottom:412.160000pt;}
.y4e{bottom:412.893333pt;}
.y64{bottom:412.933333pt;}
.yf4{bottom:415.453333pt;}
.y58{bottom:415.493333pt;}
.y9c{bottom:421.440000pt;}
.y29{bottom:425.733333pt;}
.yff{bottom:425.760000pt;}
.y7f{bottom:427.773333pt;}
.y3e{bottom:428.293333pt;}
.y1b{bottom:430.853333pt;}
.yea{bottom:430.880000pt;}
.yc6{bottom:432.093333pt;}
.ye4{bottom:433.760000pt;}
.y86{bottom:434.693333pt;}
.ydb{bottom:437.600000pt;}
.ye{bottom:441.733333pt;}
.y4d{bottom:444.293333pt;}
.y57{bottom:444.320000pt;}
.y77{bottom:446.906667pt;}
.yfa{bottom:448.640000pt;}
.y2{bottom:453.733333pt;}
.ydd{bottom:453.893333pt;}
.y3d{bottom:456.453333pt;}
.ye9{bottom:456.480000pt;}
.yf7{bottom:456.986667pt;}
.y1a{bottom:459.333333pt;}
.ye3{bottom:459.360000pt;}
.y2f{bottom:459.653333pt;}
.y7e{bottom:459.773333pt;}
.y9a{bottom:461.440000pt;}
.yc3{bottom:465.733333pt;}
.y85{bottom:466.720000pt;}
.y90{bottom:467.013333pt;}
.yda{bottom:469.600000pt;}
.y8{bottom:473.093333pt;}
.yf3{bottom:475.973333pt;}
.y56{bottom:476.000000pt;}
.y76{bottom:478.946667pt;}
.y28{bottom:482.053333pt;}
.yfe{bottom:482.080000pt;}
.y2e{bottom:484.613333pt;}
.y19{bottom:484.933333pt;}
.ye2{bottom:484.960000pt;}
.y7d{bottom:491.813333pt;}
.yf8{bottom:493.466667pt;}
.yc1{bottom:494.533333pt;}
.yba{bottom:498.560000pt;}
.y8f{bottom:501.600000pt;}
.yd9{bottom:501.626667pt;}
.yf6{bottom:501.786667pt;}
.y72{bottom:504.800000pt;}
.y55{bottom:504.826667pt;}
.y4c{bottom:507.360000pt;}
.y63{bottom:507.386667pt;}
.y2d{bottom:510.560000pt;}
.y75{bottom:510.946667pt;}
.y18{bottom:513.120000pt;}
.ye1{bottom:513.146667pt;}
.y7c{bottom:523.813333pt;}
.y6{bottom:526.720000pt;}
.y84{bottom:530.720000pt;}
.y8e{bottom:533.600000pt;}
.yd8{bottom:533.626667pt;}
.y7{bottom:536.160000pt;}
.y54{bottom:536.186667pt;}
.y17{bottom:538.720000pt;}
.ye0{bottom:538.746667pt;}
.y83{bottom:562.746667pt;}
.yd7{bottom:645.253333pt;}
.y99{bottom:645.893333pt;}
.y82{bottom:648.800000pt;}
.y25{bottom:653.280000pt;}
.y74{bottom:653.920000pt;}
.y14{bottom:655.840000pt;}
.h16{height:35.435000pt;}
.h1{height:39.203840pt;}
.h10{height:43.330560pt;}
.h33{height:43.433728pt;}
.h6{height:48.221250pt;}
.h2e{height:51.687168pt;}
.hb{height:59.837440pt;}
.hd{height:59.940608pt;}
.ha{height:66.591250pt;}
.h24{height:68.718750pt;}
.h7{height:69.122560pt;}
.h8{height:69.225728pt;}
.h26{height:69.937500pt;}
.h27{height:70.030750pt;}
.hc{height:72.860847pt;}
.h2d{height:76.924375pt;}
.h2f{height:77.039188pt;}
.h3{height:77.376000pt;}
.h5{height:77.479168pt;}
.h1c{height:81.502720pt;}
.h1b{height:81.605888pt;}
.h18{height:84.295000pt;}
.h11{height:85.629440pt;}
.h12{height:85.732608pt;}
.h2c{height:85.790000pt;}
.he{height:86.109375pt;}
.hf{height:86.224187pt;}
.h4{height:94.914560pt;}
.h19{height:95.017728pt;}
.h13{height:95.294375pt;}
.h14{height:95.409187pt;}
.h9{height:103.168000pt;}
.h32{height:103.271168pt;}
.h15{height:120.706560pt;}
.h31{height:120.809728pt;}
.h2{height:188.797440pt;}
.h23{height:201.920000pt;}
.h17{height:246.720000pt;}
.h22{height:305.920000pt;}
.h2b{height:321.280000pt;}
.h21{height:334.720000pt;}
.h25{height:370.240000pt;}
.h20{height:377.280000pt;}
.h28{height:403.520000pt;}
.h1e{height:425.920000pt;}
.h2a{height:498.880000pt;}
.h1a{height:522.560000pt;}
.h1f{height:564.480000pt;}
.h29{height:590.080000pt;}
.h1d{height:618.560000pt;}
.h30{height:683.520000pt;}
.h0{height:720.000000pt;}
.w2{width:64.960000pt;}
.w5{width:166.720000pt;}
.w1{width:169.280000pt;}
.w8{width:244.800000pt;}
.w4{width:302.720000pt;}
.w6{width:600.000000pt;}
.w3{width:748.480000pt;}
.w7{width:890.880000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x18{left:5.088000pt;}
.x14{left:8.000000pt;}
.x2e{left:9.792000pt;}
.x1{left:19.520000pt;}
.x2d{left:72.320000pt;}
.x1e{left:95.360000pt;}
.x17{left:99.200000pt;}
.x15{left:109.088000pt;}
.x1d{left:111.552000pt;}
.x32{left:118.786667pt;}
.x2a{left:127.008000pt;}
.x4{left:128.000000pt;}
.x2{left:135.546667pt;}
.xa{left:137.600000pt;}
.x16{left:139.173333pt;}
.x13{left:143.333333pt;}
.x11{left:145.920000pt;}
.x7{left:154.466667pt;}
.xf{left:155.520000pt;}
.x6{left:158.080000pt;}
.xe{left:162.240000pt;}
.x26{left:167.973333pt;}
.xc{left:196.800000pt;}
.x25{left:247.013333pt;}
.x9{left:267.133333pt;}
.x19{left:268.160000pt;}
.x1a{left:332.800000pt;}
.x21{left:374.400000pt;}
.x1f{left:397.760000pt;}
.x1c{left:422.586667pt;}
.x3{left:442.213333pt;}
.x20{left:564.160000pt;}
.xb{left:600.413331pt;}
.x2f{left:692.186667pt;}
.x8{left:695.226667pt;}
.x33{left:715.973333pt;}
.x35{left:720.800000pt;}
.x24{left:729.893333pt;}
.x27{left:735.973333pt;}
.x28{left:784.933333pt;}
.x1b{left:808.613333pt;}
.x2b{left:811.680000pt;}
.x34{left:814.880000pt;}
.x10{left:853.053333pt;}
.x23{left:885.440000pt;}
.x12{left:900.453333pt;}
.x2c{left:953.280000pt;}
.x30{left:962.880000pt;}
.x22{left:1044.826667pt;}
.x31{left:1067.266667pt;}
.xd{left:1237.666667pt;}
.x29{left:1241.213333pt;}
.x5{left:1244.386667pt;}
}




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