
    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_a600269e10d26b1a52c9680b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.957000;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_b0a9119e9652810385155228.woff')format("woff");}.ff2{font-family:ff2;line-height:0.948000;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_8c5ed3d802aa2d375c13c2c7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_978be7ab90405d83dba934b5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_4ddaa0d5b78787c648fc7b7d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_e0c7c7615b0687bd3afa884c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_769080a60a0b393cc7072bbc.woff')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_b004837efdd44509af3941b0.woff')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_5b79df621344d86c6044e31e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.934082;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_49974af1257307f384d2e2f5.woff')format("woff");}.ffa{font-family:ffa;line-height:0.934082;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_473d564066d60b4d9225847b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.764648;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_7803ff6bf1bf5a8ab8bd7fa1.woff')format("woff");}.ffc{font-family:ffc;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_74f88537fd71711af3bd49da.woff')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_35e3e7c4d33d0b04196c8367.woff')format("woff");}.ffe{font-family:ffe;line-height:0.983398;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.160698,-0.191510,0.191510,0.160698,0,0);-ms-transform:matrix(0.160698,-0.191510,0.191510,0.160698,0,0);-webkit-transform:matrix(0.160698,-0.191510,0.191510,0.160698,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);}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.255288px;}
.v2{vertical-align:23.760000px;}
.ls22{letter-spacing:-1.518000px;}
.lsa{letter-spacing:-0.960000px;}
.ls10{letter-spacing:-0.852000px;}
.ls18{letter-spacing:-0.702000px;}
.ls1b{letter-spacing:-0.690000px;}
.ls13{letter-spacing:-0.590400px;}
.ls8{letter-spacing:-0.472200px;}
.ls14{letter-spacing:-0.463800px;}
.ls1c{letter-spacing:-0.420600px;}
.ls12{letter-spacing:-0.348600px;}
.ls25{letter-spacing:-0.324000px;}
.lsf{letter-spacing:-0.292200px;}
.ls27{letter-spacing:-0.282000px;}
.ls26{letter-spacing:-0.234000px;}
.ls19{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.164400px;}
.ls5{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.132600px;}
.ls1a{letter-spacing:-0.115200px;}
.lsd{letter-spacing:-0.048960px;}
.ls24{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.020160px;}
.ls17{letter-spacing:0.031680px;}
.ls23{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.072000px;}
.ls1e{letter-spacing:0.132600px;}
.ls28{letter-spacing:0.178800px;}
.ls1{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.247800px;}
.ls6{letter-spacing:0.256200px;}
.ls1f{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.299400px;}
.lsb{letter-spacing:0.391800px;}
.lsc{letter-spacing:0.587520px;}
.ls1d{letter-spacing:9.648000px;}
.ls20{letter-spacing:13.829760px;}
.ls11{letter-spacing:21.888000px;}
.ls3{letter-spacing:39.161280px;}
.ls21{letter-spacing:113.885760px;}
.ls4{letter-spacing:196.104000px;}
.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;}
}
.ws1d{word-spacing:-16.560000px;}
.ws1c{word-spacing:-16.488000px;}
.ws1f{word-spacing:-16.344000px;}
.ws8{word-spacing:-16.272000px;}
.ws1e{word-spacing:-16.056000px;}
.wsc{word-spacing:-15.269640px;}
.wsa{word-spacing:-15.226440px;}
.ws1b{word-spacing:-15.102840px;}
.ws15{word-spacing:-14.990400px;}
.wsb{word-spacing:-14.970240px;}
.wsf{word-spacing:-14.921280px;}
.ws17{word-spacing:-14.855040px;}
.ws16{word-spacing:-14.837640px;}
.ws14{word-spacing:-14.805840px;}
.ws1a{word-spacing:-14.754240px;}
.ws11{word-spacing:-14.621640px;}
.ws19{word-spacing:-14.549640px;}
.ws13{word-spacing:-14.506440px;}
.ws12{word-spacing:-14.379840px;}
.ws18{word-spacing:-14.280240px;}
.wsd{word-spacing:-14.010240px;}
.ws20{word-spacing:-13.452240px;}
.ws21{word-spacing:-12.186000px;}
.ws23{word-spacing:-11.970000px;}
.ws22{word-spacing:-11.880000px;}
.ws9{word-spacing:-10.902240px;}
.wse{word-spacing:-9.437760px;}
.ws10{word-spacing:-9.145560px;}
.ws2{word-spacing:-0.059776px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:9.904817px;}
.ws6{word-spacing:14.884124px;}
.ws1{word-spacing:16.557841px;}
.ws0{word-spacing:29.804314px;}
.ws4{word-spacing:525.038983px;}
.ws3{word-spacing:558.214441px;}
._16{margin-left:-7.946910px;}
._3{margin-left:-6.276456px;}
._a{margin-left:-4.347000px;}
._2{margin-left:-2.988780px;}
._1{margin-left:-1.494390px;}
._7{width:1.494390px;}
._0{width:2.689920px;}
._c{width:3.819540px;}
._b{width:5.368163px;}
._4{width:6.372061px;}
._13{width:7.389750px;}
._12{width:9.382356px;}
._d{width:10.569270px;}
._f{width:12.435240px;}
._e{width:13.530840px;}
._14{width:16.207650px;}
._17{width:17.951040px;}
._18{width:19.408320px;}
._15{width:20.666880px;}
._11{width:22.256640px;}
._10{width:23.419830px;}
._19{width:24.434580px;}
._9{width:239.305637px;}
._8{width:240.859803px;}
._6{width:302.076013px;}
._5{width:357.123345px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(230,230,230);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fs2{font-size:60.000000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:107.596800px;}
.fs3{font-size:359.999328px;}
.y0{bottom:0.000000px;}
.y136{bottom:3.585000px;}
.y127{bottom:3.600000px;}
.y12b{bottom:3.615000px;}
.y138{bottom:3.765000px;}
.y125{bottom:3.780000px;}
.y159{bottom:4.500000px;}
.y14c{bottom:4.665000px;}
.y154{bottom:4.671000px;}
.y156{bottom:4.680000px;}
.y14a{bottom:4.710000px;}
.y162{bottom:4.725000px;}
.y129{bottom:20.160000px;}
.y151{bottom:24.645000px;}
.y15a{bottom:24.660000px;}
.y14f{bottom:24.825000px;}
.y15e{bottom:24.840000px;}
.y157{bottom:24.870000px;}
.y14e{bottom:44.985000px;}
.y18{bottom:45.000000px;}
.ya1{bottom:113.616000px;}
.y54{bottom:113.796000px;}
.yc1{bottom:117.576000px;}
.y96{bottom:118.836000px;}
.y112{bottom:122.976000px;}
.y153{bottom:130.905000px;}
.y3e{bottom:134.856000px;}
.y121{bottom:136.656000px;}
.ya0{bottom:143.856000px;}
.y53{bottom:144.036000px;}
.y95{bottom:149.076000px;}
.yc0{bottom:150.510000px;}
.y111{bottom:153.210000px;}
.ye5{bottom:157.350000px;}
.y73{bottom:157.890000px;}
.y3d{bottom:165.090000px;}
.y120{bottom:166.890000px;}
.y152{bottom:171.225000px;}
.y9f{bottom:174.090000px;}
.y52{bottom:174.270000px;}
.ye4{bottom:177.510000px;}
.y94{bottom:179.310000px;}
.y72{bottom:179.490000px;}
.y109{bottom:179.670000px;}
.ybf{bottom:183.450000px;}
.y3c{bottom:195.330000px;}
.y11f{bottom:197.130000px;}
.ye3{bottom:197.670000px;}
.y108{bottom:199.830000px;}
.y71{bottom:201.270000px;}
.y9e{bottom:204.330000px;}
.y51{bottom:204.510000px;}
.y93{bottom:209.370000px;}
.y150{bottom:211.545000px;}
.y110{bottom:213.690000px;}
.ybe{bottom:216.390000px;}
.y3b{bottom:225.390000px;}
.y11e{bottom:227.370000px;}
.y50{bottom:234.570000px;}
.y70{bottom:235.110000px;}
.ye2{bottom:235.830000px;}
.y107{bottom:237.990000px;}
.y92{bottom:239.610000px;}
.y10f{bottom:243.750000px;}
.ybd{bottom:249.330000px;}
.y14d{bottom:251.685000px;}
.y3a{bottom:255.630000px;}
.ye1{bottom:255.990000px;}
.y6f{bottom:256.710000px;}
.y11d{bottom:257.610000px;}
.y106{bottom:258.150000px;}
.y4f{bottom:264.810000px;}
.y91{bottom:269.850000px;}
.y10e{bottom:273.990000px;}
.ye0{bottom:276.150000px;}
.y105{bottom:278.310000px;}
.y6e{bottom:278.490000px;}
.ybc{bottom:282.270000px;}
.y39{bottom:285.870000px;}
.y11c{bottom:287.670000px;}
.y9d{bottom:294.870000px;}
.y4e{bottom:295.050000px;}
.y90{bottom:300.090000px;}
.y6d{bottom:300.270000px;}
.y10d{bottom:304.230000px;}
.y17{bottom:311.853688px;}
.y14b{bottom:312.165000px;}
.ydf{bottom:314.310000px;}
.ybb{bottom:315.390000px;}
.y19{bottom:315.720000px;}
.y38{bottom:316.110000px;}
.y104{bottom:316.290000px;}
.y11b{bottom:317.910000px;}
.y6c{bottom:322.050000px;}
.y9c{bottom:325.110000px;}
.y4d{bottom:325.290000px;}
.y10c{bottom:329.790000px;}
.y8f{bottom:330.330000px;}
.yde{bottom:334.290000px;}
.y149{bottom:335.745000px;}
.y103{bottom:336.495000px;}
.y6b{bottom:343.695000px;}
.y37{bottom:346.395000px;}
.y16{bottom:347.719048px;}
.y11a{bottom:348.195000px;}
.yba{bottom:348.375000px;}
.ydd{bottom:354.495000px;}
.y9b{bottom:355.395000px;}
.y4c{bottom:355.575000px;}
.y102{bottom:356.655000px;}
.y8e{bottom:360.615000px;}
.y148{bottom:364.215000px;}
.y6a{bottom:365.475000px;}
.y15{bottom:365.651728px;}
.y36{bottom:376.635000px;}
.y119{bottom:378.435000px;}
.yb9{bottom:381.315000px;}
.y14{bottom:383.584408px;}
.y147{bottom:384.195000px;}
.y9a{bottom:385.635000px;}
.y4b{bottom:385.815000px;}
.y69{bottom:387.255000px;}
.y8d{bottom:390.675000px;}
.ydc{bottom:392.655000px;}
.y101{bottom:394.815000px;}
.y13{bottom:401.517088px;}
.y146{bottom:404.355000px;}
.y35{bottom:406.695000px;}
.y118{bottom:408.675000px;}
.y68{bottom:409.035000px;}
.ydb{bottom:412.815000px;}
.yb8{bottom:414.255000px;}
.y100{bottom:414.975000px;}
.y4a{bottom:415.875000px;}
.y12{bottom:419.449768px;}
.y8c{bottom:420.915000px;}
.y145{bottom:424.515000px;}
.yda{bottom:432.975000px;}
.yff{bottom:435.135000px;}
.y34{bottom:436.935000px;}
.y11{bottom:437.382448px;}
.y117{bottom:438.915000px;}
.y67{bottom:442.695000px;}
.y144{bottom:444.675000px;}
.y49{bottom:446.115000px;}
.yb7{bottom:447.195000px;}
.y16b{bottom:449.535000px;}
.y8b{bottom:451.155000px;}
.y10{bottom:455.315128px;}
.y143{bottom:460.155000px;}
.y66{bottom:464.475000px;}
.y16a{bottom:465.015000px;}
.y33{bottom:467.175000px;}
.y116{bottom:468.975000px;}
.yd9{bottom:471.135000px;}
.yfe{bottom:473.295000px;}
.y48{bottom:476.355000px;}
.yb6{bottom:480.135000px;}
.y8a{bottom:481.395000px;}
.y65{bottom:486.255000px;}
.yd8{bottom:491.295000px;}
.y142{bottom:493.095000px;}
.yfd{bottom:493.455000px;}
.y32{bottom:497.415000px;}
.y169{bottom:497.955000px;}
.y115{bottom:499.215000px;}
.y99{bottom:506.415000px;}
.y47{bottom:506.595000px;}
.yf{bottom:507.035965px;}
.yd7{bottom:511.455000px;}
.y89{bottom:511.635000px;}
.yb5{bottom:513.075000px;}
.yfc{bottom:513.615000px;}
.y141{bottom:516.675000px;}
.y64{bottom:519.915000px;}
.y168{bottom:521.535000px;}
.ye{bottom:524.968645px;}
.y31{bottom:528.735000px;}
.y114{bottom:529.455000px;}
.y98{bottom:536.655000px;}
.y46{bottom:536.835000px;}
.y140{bottom:540.435000px;}
.y63{bottom:541.695000px;}
.y88{bottom:541.875000px;}
.yd{bottom:542.901325px;}
.yb4{bottom:546.015000px;}
.yd6{bottom:549.615000px;}
.yfb{bottom:551.775000px;}
.y113{bottom:555.195000px;}
.y123{bottom:559.695000px;}
.yc{bottom:560.834005px;}
.y30{bottom:561.675000px;}
.y167{bottom:561.855000px;}
.y62{bottom:563.475000px;}
.y97{bottom:566.895000px;}
.y45{bottom:567.075000px;}
.yd5{bottom:569.775000px;}
.yfa{bottom:571.755000px;}
.y87{bottom:572.115000px;}
.y13f{bottom:573.375000px;}
.yb3{bottom:578.955000px;}
.y122{bottom:585.255000px;}
.yd4{bottom:589.755000px;}
.yf9{bottom:591.915000px;}
.y2f{bottom:594.615000px;}
.y13e{bottom:596.955000px;}
.y61{bottom:597.135000px;}
.y44{bottom:597.315000px;}
.y86{bottom:602.175000px;}
.yd3{bottom:609.945000px;}
.yb2{bottom:611.925000px;}
.y13d{bottom:620.565000px;}
.yb{bottom:626.736604px;}
.y43{bottom:627.405000px;}
.y2e{bottom:627.585000px;}
.yf8{bottom:630.105000px;}
.y85{bottom:632.445000px;}
.y166{bottom:642.525000px;}
.y13c{bottom:644.325000px;}
.yb1{bottom:645.045000px;}
.yd2{bottom:648.105000px;}
.yf7{bottom:650.265000px;}
.ya{bottom:655.279454px;}
.y42{bottom:657.645000px;}
.y2d{bottom:659.445000px;}
.y84{bottom:662.685000px;}
.y13b{bottom:667.905000px;}
.yd1{bottom:668.265000px;}
.yb0{bottom:677.985000px;}
.y165{bottom:682.665000px;}
.y60{bottom:687.705000px;}
.y41{bottom:687.885000px;}
.yd0{bottom:688.425000px;}
.y2c{bottom:689.685000px;}
.y83{bottom:692.925000px;}
.y13a{bottom:700.845000px;}
.y9{bottom:702.053860px;}
.y164{bottom:706.425000px;}
.yf6{bottom:708.585000px;}
.yaf{bottom:710.925000px;}
.y5f{bottom:717.945000px;}
.y40{bottom:718.125000px;}
.y2b{bottom:719.925000px;}
.y82{bottom:723.165000px;}
.y139{bottom:724.425000px;}
.ycf{bottom:726.585000px;}
.yf5{bottom:728.745000px;}
.y3f{bottom:743.685000px;}
.yae{bottom:743.865000px;}
.yce{bottom:746.745000px;}
.y5e{bottom:748.185000px;}
.yf4{bottom:748.905000px;}
.y8{bottom:749.650182px;}
.y2a{bottom:750.165000px;}
.y81{bottom:753.405000px;}
.y137{bottom:757.380000px;}
.ycd{bottom:766.905000px;}
.yad{bottom:776.805000px;}
.y7{bottom:778.193031px;}
.y5d{bottom:778.425000px;}
.y29{bottom:780.405000px;}
.y135{bottom:781.140000px;}
.y80{bottom:783.465000px;}
.y163{bottom:786.885000px;}
.yf3{bottom:787.065000px;}
.y134{bottom:804.705000px;}
.ycc{bottom:805.065000px;}
.y6{bottom:806.735880px;}
.yf2{bottom:807.045000px;}
.y5c{bottom:808.665000px;}
.yac{bottom:809.745000px;}
.y28{bottom:811.725000px;}
.y7f{bottom:813.705000px;}
.ycb{bottom:825.045000px;}
.yf1{bottom:827.205000px;}
.y27{bottom:833.685000px;}
.y133{bottom:837.645000px;}
.y5b{bottom:838.905000px;}
.yab{bottom:842.685000px;}
.y7e{bottom:843.945000px;}
.yca{bottom:845.205000px;}
.y10b{bottom:855.285000px;}
.y26{bottom:855.645000px;}
.y132{bottom:861.225000px;}
.y5{bottom:862.028310px;}
.yf0{bottom:865.365000px;}
.y161{bottom:867.525000px;}
.y5a{bottom:869.145000px;}
.y7d{bottom:874.230000px;}
.yaa{bottom:875.670000px;}
.y25{bottom:877.650000px;}
.y4{bottom:879.960990px;}
.yc9{bottom:883.410000px;}
.y131{bottom:884.850000px;}
.yef{bottom:885.570000px;}
.y160{bottom:891.150000px;}
.y59{bottom:899.250000px;}
.y24{bottom:899.610000px;}
.yc8{bottom:903.570000px;}
.y7c{bottom:904.470000px;}
.yee{bottom:905.730000px;}
.ya9{bottom:908.610000px;}
.y3{bottom:920.309520px;}
.y23{bottom:921.570000px;}
.yc7{bottom:923.730000px;}
.y58{bottom:929.490000px;}
.y15f{bottom:931.470000px;}
.y130{bottom:932.190000px;}
.y7b{bottom:934.710000px;}
.y2{bottom:938.242200px;}
.ya8{bottom:941.730000px;}
.yed{bottom:943.890000px;}
.y22{bottom:954.510000px;}
.y12f{bottom:955.770000px;}
.y57{bottom:959.730000px;}
.yc6{bottom:961.890000px;}
.yec{bottom:964.050000px;}
.y7a{bottom:964.950000px;}
.y15d{bottom:971.790000px;}
.ya7{bottom:974.670000px;}
.y12e{bottom:979.350000px;}
.yc5{bottom:982.050000px;}
.yeb{bottom:984.210000px;}
.y21{bottom:987.450000px;}
.y56{bottom:989.970000px;}
.y79{bottom:998.610000px;}
.yc4{bottom:1002.210000px;}
.y12d{bottom:1003.095000px;}
.y12c{bottom:1003.110000px;}
.ya6{bottom:1007.610000px;}
.y1{bottom:1010.571000px;}
.y15c{bottom:1012.110000px;}
.y20{bottom:1018.950000px;}
.y55{bottom:1020.210000px;}
.y78{bottom:1020.390000px;}
.yea{bottom:1022.370000px;}
.y12a{bottom:1036.035000px;}
.y128{bottom:1036.050000px;}
.yc3{bottom:1040.370000px;}
.ya5{bottom:1040.550000px;}
.ye9{bottom:1042.530000px;}
.y1f{bottom:1050.450000px;}
.y15b{bottom:1052.250000px;}
.y77{bottom:1054.050000px;}
.yc2{bottom:1060.530000px;}
.ye8{bottom:1062.510000px;}
.y126{bottom:1068.990000px;}
.ya4{bottom:1073.490000px;}
.y76{bottom:1075.830000px;}
.y158{bottom:1076.010000px;}
.y1e{bottom:1080.510000px;}
.ye7{bottom:1082.670000px;}
.y124{bottom:1092.570000px;}
.y75{bottom:1097.610000px;}
.y10a{bottom:1100.670000px;}
.ya3{bottom:1106.430000px;}
.y1d{bottom:1110.750000px;}
.y155{bottom:1116.150000px;}
.y74{bottom:1119.210000px;}
.ye6{bottom:1120.830000px;}
.ya2{bottom:1139.400000px;}
.y1c{bottom:1141.020000px;}
.y1b{bottom:1170.720000px;}
.y1a{bottom:1192.680000px;}
.h12{height:23.565000px;}
.h1a{height:23.580000px;}
.h19{height:23.602500px;}
.h1c{height:23.610000px;}
.h17{height:23.745000px;}
.h1b{height:23.760000px;}
.h1d{height:23.781000px;}
.h16{height:32.925000px;}
.h14{height:32.931000px;}
.h15{height:32.940000px;}
.h26{height:40.125000px;}
.h21{height:40.131000px;}
.h22{height:40.140000px;}
.h23{height:40.305000px;}
.h24{height:40.311000px;}
.h27{height:40.320000px;}
.h25{height:40.350000px;}
.h5{height:41.125613px;}
.h2{height:44.054617px;}
.h3{height:44.114393px;}
.h4{height:45.309905px;}
.hc{height:50.068125px;}
.h18{height:53.709961px;}
.h13{height:55.291992px;}
.h20{height:60.465000px;}
.h1e{height:60.471000px;}
.h1f{height:60.480000px;}
.h8{height:62.578125px;}
.h11{height:65.884219px;}
.hb{height:67.824844px;}
.h10{height:68.084282px;}
.ha{height:71.613281px;}
.hf{height:71.740898px;}
.he{height:73.722656px;}
.hd{height:74.004654px;}
.h1{height:79.298842px;}
.h9{height:375.468049px;}
.h0{height:1188.000000px;}
.h6{height:1262.880000px;}
.h7{height:1263.000000px;}
.w13{width:37.065000px;}
.w20{width:39.240000px;}
.w10{width:40.125000px;}
.w24{width:42.645000px;}
.w1e{width:43.365000px;}
.wc{width:44.085000px;}
.w23{width:44.121000px;}
.w12{width:44.841000px;}
.w18{width:47.541000px;}
.we{width:47.880000px;}
.w6{width:48.081000px;}
.w15{width:52.551000px;}
.w1d{width:52.560000px;}
.w4{width:52.911000px;}
.wb{width:52.920000px;}
.w11{width:80.265000px;}
.wd{width:80.280000px;}
.wf{width:80.316000px;}
.w22{width:80.805000px;}
.w1f{width:80.820000px;}
.w21{width:80.856000px;}
.w17{width:86.745000px;}
.w5{width:88.185000px;}
.wa{width:117.345000px;}
.w19{width:120.060000px;}
.w8{width:120.456000px;}
.w1c{width:123.465000px;}
.w1b{width:124.941000px;}
.w1a{width:124.956000px;}
.w9{width:125.121000px;}
.w7{width:128.160000px;}
.w16{width:627.750000px;}
.w25{width:637.650000px;}
.w14{width:643.230000px;}
.w3{width:680.310000px;}
.w1{width:892.980000px;}
.w2{width:893.250000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x21{left:5.211000px;}
.x2b{left:7.200000px;}
.x22{left:8.445000px;}
.x2e{left:9.900000px;}
.x29{left:10.965000px;}
.x26{left:12.600000px;}
.x2d{left:13.665000px;}
.x42{left:15.480000px;}
.x30{left:17.100000px;}
.x2f{left:18.360000px;}
.x34{left:20.145000px;}
.x24{left:21.780000px;}
.x18{left:24.105000px;}
.x14{left:26.451000px;}
.x36{left:27.525000px;}
.x39{left:29.880000px;}
.x16{left:31.305000px;}
.x20{left:34.020000px;}
.x1c{left:35.460000px;}
.x1e{left:37.785000px;}
.x1a{left:39.420000px;}
.xb{left:106.416000px;}
.x11{left:126.216000px;}
.xc{left:133.416000px;}
.x1{left:145.369200px;}
.xf{left:148.896000px;}
.x15{left:159.345000px;}
.xd{left:160.410000px;}
.x3d{left:202.365000px;}
.x23{left:203.445000px;}
.x9{left:223.245000px;}
.x37{left:245.745000px;}
.x17{left:247.545000px;}
.x38{left:293.295000px;}
.x19{left:295.635000px;}
.x43{left:311.070000px;}
.x35{left:313.800000px;}
.x32{left:316.290000px;}
.x2c{left:320.430000px;}
.x33{left:324.750000px;}
.x31{left:327.810000px;}
.x2{left:335.503428px;}
.x13{left:340.050000px;}
.x3e{left:374.115000px;}
.x25{left:375.915000px;}
.x3a{left:413.355000px;}
.x1b{left:423.795000px;}
.x3{left:438.797160px;}
.x5{left:482.345179px;}
.x3f{left:494.220000px;}
.x27{left:504.120000px;}
.x4{left:516.865588px;}
.x3b{left:538.320000px;}
.x1d{left:544.260000px;}
.x6{left:578.615277px;}
.x40{left:619.140000px;}
.x28{left:624.540000px;}
.x7{left:656.683705px;}
.x3c{left:663.270000px;}
.x1f{left:669.390000px;}
.x41{left:744.090000px;}
.x2a{left:749.670000px;}
.x10{left:768.570000px;}
.x8{left:772.980000px;}
.xa{left:777.570000px;}
.xe{left:786.750000px;}
.x12{left:829.230000px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.115811pt;}
.v2{vertical-align:21.120000pt;}
.ls22{letter-spacing:-1.349333pt;}
.lsa{letter-spacing:-0.853333pt;}
.ls10{letter-spacing:-0.757333pt;}
.ls18{letter-spacing:-0.624000pt;}
.ls1b{letter-spacing:-0.613333pt;}
.ls13{letter-spacing:-0.524800pt;}
.ls8{letter-spacing:-0.419733pt;}
.ls14{letter-spacing:-0.412267pt;}
.ls1c{letter-spacing:-0.373867pt;}
.ls12{letter-spacing:-0.309867pt;}
.ls25{letter-spacing:-0.288000pt;}
.lsf{letter-spacing:-0.259733pt;}
.ls27{letter-spacing:-0.250667pt;}
.ls26{letter-spacing:-0.208000pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.146133pt;}
.ls5{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.117867pt;}
.ls1a{letter-spacing:-0.102400pt;}
.lsd{letter-spacing:-0.043520pt;}
.ls24{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.017920pt;}
.ls17{letter-spacing:0.028160pt;}
.ls23{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls1e{letter-spacing:0.117867pt;}
.ls28{letter-spacing:0.158933pt;}
.ls1{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.220267pt;}
.ls6{letter-spacing:0.227733pt;}
.ls1f{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.266133pt;}
.lsb{letter-spacing:0.348267pt;}
.lsc{letter-spacing:0.522240pt;}
.ls1d{letter-spacing:8.576000pt;}
.ls20{letter-spacing:12.293120pt;}
.ls11{letter-spacing:19.456000pt;}
.ls3{letter-spacing:34.810027pt;}
.ls21{letter-spacing:101.231787pt;}
.ls4{letter-spacing:174.314667pt;}
.ws1d{word-spacing:-14.720000pt;}
.ws1c{word-spacing:-14.656000pt;}
.ws1f{word-spacing:-14.528000pt;}
.ws8{word-spacing:-14.464000pt;}
.ws1e{word-spacing:-14.272000pt;}
.wsc{word-spacing:-13.573013pt;}
.wsa{word-spacing:-13.534613pt;}
.ws1b{word-spacing:-13.424747pt;}
.ws15{word-spacing:-13.324800pt;}
.wsb{word-spacing:-13.306880pt;}
.wsf{word-spacing:-13.263360pt;}
.ws17{word-spacing:-13.204480pt;}
.ws16{word-spacing:-13.189013pt;}
.ws14{word-spacing:-13.160747pt;}
.ws1a{word-spacing:-13.114880pt;}
.ws11{word-spacing:-12.997013pt;}
.ws19{word-spacing:-12.933013pt;}
.ws13{word-spacing:-12.894613pt;}
.ws12{word-spacing:-12.782080pt;}
.ws18{word-spacing:-12.693547pt;}
.wsd{word-spacing:-12.453547pt;}
.ws20{word-spacing:-11.957547pt;}
.ws21{word-spacing:-10.832000pt;}
.ws23{word-spacing:-10.640000pt;}
.ws22{word-spacing:-10.560000pt;}
.ws9{word-spacing:-9.690880pt;}
.wse{word-spacing:-8.389120pt;}
.ws10{word-spacing:-8.129387pt;}
.ws2{word-spacing:-0.053134pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:8.804282pt;}
.ws6{word-spacing:13.230333pt;}
.ws1{word-spacing:14.718081pt;}
.ws0{word-spacing:26.492723pt;}
.ws4{word-spacing:466.701318pt;}
.ws3{word-spacing:496.190614pt;}
._16{margin-left:-7.063920pt;}
._3{margin-left:-5.579072pt;}
._a{margin-left:-3.864000pt;}
._2{margin-left:-2.656693pt;}
._1{margin-left:-1.328347pt;}
._7{width:1.328347pt;}
._0{width:2.391040pt;}
._c{width:3.395147pt;}
._b{width:4.771701pt;}
._4{width:5.664054pt;}
._13{width:6.568667pt;}
._12{width:8.339872pt;}
._d{width:9.394907pt;}
._f{width:11.053547pt;}
._e{width:12.027413pt;}
._14{width:14.406800pt;}
._17{width:15.956480pt;}
._18{width:17.251840pt;}
._15{width:18.370560pt;}
._11{width:19.783680pt;}
._10{width:20.817627pt;}
._19{width:21.719627pt;}
._9{width:212.716122pt;}
._8{width:214.097602pt;}
._6{width:268.512011pt;}
._5{width:317.442973pt;}
.fs7{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:53.333333pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:95.641600pt;}
.fs3{font-size:319.999403pt;}
.y0{bottom:0.000000pt;}
.y136{bottom:3.186667pt;}
.y127{bottom:3.200000pt;}
.y12b{bottom:3.213333pt;}
.y138{bottom:3.346667pt;}
.y125{bottom:3.360000pt;}
.y159{bottom:4.000000pt;}
.y14c{bottom:4.146667pt;}
.y154{bottom:4.152000pt;}
.y156{bottom:4.160000pt;}
.y14a{bottom:4.186667pt;}
.y162{bottom:4.200000pt;}
.y129{bottom:17.920000pt;}
.y151{bottom:21.906667pt;}
.y15a{bottom:21.920000pt;}
.y14f{bottom:22.066667pt;}
.y15e{bottom:22.080000pt;}
.y157{bottom:22.106667pt;}
.y14e{bottom:39.986667pt;}
.y18{bottom:40.000000pt;}
.ya1{bottom:100.992000pt;}
.y54{bottom:101.152000pt;}
.yc1{bottom:104.512000pt;}
.y96{bottom:105.632000pt;}
.y112{bottom:109.312000pt;}
.y153{bottom:116.360000pt;}
.y3e{bottom:119.872000pt;}
.y121{bottom:121.472000pt;}
.ya0{bottom:127.872000pt;}
.y53{bottom:128.032000pt;}
.y95{bottom:132.512000pt;}
.yc0{bottom:133.786667pt;}
.y111{bottom:136.186667pt;}
.ye5{bottom:139.866667pt;}
.y73{bottom:140.346667pt;}
.y3d{bottom:146.746667pt;}
.y120{bottom:148.346667pt;}
.y152{bottom:152.200000pt;}
.y9f{bottom:154.746667pt;}
.y52{bottom:154.906667pt;}
.ye4{bottom:157.786667pt;}
.y94{bottom:159.386667pt;}
.y72{bottom:159.546667pt;}
.y109{bottom:159.706667pt;}
.ybf{bottom:163.066667pt;}
.y3c{bottom:173.626667pt;}
.y11f{bottom:175.226667pt;}
.ye3{bottom:175.706667pt;}
.y108{bottom:177.626667pt;}
.y71{bottom:178.906667pt;}
.y9e{bottom:181.626667pt;}
.y51{bottom:181.786667pt;}
.y93{bottom:186.106667pt;}
.y150{bottom:188.040000pt;}
.y110{bottom:189.946667pt;}
.ybe{bottom:192.346667pt;}
.y3b{bottom:200.346667pt;}
.y11e{bottom:202.106667pt;}
.y50{bottom:208.506667pt;}
.y70{bottom:208.986667pt;}
.ye2{bottom:209.626667pt;}
.y107{bottom:211.546667pt;}
.y92{bottom:212.986667pt;}
.y10f{bottom:216.666667pt;}
.ybd{bottom:221.626667pt;}
.y14d{bottom:223.720000pt;}
.y3a{bottom:227.226667pt;}
.ye1{bottom:227.546667pt;}
.y6f{bottom:228.186667pt;}
.y11d{bottom:228.986667pt;}
.y106{bottom:229.466667pt;}
.y4f{bottom:235.386667pt;}
.y91{bottom:239.866667pt;}
.y10e{bottom:243.546667pt;}
.ye0{bottom:245.466667pt;}
.y105{bottom:247.386667pt;}
.y6e{bottom:247.546667pt;}
.ybc{bottom:250.906667pt;}
.y39{bottom:254.106667pt;}
.y11c{bottom:255.706667pt;}
.y9d{bottom:262.106667pt;}
.y4e{bottom:262.266667pt;}
.y90{bottom:266.746667pt;}
.y6d{bottom:266.906667pt;}
.y10d{bottom:270.426667pt;}
.y17{bottom:277.203278pt;}
.y14b{bottom:277.480000pt;}
.ydf{bottom:279.386667pt;}
.ybb{bottom:280.346667pt;}
.y19{bottom:280.640000pt;}
.y38{bottom:280.986667pt;}
.y104{bottom:281.146667pt;}
.y11b{bottom:282.586667pt;}
.y6c{bottom:286.266667pt;}
.y9c{bottom:288.986667pt;}
.y4d{bottom:289.146667pt;}
.y10c{bottom:293.146667pt;}
.y8f{bottom:293.626667pt;}
.yde{bottom:297.146667pt;}
.y149{bottom:298.440000pt;}
.y103{bottom:299.106667pt;}
.y6b{bottom:305.506667pt;}
.y37{bottom:307.906667pt;}
.y16{bottom:309.083598pt;}
.y11a{bottom:309.506667pt;}
.yba{bottom:309.666667pt;}
.ydd{bottom:315.106667pt;}
.y9b{bottom:315.906667pt;}
.y4c{bottom:316.066667pt;}
.y102{bottom:317.026667pt;}
.y8e{bottom:320.546667pt;}
.y148{bottom:323.746667pt;}
.y6a{bottom:324.866667pt;}
.y15{bottom:325.023758pt;}
.y36{bottom:334.786667pt;}
.y119{bottom:336.386667pt;}
.yb9{bottom:338.946667pt;}
.y14{bottom:340.963918pt;}
.y147{bottom:341.506667pt;}
.y9a{bottom:342.786667pt;}
.y4b{bottom:342.946667pt;}
.y69{bottom:344.226667pt;}
.y8d{bottom:347.266667pt;}
.ydc{bottom:349.026667pt;}
.y101{bottom:350.946667pt;}
.y13{bottom:356.904078pt;}
.y146{bottom:359.426667pt;}
.y35{bottom:361.506667pt;}
.y118{bottom:363.266667pt;}
.y68{bottom:363.586667pt;}
.ydb{bottom:366.946667pt;}
.yb8{bottom:368.226667pt;}
.y100{bottom:368.866667pt;}
.y4a{bottom:369.666667pt;}
.y12{bottom:372.844238pt;}
.y8c{bottom:374.146667pt;}
.y145{bottom:377.346667pt;}
.yda{bottom:384.866667pt;}
.yff{bottom:386.786667pt;}
.y34{bottom:388.386667pt;}
.y11{bottom:388.784398pt;}
.y117{bottom:390.146667pt;}
.y67{bottom:393.506667pt;}
.y144{bottom:395.266667pt;}
.y49{bottom:396.546667pt;}
.yb7{bottom:397.506667pt;}
.y16b{bottom:399.586667pt;}
.y8b{bottom:401.026667pt;}
.y10{bottom:404.724558pt;}
.y143{bottom:409.026667pt;}
.y66{bottom:412.866667pt;}
.y16a{bottom:413.346667pt;}
.y33{bottom:415.266667pt;}
.y116{bottom:416.866667pt;}
.yd9{bottom:418.786667pt;}
.yfe{bottom:420.706667pt;}
.y48{bottom:423.426667pt;}
.yb6{bottom:426.786667pt;}
.y8a{bottom:427.906667pt;}
.y65{bottom:432.226667pt;}
.yd8{bottom:436.706667pt;}
.y142{bottom:438.306667pt;}
.yfd{bottom:438.626667pt;}
.y32{bottom:442.146667pt;}
.y169{bottom:442.626667pt;}
.y115{bottom:443.746667pt;}
.y99{bottom:450.146667pt;}
.y47{bottom:450.306667pt;}
.yf{bottom:450.698636pt;}
.yd7{bottom:454.626667pt;}
.y89{bottom:454.786667pt;}
.yb5{bottom:456.066667pt;}
.yfc{bottom:456.546667pt;}
.y141{bottom:459.266667pt;}
.y64{bottom:462.146667pt;}
.y168{bottom:463.586667pt;}
.ye{bottom:466.638796pt;}
.y31{bottom:469.986667pt;}
.y114{bottom:470.626667pt;}
.y98{bottom:477.026667pt;}
.y46{bottom:477.186667pt;}
.y140{bottom:480.386667pt;}
.y63{bottom:481.506667pt;}
.y88{bottom:481.666667pt;}
.yd{bottom:482.578956pt;}
.yb4{bottom:485.346667pt;}
.yd6{bottom:488.546667pt;}
.yfb{bottom:490.466667pt;}
.y113{bottom:493.506667pt;}
.y123{bottom:497.506667pt;}
.yc{bottom:498.519116pt;}
.y30{bottom:499.266667pt;}
.y167{bottom:499.426667pt;}
.y62{bottom:500.866667pt;}
.y97{bottom:503.906667pt;}
.y45{bottom:504.066667pt;}
.yd5{bottom:506.466667pt;}
.yfa{bottom:508.226667pt;}
.y87{bottom:508.546667pt;}
.y13f{bottom:509.666667pt;}
.yb3{bottom:514.626667pt;}
.y122{bottom:520.226667pt;}
.yd4{bottom:524.226667pt;}
.yf9{bottom:526.146667pt;}
.y2f{bottom:528.546667pt;}
.y13e{bottom:530.626667pt;}
.y61{bottom:530.786667pt;}
.y44{bottom:530.946667pt;}
.y86{bottom:535.266667pt;}
.yd3{bottom:542.173333pt;}
.yb2{bottom:543.933333pt;}
.y13d{bottom:551.613333pt;}
.yb{bottom:557.099204pt;}
.y43{bottom:557.693333pt;}
.y2e{bottom:557.853333pt;}
.yf8{bottom:560.093333pt;}
.y85{bottom:562.173333pt;}
.y166{bottom:571.133333pt;}
.y13c{bottom:572.733333pt;}
.yb1{bottom:573.373333pt;}
.yd2{bottom:576.093333pt;}
.yf7{bottom:578.013333pt;}
.ya{bottom:582.470625pt;}
.y42{bottom:584.573333pt;}
.y2d{bottom:586.173333pt;}
.y84{bottom:589.053333pt;}
.y13b{bottom:593.693333pt;}
.yd1{bottom:594.013333pt;}
.yb0{bottom:602.653333pt;}
.y165{bottom:606.813333pt;}
.y60{bottom:611.293333pt;}
.y41{bottom:611.453333pt;}
.yd0{bottom:611.933333pt;}
.y2c{bottom:613.053333pt;}
.y83{bottom:615.933333pt;}
.y13a{bottom:622.973333pt;}
.y9{bottom:624.047876pt;}
.y164{bottom:627.933333pt;}
.yf6{bottom:629.853333pt;}
.yaf{bottom:631.933333pt;}
.y5f{bottom:638.173333pt;}
.y40{bottom:638.333333pt;}
.y2b{bottom:639.933333pt;}
.y82{bottom:642.813333pt;}
.y139{bottom:643.933333pt;}
.ycf{bottom:645.853333pt;}
.yf5{bottom:647.773333pt;}
.y3f{bottom:661.053333pt;}
.yae{bottom:661.213333pt;}
.yce{bottom:663.773333pt;}
.y5e{bottom:665.053333pt;}
.yf4{bottom:665.693333pt;}
.y8{bottom:666.355717pt;}
.y2a{bottom:666.813333pt;}
.y81{bottom:669.693333pt;}
.y137{bottom:673.226667pt;}
.ycd{bottom:681.693333pt;}
.yad{bottom:690.493333pt;}
.y7{bottom:691.727139pt;}
.y5d{bottom:691.933333pt;}
.y29{bottom:693.693333pt;}
.y135{bottom:694.346667pt;}
.y80{bottom:696.413333pt;}
.y163{bottom:699.453333pt;}
.yf3{bottom:699.613333pt;}
.y134{bottom:715.293333pt;}
.ycc{bottom:715.613333pt;}
.y6{bottom:717.098560pt;}
.yf2{bottom:717.373333pt;}
.y5c{bottom:718.813333pt;}
.yac{bottom:719.773333pt;}
.y28{bottom:721.533333pt;}
.y7f{bottom:723.293333pt;}
.ycb{bottom:733.373333pt;}
.yf1{bottom:735.293333pt;}
.y27{bottom:741.053333pt;}
.y133{bottom:744.573333pt;}
.y5b{bottom:745.693333pt;}
.yab{bottom:749.053333pt;}
.y7e{bottom:750.173333pt;}
.yca{bottom:751.293333pt;}
.y10b{bottom:760.253333pt;}
.y26{bottom:760.573333pt;}
.y132{bottom:765.533333pt;}
.y5{bottom:766.247387pt;}
.yf0{bottom:769.213333pt;}
.y161{bottom:771.133333pt;}
.y5a{bottom:772.573333pt;}
.y7d{bottom:777.093333pt;}
.yaa{bottom:778.373333pt;}
.y25{bottom:780.133333pt;}
.y4{bottom:782.187547pt;}
.yc9{bottom:785.253333pt;}
.y131{bottom:786.533333pt;}
.yef{bottom:787.173333pt;}
.y160{bottom:792.133333pt;}
.y59{bottom:799.333333pt;}
.y24{bottom:799.653333pt;}
.yc8{bottom:803.173333pt;}
.y7c{bottom:803.973333pt;}
.yee{bottom:805.093333pt;}
.ya9{bottom:807.653333pt;}
.y3{bottom:818.052907pt;}
.y23{bottom:819.173333pt;}
.yc7{bottom:821.093333pt;}
.y58{bottom:826.213333pt;}
.y15f{bottom:827.973333pt;}
.y130{bottom:828.613333pt;}
.y7b{bottom:830.853333pt;}
.y2{bottom:833.993067pt;}
.ya8{bottom:837.093333pt;}
.yed{bottom:839.013333pt;}
.y22{bottom:848.453333pt;}
.y12f{bottom:849.573333pt;}
.y57{bottom:853.093333pt;}
.yc6{bottom:855.013333pt;}
.yec{bottom:856.933333pt;}
.y7a{bottom:857.733333pt;}
.y15d{bottom:863.813333pt;}
.ya7{bottom:866.373333pt;}
.y12e{bottom:870.533333pt;}
.yc5{bottom:872.933333pt;}
.yeb{bottom:874.853333pt;}
.y21{bottom:877.733333pt;}
.y56{bottom:879.973333pt;}
.y79{bottom:887.653333pt;}
.yc4{bottom:890.853333pt;}
.y12d{bottom:891.640000pt;}
.y12c{bottom:891.653333pt;}
.ya6{bottom:895.653333pt;}
.y1{bottom:898.285333pt;}
.y15c{bottom:899.653333pt;}
.y20{bottom:905.733333pt;}
.y55{bottom:906.853333pt;}
.y78{bottom:907.013333pt;}
.yea{bottom:908.773333pt;}
.y12a{bottom:920.920000pt;}
.y128{bottom:920.933333pt;}
.yc3{bottom:924.773333pt;}
.ya5{bottom:924.933333pt;}
.ye9{bottom:926.693333pt;}
.y1f{bottom:933.733333pt;}
.y15b{bottom:935.333333pt;}
.y77{bottom:936.933333pt;}
.yc2{bottom:942.693333pt;}
.ye8{bottom:944.453333pt;}
.y126{bottom:950.213333pt;}
.ya4{bottom:954.213333pt;}
.y76{bottom:956.293333pt;}
.y158{bottom:956.453333pt;}
.y1e{bottom:960.453333pt;}
.ye7{bottom:962.373333pt;}
.y124{bottom:971.173333pt;}
.y75{bottom:975.653333pt;}
.y10a{bottom:978.373333pt;}
.ya3{bottom:983.493333pt;}
.y1d{bottom:987.333333pt;}
.y155{bottom:992.133333pt;}
.y74{bottom:994.853333pt;}
.ye6{bottom:996.293333pt;}
.ya2{bottom:1012.800000pt;}
.y1c{bottom:1014.240000pt;}
.y1b{bottom:1040.640000pt;}
.y1a{bottom:1060.160000pt;}
.h12{height:20.946667pt;}
.h1a{height:20.960000pt;}
.h19{height:20.980000pt;}
.h1c{height:20.986667pt;}
.h17{height:21.106667pt;}
.h1b{height:21.120000pt;}
.h1d{height:21.138667pt;}
.h16{height:29.266667pt;}
.h14{height:29.272000pt;}
.h15{height:29.280000pt;}
.h26{height:35.666667pt;}
.h21{height:35.672000pt;}
.h22{height:35.680000pt;}
.h23{height:35.826667pt;}
.h24{height:35.832000pt;}
.h27{height:35.840000pt;}
.h25{height:35.866667pt;}
.h5{height:36.556100pt;}
.h2{height:39.159660pt;}
.h3{height:39.212794pt;}
.h4{height:40.275471pt;}
.hc{height:44.505000pt;}
.h18{height:47.742188pt;}
.h13{height:49.148438pt;}
.h20{height:53.746667pt;}
.h1e{height:53.752000pt;}
.h1f{height:53.760000pt;}
.h8{height:55.625000pt;}
.h11{height:58.563750pt;}
.hb{height:60.288750pt;}
.h10{height:60.519362pt;}
.ha{height:63.656250pt;}
.hf{height:63.769687pt;}
.he{height:65.531250pt;}
.hd{height:65.781915pt;}
.h1{height:70.487859pt;}
.h9{height:333.749377pt;}
.h0{height:1056.000000pt;}
.h6{height:1122.560000pt;}
.h7{height:1122.666667pt;}
.w13{width:32.946667pt;}
.w20{width:34.880000pt;}
.w10{width:35.666667pt;}
.w24{width:37.906667pt;}
.w1e{width:38.546667pt;}
.wc{width:39.186667pt;}
.w23{width:39.218667pt;}
.w12{width:39.858667pt;}
.w18{width:42.258667pt;}
.we{width:42.560000pt;}
.w6{width:42.738667pt;}
.w15{width:46.712000pt;}
.w1d{width:46.720000pt;}
.w4{width:47.032000pt;}
.wb{width:47.040000pt;}
.w11{width:71.346667pt;}
.wd{width:71.360000pt;}
.wf{width:71.392000pt;}
.w22{width:71.826667pt;}
.w1f{width:71.840000pt;}
.w21{width:71.872000pt;}
.w17{width:77.106667pt;}
.w5{width:78.386667pt;}
.wa{width:104.306667pt;}
.w19{width:106.720000pt;}
.w8{width:107.072000pt;}
.w1c{width:109.746667pt;}
.w1b{width:111.058667pt;}
.w1a{width:111.072000pt;}
.w9{width:111.218667pt;}
.w7{width:113.920000pt;}
.w16{width:558.000000pt;}
.w25{width:566.800000pt;}
.w14{width:571.760000pt;}
.w3{width:604.720000pt;}
.w1{width:793.760000pt;}
.w2{width:794.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x21{left:4.632000pt;}
.x2b{left:6.400000pt;}
.x22{left:7.506667pt;}
.x2e{left:8.800000pt;}
.x29{left:9.746667pt;}
.x26{left:11.200000pt;}
.x2d{left:12.146667pt;}
.x42{left:13.760000pt;}
.x30{left:15.200000pt;}
.x2f{left:16.320000pt;}
.x34{left:17.906667pt;}
.x24{left:19.360000pt;}
.x18{left:21.426667pt;}
.x14{left:23.512000pt;}
.x36{left:24.466667pt;}
.x39{left:26.560000pt;}
.x16{left:27.826667pt;}
.x20{left:30.240000pt;}
.x1c{left:31.520000pt;}
.x1e{left:33.586667pt;}
.x1a{left:35.040000pt;}
.xb{left:94.592000pt;}
.x11{left:112.192000pt;}
.xc{left:118.592000pt;}
.x1{left:129.217067pt;}
.xf{left:132.352000pt;}
.x15{left:141.640000pt;}
.xd{left:142.586667pt;}
.x3d{left:179.880000pt;}
.x23{left:180.840000pt;}
.x9{left:198.440000pt;}
.x37{left:218.440000pt;}
.x17{left:220.040000pt;}
.x38{left:260.706667pt;}
.x19{left:262.786667pt;}
.x43{left:276.506667pt;}
.x35{left:278.933333pt;}
.x32{left:281.146667pt;}
.x2c{left:284.826667pt;}
.x33{left:288.666667pt;}
.x31{left:291.386667pt;}
.x2{left:298.225270pt;}
.x13{left:302.266667pt;}
.x3e{left:332.546667pt;}
.x25{left:334.146667pt;}
.x3a{left:367.426667pt;}
.x1b{left:376.706667pt;}
.x3{left:390.041920pt;}
.x5{left:428.751270pt;}
.x3f{left:439.306667pt;}
.x27{left:448.106667pt;}
.x4{left:459.436078pt;}
.x3b{left:478.506667pt;}
.x1d{left:483.786667pt;}
.x6{left:514.324691pt;}
.x40{left:550.346667pt;}
.x28{left:555.146667pt;}
.x7{left:583.718849pt;}
.x3c{left:589.573333pt;}
.x1f{left:595.013333pt;}
.x41{left:661.413333pt;}
.x2a{left:666.373333pt;}
.x10{left:683.173333pt;}
.x8{left:687.093333pt;}
.xa{left:691.173333pt;}
.xe{left:699.333333pt;}
.x12{left:737.093333pt;}
}




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