
    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_da9e94a93952913c20d97ec3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_694537a87d1394f5d287d158.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.040039;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_9ec02877bc963004e3746b8c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_461cdcb6181f08d99607b391.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999512;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_5c3821167798d7dec145628d.woff2')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_81a3e577cb4b13e76b2625b7.woff2')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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_41c9ca7459d86adf25611fdc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_e52fa3c8bd2ae3e4ca6d8b93.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104004;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_67c3948c71b400d60418538a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-22.320000px;}
.v2{vertical-align:-20.160000px;}
.v3{vertical-align:-14.976000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.040000px;}
.v1{vertical-align:34.560000px;}
.v9{vertical-align:36.000000px;}
.v5{vertical-align:53.280000px;}
.v8{vertical-align:68.220000px;}
.v4{vertical-align:78.660000px;}
.ls4{letter-spacing:-10.320000px;}
.ls15{letter-spacing:-1.170000px;}
.ls16{letter-spacing:-1.068000px;}
.ls8{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.341400px;}
.lsc{letter-spacing:-0.319800px;}
.ls9{letter-spacing:-0.306600px;}
.lsb{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.180000px;}
.ls17{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.028080px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.028080px;}
.ls14{letter-spacing:0.037440px;}
.ls0{letter-spacing:0.052560px;}
.ls1a{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.175800px;}
.ls3{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.280200px;}
.ls6{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.306600px;}
.ls2{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.424200px;}
.lse{letter-spacing:30.009600px;}
.lsf{letter-spacing:30.060000px;}
.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;}
}
.ws3{word-spacing:-48.096000px;}
.wsb{word-spacing:-48.060000px;}
.ws20{word-spacing:-36.000000px;}
.ws50{word-spacing:-30.484200px;}
.ws4f{word-spacing:-30.420000px;}
.ws21{word-spacing:-30.366600px;}
.ws4e{word-spacing:-30.340200px;}
.ws2f{word-spacing:-30.096000px;}
.ws2{word-spacing:-30.060000px;}
.ws4d{word-spacing:-29.953200px;}
.ws17{word-spacing:-29.753400px;}
.ws4b{word-spacing:-29.700000px;}
.ws4c{word-spacing:-29.028000px;}
.ws1f{word-spacing:-27.216000px;}
.wsd{word-spacing:-27.211800px;}
.wsc{word-spacing:-27.036000px;}
.ws47{word-spacing:-27.000000px;}
.ws22{word-spacing:-26.784000px;}
.ws24{word-spacing:-24.408000px;}
.ws3c{word-spacing:-23.976000px;}
.ws33{word-spacing:-23.940000px;}
.ws32{word-spacing:-21.420000px;}
.ws30{word-spacing:-21.060000px;}
.ws31{word-spacing:-20.718600px;}
.ws0{word-spacing:-19.080000px;}
.ws13{word-spacing:-4.290624px;}
.ws12{word-spacing:-2.601120px;}
.ws28{word-spacing:-2.588400px;}
.ws1d{word-spacing:-2.364000px;}
.ws2e{word-spacing:-2.304000px;}
.ws16{word-spacing:-2.286720px;}
.ws2a{word-spacing:-2.245680px;}
.ws29{word-spacing:-2.047680px;}
.ws1b{word-spacing:-2.036640px;}
.ws15{word-spacing:-1.980288px;}
.ws2d{word-spacing:-1.881600px;}
.ws1c{word-spacing:-1.620000px;}
.ws25{word-spacing:-1.607040px;}
.ws14{word-spacing:-1.519872px;}
.ws26{word-spacing:-1.375296px;}
.ws9{word-spacing:-1.296000px;}
.ws1e{word-spacing:-1.262640px;}
.ws8{word-spacing:-1.008000px;}
.ws27{word-spacing:-0.837216px;}
.wsa{word-spacing:-0.684000px;}
.ws2c{word-spacing:-0.593280px;}
.ws1{word-spacing:0.000000px;}
.ws2b{word-spacing:0.613080px;}
.ws5{word-spacing:27.108192px;}
.ws1a{word-spacing:28.914960px;}
.ws7{word-spacing:28.915968px;}
.ws6{word-spacing:29.868048px;}
.ws18{word-spacing:29.980320px;}
.ws19{word-spacing:30.780000px;}
.ws4{word-spacing:50.060016px;}
.wse{word-spacing:65.682240px;}
.ws11{word-spacing:65.810640px;}
.ws10{word-spacing:66.008880px;}
.wsf{word-spacing:66.700080px;}
.ws3a{word-spacing:353.995920px;}
.ws41{word-spacing:364.500000px;}
.ws42{word-spacing:374.455920px;}
.ws34{word-spacing:375.900000px;}
.ws3d{word-spacing:375.936000px;}
.ws35{word-spacing:384.240000px;}
.ws36{word-spacing:387.535920px;}
.ws37{word-spacing:395.040000px;}
.ws3e{word-spacing:395.076000px;}
.ws38{word-spacing:398.040000px;}
.ws3f{word-spacing:398.076000px;}
.ws39{word-spacing:425.999520px;}
.ws40{word-spacing:432.825120px;}
.ws3b{word-spacing:436.799520px;}
.ws23{word-spacing:468.888000px;}
.ws46{word-spacing:597.323040px;}
.ws44{word-spacing:629.078160px;}
.ws43{word-spacing:631.252416px;}
.ws4a{word-spacing:635.819280px;}
.ws49{word-spacing:641.604000px;}
.ws45{word-spacing:658.958160px;}
.ws48{word-spacing:661.164000px;}
._9{margin-left:-24.030000px;}
._7{margin-left:-15.288768px;}
._a{margin-left:-14.225760px;}
._8{margin-left:-12.760704px;}
._5{margin-left:-11.475072px;}
._1e{margin-left:-9.828000px;}
._6{margin-left:-8.252736px;}
._b{margin-left:-7.125408px;}
._0{margin-left:-6.012000px;}
._4{margin-left:-4.161024px;}
._2{margin-left:-3.024000px;}
._f{margin-left:-2.016000px;}
._3{margin-left:-1.008000px;}
._1{width:1.224000px;}
._15{width:2.764800px;}
._33{width:4.533984px;}
._31{width:8.489520px;}
._30{width:9.683280px;}
._28{width:12.756240px;}
._29{width:14.176080px;}
._32{width:24.384000px;}
._2d{width:26.032512px;}
._12{width:27.181248px;}
._13{width:28.335744px;}
._10{width:30.391920px;}
._e{width:36.408000px;}
._2a{width:43.869600px;}
._2b{width:45.469440px;}
._2e{width:56.446800px;}
._2f{width:57.878880px;}
._2c{width:64.106496px;}
._c{width:65.232144px;}
._d{width:66.235392px;}
._11{width:95.416128px;}
._1b{width:240.660864px;}
._18{width:398.617632px;}
._19{width:400.499568px;}
._14{width:423.780384px;}
._17{width:438.776160px;}
._21{width:478.656000px;}
._27{width:661.562976px;}
._25{width:674.760000px;}
._1d{width:684.656160px;}
._1c{width:686.396256px;}
._24{width:688.596000px;}
._20{width:689.822400px;}
._22{width:695.460000px;}
._1f{width:702.024720px;}
._26{width:708.180000px;}
._23{width:729.600000px;}
._16{width:758.760480px;}
._1a{width:797.748000px;}
.fc3{color:rgb(31,78,121);}
.fc1{color:rgb(0,32,96);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(64,64,64);}
.fc4{color:rgb(31,31,31);}
.fc2{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:43.920000px;}
.fs14{font-size:54.000000px;}
.fs16{font-size:56.160000px;}
.fs7{font-size:66.240000px;}
.fs6{font-size:66.384000px;}
.fs4{font-size:76.320000px;}
.fs1d{font-size:79.920000px;}
.fs15{font-size:84.240000px;}
.fs17{font-size:84.384000px;}
.fs18{font-size:95.760000px;}
.fs19{font-size:95.904000px;}
.fs0{font-size:108.000000px;}
.fs12{font-size:108.144000px;}
.fs3{font-size:113.760000px;}
.fs9{font-size:120.240000px;}
.fsa{font-size:120.384000px;}
.fsf{font-size:144.000000px;}
.fs11{font-size:144.144000px;}
.fse{font-size:167.760000px;}
.fsd{font-size:167.904000px;}
.fs10{font-size:192.240000px;}
.fsb{font-size:192.384000px;}
.fs2{font-size:198.000000px;}
.fs1{font-size:198.144000px;}
.fsc{font-size:216.000000px;}
.fs8{font-size:216.144000px;}
.fs13{font-size:239.760000px;}
.fs1c{font-size:239.904000px;}
.fs1a{font-size:264.240000px;}
.fs1b{font-size:264.384000px;}
.y0{bottom:0.000000px;}
.yb8{bottom:13.392000px;}
.yb9{bottom:13.896000px;}
.yb7{bottom:16.812000px;}
.yfe{bottom:21.816000px;}
.yae{bottom:29.340000px;}
.yac{bottom:32.760000px;}
.yf8{bottom:43.128000px;}
.y70{bottom:44.532000px;}
.yb5{bottom:46.944000px;}
.yb6{bottom:47.448000px;}
.y113{bottom:48.960000px;}
.yb4{bottom:50.400000px;}
.y15{bottom:52.776000px;}
.ya{bottom:52.848000px;}
.yfd{bottom:57.816000px;}
.ya9{bottom:62.820000px;}
.ya7{bottom:66.240000px;}
.yc4{bottom:70.920000px;}
.y9{bottom:72.648000px;}
.y6f{bottom:73.332000px;}
.yf7{bottom:79.128000px;}
.y63{bottom:80.385000px;}
.y5c{bottom:80.430000px;}
.y65{bottom:80.460000px;}
.y5f{bottom:80.490000px;}
.yb2{bottom:80.496000px;}
.y5a{bottom:80.535000px;}
.yc6{bottom:80.784000px;}
.yb3{bottom:81.000000px;}
.yb1{bottom:83.952000px;}
.yda{bottom:84.600000px;}
.yaf{bottom:84.708000px;}
.yad{bottom:84.744000px;}
.ya4{bottom:84.750000px;}
.y94{bottom:84.780000px;}
.y82{bottom:84.810000px;}
.yaa{bottom:84.816000px;}
.y8a{bottom:84.855000px;}
.y7f{bottom:84.885000px;}
.y7d{bottom:84.930000px;}
.y79{bottom:84.960000px;}
.y84{bottom:84.990000px;}
.yc7{bottom:87.084000px;}
.y8{bottom:92.484000px;}
.ya5{bottom:96.300000px;}
.y47{bottom:98.172000px;}
.y4b{bottom:98.388000px;}
.ya3{bottom:99.900000px;}
.y43{bottom:100.800000px;}
.y6c{bottom:102.420000px;}
.yd8{bottom:103.215000px;}
.yd5{bottom:103.245000px;}
.yc0{bottom:103.290000px;}
.ydb{bottom:103.350000px;}
.yd0{bottom:103.395000px;}
.y112{bottom:112.860000px;}
.yb0{bottom:114.048000px;}
.yf6{bottom:115.164000px;}
.y14{bottom:124.776000px;}
.yfc{bottom:129.852000px;}
.ya1{bottom:129.960000px;}
.y7{bottom:131.184000px;}
.y67{bottom:131.760000px;}
.ya0{bottom:133.380000px;}
.y6e{bottom:133.776000px;}
.ybe{bottom:138.090000px;}
.y3a{bottom:143.676000px;}
.y2b{bottom:145.728000px;}
.y111{bottom:146.160000px;}
.yab{bottom:147.636000px;}
.yf0{bottom:147.672000px;}
.ya8{bottom:151.050000px;}
.yf5{bottom:151.170000px;}
.yd7{bottom:153.540000px;}
.y4d{bottom:154.800000px;}
.y69{bottom:156.030000px;}
.y6b{bottom:156.240000px;}
.y9e{bottom:163.440000px;}
.yc2{bottom:164.340000px;}
.y9d{bottom:166.860000px;}
.yeb{bottom:177.300000px;}
.y110{bottom:178.920000px;}
.yef{bottom:180.075000px;}
.yc5{bottom:180.510000px;}
.ya6{bottom:181.185000px;}
.y68{bottom:181.230000px;}
.y6d{bottom:182.805000px;}
.ydc{bottom:185.910000px;}
.yf4{bottom:187.170000px;}
.y2a{bottom:194.325000px;}
.y13{bottom:196.815000px;}
.y9b{bottom:197.100000px;}
.y36{bottom:197.310000px;}
.y9a{bottom:200.520000px;}
.ye0{bottom:207.390000px;}
.yea{bottom:209.700000px;}
.y10f{bottom:211.350000px;}
.yee{bottom:212.475000px;}
.ya2{bottom:214.740000px;}
.y101{bottom:215.895000px;}
.y21{bottom:218.160000px;}
.yd4{bottom:218.880000px;}
.y6a{bottom:219.960000px;}
.y6{bottom:220.830000px;}
.y57{bottom:222.450000px;}
.y35{bottom:228.990000px;}
.y1b{bottom:230.115000px;}
.y98{bottom:230.580000px;}
.y97{bottom:234.000000px;}
.y33{bottom:236.340000px;}
.ye9{bottom:242.130000px;}
.y40{bottom:242.745000px;}
.y29{bottom:242.925000px;}
.y46{bottom:243.030000px;}
.yed{bottom:244.875000px;}
.y42{bottom:245.550000px;}
.y9f{bottom:248.295000px;}
.yd9{bottom:256.065000px;}
.ybf{bottom:257.760000px;}
.y20{bottom:261.390000px;}
.y95{bottom:264.060000px;}
.y10e{bottom:266.865000px;}
.y93{bottom:267.660000px;}
.y5{bottom:268.380000px;}
.y12{bottom:268.815000px;}
.y100{bottom:269.895000px;}
.y32{bottom:272.340000px;}
.y56{bottom:273.570000px;}
.yc3{bottom:273.930000px;}
.y22{bottom:273.960000px;}
.ye8{bottom:274.530000px;}
.yec{bottom:277.305000px;}
.y9c{bottom:281.880000px;}
.y64{bottom:283.680000px;}
.yd2{bottom:284.220000px;}
.y3d{bottom:291.315000px;}
.y28{bottom:291.570000px;}
.y91{bottom:297.720000px;}
.y90{bottom:301.140000px;}
.y1f{bottom:304.590000px;}
.y11{bottom:304.845000px;}
.y1a{bottom:304.890000px;}
.yf2{bottom:305.100000px;}
.y31{bottom:308.340000px;}
.yfb{bottom:315.825000px;}
.y99{bottom:315.930000px;}
.yd6{bottom:321.450000px;}
.y55{bottom:324.510000px;}
.y8e{bottom:331.200000px;}
.y62{bottom:333.720000px;}
.y8d{bottom:334.260000px;}
.y3c{bottom:334.515000px;}
.y27{bottom:340.170000px;}
.y10{bottom:340.845000px;}
.ybd{bottom:342.540000px;}
.y4{bottom:344.160000px;}
.y30{bottom:344.340000px;}
.ycf{bottom:344.880000px;}
.y96{bottom:349.530000px;}
.y50{bottom:351.105000px;}
.yfa{bottom:351.825000px;}
.ye4{bottom:355.605000px;}
.y8b{bottom:363.960000px;}
.y66{bottom:364.140000px;}
.yc1{bottom:367.350000px;}
.y89{bottom:367.380000px;}
.ye7{bottom:371.625000px;}
.y3{bottom:372.600000px;}
.y54{bottom:375.480000px;}
.yf{bottom:376.845000px;}
.y10d{bottom:377.565000px;}
.y61{bottom:378.180000px;}
.y2f{bottom:380.370000px;}
.y92{bottom:383.070000px;}
.y4f{bottom:383.505000px;}
.yf1{bottom:384.300000px;}
.ydf{bottom:385.710000px;}
.yd3{bottom:386.820000px;}
.ye3{bottom:387.285000px;}
.y41{bottom:387.645000px;}
.yf9{bottom:387.825000px;}
.y26{bottom:390.210000px;}
.y3f{bottom:392.325000px;}
.y45{bottom:392.550000px;}
.y10a{bottom:395.280000px;}
.y87{bottom:397.440000px;}
.y86{bottom:400.860000px;}
.ye6{bottom:403.350000px;}
.ye{bottom:412.845000px;}
.y2e{bottom:416.370000px;}
.y8f{bottom:416.625000px;}
.y5e{bottom:419.040000px;}
.ye2{bottom:419.685000px;}
.y109{bottom:426.240000px;}
.y39{bottom:427.290000px;}
.y83{bottom:430.920000px;}
.y2{bottom:430.950000px;}
.y81{bottom:434.520000px;}
.ye5{bottom:435.750000px;}
.y53{bottom:437.040000px;}
.yd1{bottom:447.585000px;}
.y8c{bottom:449.280000px;}
.ye1{bottom:452.085000px;}
.y2d{bottom:452.370000px;}
.y108{bottom:457.380000px;}
.y1{bottom:460.110000px;}
.y7e{bottom:464.580000px;}
.y5d{bottom:465.120000px;}
.y7c{bottom:468.000000px;}
.y10c{bottom:469.365000px;}
.ybc{bottom:480.630000px;}
.y19{bottom:481.830000px;}
.y38{bottom:482.220000px;}
.y88{bottom:482.865000px;}
.yd{bottom:484.890000px;}
.yce{bottom:493.665000px;}
.y49{bottom:494.715000px;}
.y7a{bottom:498.060000px;}
.y78{bottom:499.140000px;}
.y60{bottom:505.830000px;}
.yca{bottom:509.865000px;}
.y5b{bottom:511.380000px;}
.y37{bottom:514.620000px;}
.y10b{bottom:515.490000px;}
.y85{bottom:515.910000px;}
.y52{bottom:519.945000px;}
.yc9{bottom:525.210000px;}
.ycd{bottom:526.065000px;}
.y3e{bottom:527.475000px;}
.y44{bottom:527.760000px;}
.yde{bottom:529.020000px;}
.y18{bottom:532.260000px;}
.y1e{bottom:532.950000px;}
.y25{bottom:535.575000px;}
.ycb{bottom:542.265000px;}
.y105{bottom:545.400000px;}
.y59{bottom:549.720000px;}
.y80{bottom:549.975000px;}
.yc{bottom:556.890000px;}
.ycc{bottom:558.465000px;}
.y24{bottom:568.005000px;}
.ybb{bottom:571.530000px;}
.y1d{bottom:576.180000px;}
.y107{bottom:576.465000px;}
.y104{bottom:576.570000px;}
.yf3{bottom:579.495000px;}
.y7b{bottom:583.530000px;}
.y103{bottom:607.530000px;}
.y106{bottom:607.605000px;}
.y77{bottom:611.820000px;}
.y4e{bottom:619.200000px;}
.y73{bottom:624.420000px;}
.y72{bottom:636.300000px;}
.y76{bottom:637.020000px;}
.y102{bottom:638.670000px;}
.y16{bottom:649.590000px;}
.y74{bottom:649.620000px;}
.y75{bottom:662.220000px;}
.y58{bottom:670.140000px;}
.y2c{bottom:681.660000px;}
.y4a{bottom:683.430000px;}
.y17{bottom:695.085000px;}
.y3b{bottom:696.090000px;}
.yc8{bottom:697.065000px;}
.ydd{bottom:699.870000px;}
.y4c{bottom:701.175000px;}
.y34{bottom:702.510000px;}
.y1c{bottom:705.420000px;}
.y23{bottom:706.140000px;}
.yff{bottom:711.150000px;}
.yba{bottom:715.140000px;}
.y51{bottom:728.100000px;}
.y71{bottom:729.105000px;}
.yb{bottom:732.420000px;}
.y48{bottom:740.880000px;}
.h9{height:45.724219px;}
.h8{height:45.867445px;}
.h21{height:49.277109px;}
.h20{height:73.915664px;}
.h22{height:74.042016px;}
.h1f{height:74.820586px;}
.h29{height:74.948484px;}
.h4{height:81.369141px;}
.h37{height:81.477633px;}
.h26{height:84.023789px;}
.h24{height:85.052461px;}
.h2e{height:86.039789px;}
.h2a{height:86.063789px;}
.h2c{height:86.183789px;}
.h2d{height:86.310141px;}
.h2{height:89.015625px;}
.h3f{height:93.603516px;}
.h3e{height:93.728320px;}
.h1{height:94.763672px;}
.h15{height:94.890023px;}
.h3{height:95.923828px;}
.h3a{height:96.051727px;}
.h7{height:101.526328px;}
.hd{height:105.503555px;}
.hc{height:105.629906px;}
.h3d{height:106.125117px;}
.hb{height:106.795195px;}
.h1d{height:106.923094px;}
.h16{height:107.419922px;}
.h40{height:107.563148px;}
.h18{height:111.375563px;}
.h34{height:115.380000px;}
.h33{height:118.800000px;}
.h12{height:126.351562px;}
.h14{height:126.477914px;}
.h19{height:127.898438px;}
.h1a{height:128.026336px;}
.h27{height:128.100586px;}
.h11{height:147.199570px;}
.h10{height:147.325922px;}
.h1c{height:149.001680px;}
.h32{height:149.040000px;}
.h31{height:152.460000px;}
.h39{height:164.143828px;}
.h13{height:170.744414px;}
.he{height:170.872313px;}
.h6{height:175.860352px;}
.h5{height:175.988250px;}
.h1e{height:176.580000px;}
.h30{height:182.520000px;}
.h2f{height:185.940000px;}
.h1b{height:186.079922px;}
.h2b{height:186.660000px;}
.h28{height:186.840000px;}
.hf{height:191.847656px;}
.ha{height:191.975555px;}
.h38{height:204.480000px;}
.h17{height:212.950898px;}
.h36{height:226.980000px;}
.h3b{height:234.693633px;}
.h3c{height:234.821531px;}
.h25{height:269.640000px;}
.h35{height:302.580000px;}
.h23{height:352.980000px;}
.h0{height:810.000000px;}
.w6{width:179.820000px;}
.w7{width:259.740000px;}
.w3{width:265.500000px;}
.w2{width:288.360000px;}
.w9{width:334.980000px;}
.w5{width:392.220000px;}
.w8{width:453.420000px;}
.w4{width:553.680000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x59{left:2.700000px;}
.x4c{left:5.112000px;}
.x3c{left:6.765000px;}
.x3a{left:8.130000px;}
.x57{left:18.180000px;}
.x30{left:22.067979px;}
.x17{left:47.663979px;}
.x1b{left:53.747979px;}
.x4b{left:56.340000px;}
.x24{left:68.903979px;}
.x70{left:74.843979px;}
.x37{left:80.099979px;}
.x74{left:82.223979px;}
.x31{left:83.267979px;}
.x1c{left:87.623979px;}
.x58{left:99.000000px;}
.x23{left:104.003979px;}
.x66{left:111.960000px;}
.x15{left:116.207979px;}
.xb{left:130.427979px;}
.x6c{left:132.947979px;}
.xe{left:137.159979px;}
.x11{left:155.414979px;}
.x51{left:168.224979px;}
.xf{left:174.419979px;}
.x42{left:176.189979px;}
.xc{left:184.424979px;}
.x5d{left:188.174979px;}
.x77{left:190.649979px;}
.x5{left:193.169979px;}
.x55{left:195.224979px;}
.x1e{left:222.479979px;}
.x8{left:223.739979px;}
.x9{left:227.519979px;}
.x1f{left:230.039979px;}
.x7{left:234.929979px;}
.x36{left:245.954979px;}
.x10{left:250.844979px;}
.x78{left:283.529979px;}
.x6{left:289.109979px;}
.x35{left:295.199979px;}
.x2a{left:296.789979px;}
.x53{left:308.984979px;}
.x33{left:314.099979px;}
.x34{left:316.619979px;}
.x2d{left:343.184979px;}
.x27{left:356.684979px;}
.x26{left:358.664979px;}
.xa{left:374.324979px;}
.x6b{left:398.414979px;}
.x75{left:406.154979px;}
.x6d{left:421.229979px;}
.x4d{left:448.380000px;}
.x1a{left:457.529979px;}
.x16{left:467.459979px;}
.x6a{left:478.409979px;}
.x52{left:495.029979px;}
.x1d{left:504.689979px;}
.x50{left:506.369979px;}
.x73{left:512.249979px;}
.x2f{left:516.239979px;}
.x4f{left:518.609979px;}
.x68{left:520.304979px;}
.x69{left:524.264979px;}
.x5e{left:525.344979px;}
.x67{left:527.144979px;}
.x3{left:530.999979px;}
.x1{left:534.779979px;}
.x32{left:540.869979px;}
.x22{left:544.289979px;}
.x5c{left:554.114979px;}
.x4{left:561.239979px;}
.x20{left:565.169979px;}
.x41{left:572.294979px;}
.x2{left:578.699979px;}
.x13{left:592.769979px;}
.x21{left:608.009979px;}
.x12{left:619.949979px;}
.x5b{left:622.544979px;}
.x5a{left:630.104979px;}
.x2e{left:633.419979px;}
.xd{left:642.599979px;}
.x18{left:649.829979px;}
.x25{left:661.139979px;}
.x72{left:669.344979px;}
.x4e{left:671.069979px;}
.x29{left:687.674979px;}
.x43{left:695.549979px;}
.x5f{left:701.459979px;}
.x71{left:703.184979px;}
.x60{left:709.739979px;}
.x54{left:720.434979px;}
.x28{left:722.699979px;}
.x39{left:780.840000px;}
.x3e{left:813.269979px;}
.x14{left:827.174979px;}
.x44{left:849.269979px;}
.x45{left:855.749979px;}
.x38{left:871.634979px;}
.x40{left:899.714979px;}
.x76{left:913.859979px;}
.x3f{left:922.214979px;}
.x61{left:930.389979px;}
.x62{left:935.609979px;}
.x6f{left:938.669979px;}
.x6e{left:942.269979px;}
.x19{left:946.799979px;}
.x46{left:1042.304979px;}
.x47{left:1046.444979px;}
.x3b{left:1069.020000px;}
.x56{left:1085.400000px;}
.x3d{left:1091.804979px;}
.x65{left:1149.374979px;}
.x63{left:1160.534979px;}
.x64{left:1179.974979px;}
.x49{left:1210.889979px;}
.x48{left:1245.089979px;}
.x4a{left:1266.869979px;}
.x2b{left:1274.474979px;}
.x2c{left:1277.609979px;}
@media print{
.v7{vertical-align:-19.840000pt;}
.v2{vertical-align:-17.920000pt;}
.v3{vertical-align:-13.312000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.813333pt;}
.v1{vertical-align:30.720000pt;}
.v9{vertical-align:32.000000pt;}
.v5{vertical-align:47.360000pt;}
.v8{vertical-align:60.640000pt;}
.v4{vertical-align:69.920000pt;}
.ls4{letter-spacing:-9.173333pt;}
.ls15{letter-spacing:-1.040000pt;}
.ls16{letter-spacing:-0.949333pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.303467pt;}
.lsc{letter-spacing:-0.284267pt;}
.ls9{letter-spacing:-0.272533pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.160000pt;}
.ls17{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.024960pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.024960pt;}
.ls14{letter-spacing:0.033280pt;}
.ls0{letter-spacing:0.046720pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.156267pt;}
.ls3{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.249067pt;}
.ls6{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.272533pt;}
.ls2{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.377067pt;}
.lse{letter-spacing:26.675200pt;}
.lsf{letter-spacing:26.720000pt;}
.ws3{word-spacing:-42.752000pt;}
.wsb{word-spacing:-42.720000pt;}
.ws20{word-spacing:-32.000000pt;}
.ws50{word-spacing:-27.097067pt;}
.ws4f{word-spacing:-27.040000pt;}
.ws21{word-spacing:-26.992533pt;}
.ws4e{word-spacing:-26.969067pt;}
.ws2f{word-spacing:-26.752000pt;}
.ws2{word-spacing:-26.720000pt;}
.ws4d{word-spacing:-26.625067pt;}
.ws17{word-spacing:-26.447467pt;}
.ws4b{word-spacing:-26.400000pt;}
.ws4c{word-spacing:-25.802667pt;}
.ws1f{word-spacing:-24.192000pt;}
.wsd{word-spacing:-24.188267pt;}
.wsc{word-spacing:-24.032000pt;}
.ws47{word-spacing:-24.000000pt;}
.ws22{word-spacing:-23.808000pt;}
.ws24{word-spacing:-21.696000pt;}
.ws3c{word-spacing:-21.312000pt;}
.ws33{word-spacing:-21.280000pt;}
.ws32{word-spacing:-19.040000pt;}
.ws30{word-spacing:-18.720000pt;}
.ws31{word-spacing:-18.416533pt;}
.ws0{word-spacing:-16.960000pt;}
.ws13{word-spacing:-3.813888pt;}
.ws12{word-spacing:-2.312107pt;}
.ws28{word-spacing:-2.300800pt;}
.ws1d{word-spacing:-2.101333pt;}
.ws2e{word-spacing:-2.048000pt;}
.ws16{word-spacing:-2.032640pt;}
.ws2a{word-spacing:-1.996160pt;}
.ws29{word-spacing:-1.820160pt;}
.ws1b{word-spacing:-1.810347pt;}
.ws15{word-spacing:-1.760256pt;}
.ws2d{word-spacing:-1.672533pt;}
.ws1c{word-spacing:-1.440000pt;}
.ws25{word-spacing:-1.428480pt;}
.ws14{word-spacing:-1.350997pt;}
.ws26{word-spacing:-1.222485pt;}
.ws9{word-spacing:-1.152000pt;}
.ws1e{word-spacing:-1.122347pt;}
.ws8{word-spacing:-0.896000pt;}
.ws27{word-spacing:-0.744192pt;}
.wsa{word-spacing:-0.608000pt;}
.ws2c{word-spacing:-0.527360pt;}
.ws1{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.544960pt;}
.ws5{word-spacing:24.096171pt;}
.ws1a{word-spacing:25.702187pt;}
.ws7{word-spacing:25.703083pt;}
.ws6{word-spacing:26.549376pt;}
.ws18{word-spacing:26.649173pt;}
.ws19{word-spacing:27.360000pt;}
.ws4{word-spacing:44.497792pt;}
.wse{word-spacing:58.384213pt;}
.ws11{word-spacing:58.498347pt;}
.ws10{word-spacing:58.674560pt;}
.wsf{word-spacing:59.288960pt;}
.ws3a{word-spacing:314.663040pt;}
.ws41{word-spacing:324.000000pt;}
.ws42{word-spacing:332.849707pt;}
.ws34{word-spacing:334.133333pt;}
.ws3d{word-spacing:334.165333pt;}
.ws35{word-spacing:341.546667pt;}
.ws36{word-spacing:344.476373pt;}
.ws37{word-spacing:351.146667pt;}
.ws3e{word-spacing:351.178667pt;}
.ws38{word-spacing:353.813333pt;}
.ws3f{word-spacing:353.845333pt;}
.ws39{word-spacing:378.666240pt;}
.ws40{word-spacing:384.733440pt;}
.ws3b{word-spacing:388.266240pt;}
.ws23{word-spacing:416.789333pt;}
.ws46{word-spacing:530.953813pt;}
.ws44{word-spacing:559.180587pt;}
.ws43{word-spacing:561.113259pt;}
.ws4a{word-spacing:565.172693pt;}
.ws49{word-spacing:570.314667pt;}
.ws45{word-spacing:585.740587pt;}
.ws48{word-spacing:587.701333pt;}
._9{margin-left:-21.360000pt;}
._7{margin-left:-13.590016pt;}
._a{margin-left:-12.645120pt;}
._8{margin-left:-11.342848pt;}
._5{margin-left:-10.200064pt;}
._1e{margin-left:-8.736000pt;}
._6{margin-left:-7.335765pt;}
._b{margin-left:-6.333696pt;}
._0{margin-left:-5.344000pt;}
._4{margin-left:-3.698688pt;}
._2{margin-left:-2.688000pt;}
._f{margin-left:-1.792000pt;}
._3{margin-left:-0.896000pt;}
._1{width:1.088000pt;}
._15{width:2.457600pt;}
._33{width:4.030208pt;}
._31{width:7.546240pt;}
._30{width:8.607360pt;}
._28{width:11.338880pt;}
._29{width:12.600960pt;}
._32{width:21.674667pt;}
._2d{width:23.140011pt;}
._12{width:24.161109pt;}
._13{width:25.187328pt;}
._10{width:27.015040pt;}
._e{width:32.362667pt;}
._2a{width:38.995200pt;}
._2b{width:40.417280pt;}
._2e{width:50.174933pt;}
._2f{width:51.447893pt;}
._2c{width:56.983552pt;}
._c{width:57.984128pt;}
._d{width:58.875904pt;}
._11{width:84.814336pt;}
._1b{width:213.920768pt;}
._18{width:354.326784pt;}
._19{width:355.999616pt;}
._14{width:376.693675pt;}
._17{width:390.023253pt;}
._21{width:425.472000pt;}
._27{width:588.055979pt;}
._25{width:599.786667pt;}
._1d{width:608.583253pt;}
._1c{width:610.130005pt;}
._24{width:612.085333pt;}
._20{width:613.175467pt;}
._22{width:618.186667pt;}
._1f{width:624.021973pt;}
._26{width:629.493333pt;}
._23{width:648.533333pt;}
._16{width:674.453760pt;}
._1a{width:709.109333pt;}
.fs5{font-size:39.040000pt;}
.fs14{font-size:48.000000pt;}
.fs16{font-size:49.920000pt;}
.fs7{font-size:58.880000pt;}
.fs6{font-size:59.008000pt;}
.fs4{font-size:67.840000pt;}
.fs1d{font-size:71.040000pt;}
.fs15{font-size:74.880000pt;}
.fs17{font-size:75.008000pt;}
.fs18{font-size:85.120000pt;}
.fs19{font-size:85.248000pt;}
.fs0{font-size:96.000000pt;}
.fs12{font-size:96.128000pt;}
.fs3{font-size:101.120000pt;}
.fs9{font-size:106.880000pt;}
.fsa{font-size:107.008000pt;}
.fsf{font-size:128.000000pt;}
.fs11{font-size:128.128000pt;}
.fse{font-size:149.120000pt;}
.fsd{font-size:149.248000pt;}
.fs10{font-size:170.880000pt;}
.fsb{font-size:171.008000pt;}
.fs2{font-size:176.000000pt;}
.fs1{font-size:176.128000pt;}
.fsc{font-size:192.000000pt;}
.fs8{font-size:192.128000pt;}
.fs13{font-size:213.120000pt;}
.fs1c{font-size:213.248000pt;}
.fs1a{font-size:234.880000pt;}
.fs1b{font-size:235.008000pt;}
.y0{bottom:0.000000pt;}
.yb8{bottom:11.904000pt;}
.yb9{bottom:12.352000pt;}
.yb7{bottom:14.944000pt;}
.yfe{bottom:19.392000pt;}
.yae{bottom:26.080000pt;}
.yac{bottom:29.120000pt;}
.yf8{bottom:38.336000pt;}
.y70{bottom:39.584000pt;}
.yb5{bottom:41.728000pt;}
.yb6{bottom:42.176000pt;}
.y113{bottom:43.520000pt;}
.yb4{bottom:44.800000pt;}
.y15{bottom:46.912000pt;}
.ya{bottom:46.976000pt;}
.yfd{bottom:51.392000pt;}
.ya9{bottom:55.840000pt;}
.ya7{bottom:58.880000pt;}
.yc4{bottom:63.040000pt;}
.y9{bottom:64.576000pt;}
.y6f{bottom:65.184000pt;}
.yf7{bottom:70.336000pt;}
.y63{bottom:71.453333pt;}
.y5c{bottom:71.493333pt;}
.y65{bottom:71.520000pt;}
.y5f{bottom:71.546667pt;}
.yb2{bottom:71.552000pt;}
.y5a{bottom:71.586667pt;}
.yc6{bottom:71.808000pt;}
.yb3{bottom:72.000000pt;}
.yb1{bottom:74.624000pt;}
.yda{bottom:75.200000pt;}
.yaf{bottom:75.296000pt;}
.yad{bottom:75.328000pt;}
.ya4{bottom:75.333333pt;}
.y94{bottom:75.360000pt;}
.y82{bottom:75.386667pt;}
.yaa{bottom:75.392000pt;}
.y8a{bottom:75.426667pt;}
.y7f{bottom:75.453333pt;}
.y7d{bottom:75.493333pt;}
.y79{bottom:75.520000pt;}
.y84{bottom:75.546667pt;}
.yc7{bottom:77.408000pt;}
.y8{bottom:82.208000pt;}
.ya5{bottom:85.600000pt;}
.y47{bottom:87.264000pt;}
.y4b{bottom:87.456000pt;}
.ya3{bottom:88.800000pt;}
.y43{bottom:89.600000pt;}
.y6c{bottom:91.040000pt;}
.yd8{bottom:91.746667pt;}
.yd5{bottom:91.773333pt;}
.yc0{bottom:91.813333pt;}
.ydb{bottom:91.866667pt;}
.yd0{bottom:91.906667pt;}
.y112{bottom:100.320000pt;}
.yb0{bottom:101.376000pt;}
.yf6{bottom:102.368000pt;}
.y14{bottom:110.912000pt;}
.yfc{bottom:115.424000pt;}
.ya1{bottom:115.520000pt;}
.y7{bottom:116.608000pt;}
.y67{bottom:117.120000pt;}
.ya0{bottom:118.560000pt;}
.y6e{bottom:118.912000pt;}
.ybe{bottom:122.746667pt;}
.y3a{bottom:127.712000pt;}
.y2b{bottom:129.536000pt;}
.y111{bottom:129.920000pt;}
.yab{bottom:131.232000pt;}
.yf0{bottom:131.264000pt;}
.ya8{bottom:134.266667pt;}
.yf5{bottom:134.373333pt;}
.yd7{bottom:136.480000pt;}
.y4d{bottom:137.600000pt;}
.y69{bottom:138.693333pt;}
.y6b{bottom:138.880000pt;}
.y9e{bottom:145.280000pt;}
.yc2{bottom:146.080000pt;}
.y9d{bottom:148.320000pt;}
.yeb{bottom:157.600000pt;}
.y110{bottom:159.040000pt;}
.yef{bottom:160.066667pt;}
.yc5{bottom:160.453333pt;}
.ya6{bottom:161.053333pt;}
.y68{bottom:161.093333pt;}
.y6d{bottom:162.493333pt;}
.ydc{bottom:165.253333pt;}
.yf4{bottom:166.373333pt;}
.y2a{bottom:172.733333pt;}
.y13{bottom:174.946667pt;}
.y9b{bottom:175.200000pt;}
.y36{bottom:175.386667pt;}
.y9a{bottom:178.240000pt;}
.ye0{bottom:184.346667pt;}
.yea{bottom:186.400000pt;}
.y10f{bottom:187.866667pt;}
.yee{bottom:188.866667pt;}
.ya2{bottom:190.880000pt;}
.y101{bottom:191.906667pt;}
.y21{bottom:193.920000pt;}
.yd4{bottom:194.560000pt;}
.y6a{bottom:195.520000pt;}
.y6{bottom:196.293333pt;}
.y57{bottom:197.733333pt;}
.y35{bottom:203.546667pt;}
.y1b{bottom:204.546667pt;}
.y98{bottom:204.960000pt;}
.y97{bottom:208.000000pt;}
.y33{bottom:210.080000pt;}
.ye9{bottom:215.226667pt;}
.y40{bottom:215.773333pt;}
.y29{bottom:215.933333pt;}
.y46{bottom:216.026667pt;}
.yed{bottom:217.666667pt;}
.y42{bottom:218.266667pt;}
.y9f{bottom:220.706667pt;}
.yd9{bottom:227.613333pt;}
.ybf{bottom:229.120000pt;}
.y20{bottom:232.346667pt;}
.y95{bottom:234.720000pt;}
.y10e{bottom:237.213333pt;}
.y93{bottom:237.920000pt;}
.y5{bottom:238.560000pt;}
.y12{bottom:238.946667pt;}
.y100{bottom:239.906667pt;}
.y32{bottom:242.080000pt;}
.y56{bottom:243.173333pt;}
.yc3{bottom:243.493333pt;}
.y22{bottom:243.520000pt;}
.ye8{bottom:244.026667pt;}
.yec{bottom:246.493333pt;}
.y9c{bottom:250.560000pt;}
.y64{bottom:252.160000pt;}
.yd2{bottom:252.640000pt;}
.y3d{bottom:258.946667pt;}
.y28{bottom:259.173333pt;}
.y91{bottom:264.640000pt;}
.y90{bottom:267.680000pt;}
.y1f{bottom:270.746667pt;}
.y11{bottom:270.973333pt;}
.y1a{bottom:271.013333pt;}
.yf2{bottom:271.200000pt;}
.y31{bottom:274.080000pt;}
.yfb{bottom:280.733333pt;}
.y99{bottom:280.826667pt;}
.yd6{bottom:285.733333pt;}
.y55{bottom:288.453333pt;}
.y8e{bottom:294.400000pt;}
.y62{bottom:296.640000pt;}
.y8d{bottom:297.120000pt;}
.y3c{bottom:297.346667pt;}
.y27{bottom:302.373333pt;}
.y10{bottom:302.973333pt;}
.ybd{bottom:304.480000pt;}
.y4{bottom:305.920000pt;}
.y30{bottom:306.080000pt;}
.ycf{bottom:306.560000pt;}
.y96{bottom:310.693333pt;}
.y50{bottom:312.093333pt;}
.yfa{bottom:312.733333pt;}
.ye4{bottom:316.093333pt;}
.y8b{bottom:323.520000pt;}
.y66{bottom:323.680000pt;}
.yc1{bottom:326.533333pt;}
.y89{bottom:326.560000pt;}
.ye7{bottom:330.333333pt;}
.y3{bottom:331.200000pt;}
.y54{bottom:333.760000pt;}
.yf{bottom:334.973333pt;}
.y10d{bottom:335.613333pt;}
.y61{bottom:336.160000pt;}
.y2f{bottom:338.106667pt;}
.y92{bottom:340.506667pt;}
.y4f{bottom:340.893333pt;}
.yf1{bottom:341.600000pt;}
.ydf{bottom:342.853333pt;}
.yd3{bottom:343.840000pt;}
.ye3{bottom:344.253333pt;}
.y41{bottom:344.573333pt;}
.yf9{bottom:344.733333pt;}
.y26{bottom:346.853333pt;}
.y3f{bottom:348.733333pt;}
.y45{bottom:348.933333pt;}
.y10a{bottom:351.360000pt;}
.y87{bottom:353.280000pt;}
.y86{bottom:356.320000pt;}
.ye6{bottom:358.533333pt;}
.ye{bottom:366.973333pt;}
.y2e{bottom:370.106667pt;}
.y8f{bottom:370.333333pt;}
.y5e{bottom:372.480000pt;}
.ye2{bottom:373.053333pt;}
.y109{bottom:378.880000pt;}
.y39{bottom:379.813333pt;}
.y83{bottom:383.040000pt;}
.y2{bottom:383.066667pt;}
.y81{bottom:386.240000pt;}
.ye5{bottom:387.333333pt;}
.y53{bottom:388.480000pt;}
.yd1{bottom:397.853333pt;}
.y8c{bottom:399.360000pt;}
.ye1{bottom:401.853333pt;}
.y2d{bottom:402.106667pt;}
.y108{bottom:406.560000pt;}
.y1{bottom:408.986667pt;}
.y7e{bottom:412.960000pt;}
.y5d{bottom:413.440000pt;}
.y7c{bottom:416.000000pt;}
.y10c{bottom:417.213333pt;}
.ybc{bottom:427.226667pt;}
.y19{bottom:428.293333pt;}
.y38{bottom:428.640000pt;}
.y88{bottom:429.213333pt;}
.yd{bottom:431.013333pt;}
.yce{bottom:438.813333pt;}
.y49{bottom:439.746667pt;}
.y7a{bottom:442.720000pt;}
.y78{bottom:443.680000pt;}
.y60{bottom:449.626667pt;}
.yca{bottom:453.213333pt;}
.y5b{bottom:454.560000pt;}
.y37{bottom:457.440000pt;}
.y10b{bottom:458.213333pt;}
.y85{bottom:458.586667pt;}
.y52{bottom:462.173333pt;}
.yc9{bottom:466.853333pt;}
.ycd{bottom:467.613333pt;}
.y3e{bottom:468.866667pt;}
.y44{bottom:469.120000pt;}
.yde{bottom:470.240000pt;}
.y18{bottom:473.120000pt;}
.y1e{bottom:473.733333pt;}
.y25{bottom:476.066667pt;}
.ycb{bottom:482.013333pt;}
.y105{bottom:484.800000pt;}
.y59{bottom:488.640000pt;}
.y80{bottom:488.866667pt;}
.yc{bottom:495.013333pt;}
.ycc{bottom:496.413333pt;}
.y24{bottom:504.893333pt;}
.ybb{bottom:508.026667pt;}
.y1d{bottom:512.160000pt;}
.y107{bottom:512.413333pt;}
.y104{bottom:512.506667pt;}
.yf3{bottom:515.106667pt;}
.y7b{bottom:518.693333pt;}
.y103{bottom:540.026667pt;}
.y106{bottom:540.093333pt;}
.y77{bottom:543.840000pt;}
.y4e{bottom:550.400000pt;}
.y73{bottom:555.040000pt;}
.y72{bottom:565.600000pt;}
.y76{bottom:566.240000pt;}
.y102{bottom:567.706667pt;}
.y16{bottom:577.413333pt;}
.y74{bottom:577.440000pt;}
.y75{bottom:588.640000pt;}
.y58{bottom:595.680000pt;}
.y2c{bottom:605.920000pt;}
.y4a{bottom:607.493333pt;}
.y17{bottom:617.853333pt;}
.y3b{bottom:618.746667pt;}
.yc8{bottom:619.613333pt;}
.ydd{bottom:622.106667pt;}
.y4c{bottom:623.266667pt;}
.y34{bottom:624.453333pt;}
.y1c{bottom:627.040000pt;}
.y23{bottom:627.680000pt;}
.yff{bottom:632.133333pt;}
.yba{bottom:635.680000pt;}
.y51{bottom:647.200000pt;}
.y71{bottom:648.093333pt;}
.yb{bottom:651.040000pt;}
.y48{bottom:658.560000pt;}
.h9{height:40.643750pt;}
.h8{height:40.771063pt;}
.h21{height:43.801875pt;}
.h20{height:65.702812pt;}
.h22{height:65.815125pt;}
.h1f{height:66.507188pt;}
.h29{height:66.620875pt;}
.h4{height:72.328125pt;}
.h37{height:72.424562pt;}
.h26{height:74.687812pt;}
.h24{height:75.602187pt;}
.h2e{height:76.479812pt;}
.h2a{height:76.501146pt;}
.h2c{height:76.607813pt;}
.h2d{height:76.720125pt;}
.h2{height:79.125000pt;}
.h3f{height:83.203125pt;}
.h3e{height:83.314062pt;}
.h1{height:84.234375pt;}
.h15{height:84.346688pt;}
.h3{height:85.265625pt;}
.h3a{height:85.379312pt;}
.h7{height:90.245625pt;}
.hd{height:93.780937pt;}
.hc{height:93.893250pt;}
.h3d{height:94.333437pt;}
.hb{height:94.929063pt;}
.h1d{height:95.042750pt;}
.h16{height:95.484375pt;}
.h40{height:95.611688pt;}
.h18{height:99.000500pt;}
.h34{height:102.560000pt;}
.h33{height:105.600000pt;}
.h12{height:112.312500pt;}
.h14{height:112.424813pt;}
.h19{height:113.687500pt;}
.h1a{height:113.801187pt;}
.h27{height:113.867188pt;}
.h11{height:130.844062pt;}
.h10{height:130.956375pt;}
.h1c{height:132.445937pt;}
.h32{height:132.480000pt;}
.h31{height:135.520000pt;}
.h39{height:145.905625pt;}
.h13{height:151.772812pt;}
.he{height:151.886500pt;}
.h6{height:156.320312pt;}
.h5{height:156.434000pt;}
.h1e{height:156.960000pt;}
.h30{height:162.240000pt;}
.h2f{height:165.280000pt;}
.h1b{height:165.404375pt;}
.h2b{height:165.920000pt;}
.h28{height:166.080000pt;}
.hf{height:170.531250pt;}
.ha{height:170.644937pt;}
.h38{height:181.760000pt;}
.h17{height:189.289687pt;}
.h36{height:201.760000pt;}
.h3b{height:208.616562pt;}
.h3c{height:208.730250pt;}
.h25{height:239.680000pt;}
.h35{height:268.960000pt;}
.h23{height:313.760000pt;}
.h0{height:720.000000pt;}
.w6{width:159.840000pt;}
.w7{width:230.880000pt;}
.w3{width:236.000000pt;}
.w2{width:256.320000pt;}
.w9{width:297.760000pt;}
.w5{width:348.640000pt;}
.w8{width:403.040000pt;}
.w4{width:492.160000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x59{left:2.400000pt;}
.x4c{left:4.544000pt;}
.x3c{left:6.013333pt;}
.x3a{left:7.226667pt;}
.x57{left:16.160000pt;}
.x30{left:19.615981pt;}
.x17{left:42.367981pt;}
.x1b{left:47.775981pt;}
.x4b{left:50.080000pt;}
.x24{left:61.247981pt;}
.x70{left:66.527981pt;}
.x37{left:71.199981pt;}
.x74{left:73.087981pt;}
.x31{left:74.015981pt;}
.x1c{left:77.887981pt;}
.x58{left:88.000000pt;}
.x23{left:92.447981pt;}
.x66{left:99.520000pt;}
.x15{left:103.295981pt;}
.xb{left:115.935981pt;}
.x6c{left:118.175981pt;}
.xe{left:121.919981pt;}
.x11{left:138.146648pt;}
.x51{left:149.533314pt;}
.xf{left:155.039981pt;}
.x42{left:156.613314pt;}
.xc{left:163.933314pt;}
.x5d{left:167.266648pt;}
.x77{left:169.466648pt;}
.x5{left:171.706648pt;}
.x55{left:173.533314pt;}
.x1e{left:197.759981pt;}
.x8{left:198.879981pt;}
.x9{left:202.239981pt;}
.x1f{left:204.479981pt;}
.x7{left:208.826648pt;}
.x36{left:218.626648pt;}
.x10{left:222.973314pt;}
.x78{left:252.026648pt;}
.x6{left:256.986648pt;}
.x35{left:262.399981pt;}
.x2a{left:263.813314pt;}
.x53{left:274.653314pt;}
.x33{left:279.199981pt;}
.x34{left:281.439981pt;}
.x2d{left:305.053314pt;}
.x27{left:317.053314pt;}
.x26{left:318.813314pt;}
.xa{left:332.733314pt;}
.x6b{left:354.146648pt;}
.x75{left:361.026648pt;}
.x6d{left:374.426648pt;}
.x4d{left:398.560000pt;}
.x1a{left:406.693314pt;}
.x16{left:415.519981pt;}
.x6a{left:425.253314pt;}
.x52{left:440.026648pt;}
.x1d{left:448.613314pt;}
.x50{left:450.106648pt;}
.x73{left:455.333314pt;}
.x2f{left:458.879981pt;}
.x4f{left:460.986648pt;}
.x68{left:462.493314pt;}
.x69{left:466.013314pt;}
.x5e{left:466.973314pt;}
.x67{left:468.573314pt;}
.x3{left:471.999981pt;}
.x1{left:475.359981pt;}
.x32{left:480.773314pt;}
.x22{left:483.813314pt;}
.x5c{left:492.546648pt;}
.x4{left:498.879981pt;}
.x20{left:502.373314pt;}
.x41{left:508.706648pt;}
.x2{left:514.399981pt;}
.x13{left:526.906648pt;}
.x21{left:540.453314pt;}
.x12{left:551.066648pt;}
.x5b{left:553.373314pt;}
.x5a{left:560.093314pt;}
.x2e{left:563.039981pt;}
.xd{left:571.199981pt;}
.x18{left:577.626648pt;}
.x25{left:587.679981pt;}
.x72{left:594.973314pt;}
.x4e{left:596.506648pt;}
.x29{left:611.266648pt;}
.x43{left:618.266648pt;}
.x5f{left:623.519981pt;}
.x71{left:625.053314pt;}
.x60{left:630.879981pt;}
.x54{left:640.386648pt;}
.x28{left:642.399981pt;}
.x39{left:694.080000pt;}
.x3e{left:722.906648pt;}
.x14{left:735.266648pt;}
.x44{left:754.906648pt;}
.x45{left:760.666648pt;}
.x38{left:774.786648pt;}
.x40{left:799.746648pt;}
.x76{left:812.319981pt;}
.x3f{left:819.746648pt;}
.x61{left:827.013314pt;}
.x62{left:831.653314pt;}
.x6f{left:834.373314pt;}
.x6e{left:837.573314pt;}
.x19{left:841.599981pt;}
.x46{left:926.493314pt;}
.x47{left:930.173314pt;}
.x3b{left:950.240000pt;}
.x56{left:964.800000pt;}
.x3d{left:970.493314pt;}
.x65{left:1021.666648pt;}
.x63{left:1031.586648pt;}
.x64{left:1048.866648pt;}
.x49{left:1076.346648pt;}
.x48{left:1106.746648pt;}
.x4a{left:1126.106648pt;}
.x2b{left:1132.866648pt;}
.x2c{left:1135.653314pt;}
}




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