
    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_040a945d768f565d81552ec0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.867676;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_e7127b0dc33695ac0d34afb2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.677734;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_e5919619700faf000503addf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_165da7d98a2809ab2cc99314.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c66306efabf01cedec7874fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.675781;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_e6aa29b90a48b3eeaccc1ef4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1e8e2b717c2fbea85dcd1c5c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4b875fe076899bbeb90c0404.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5b8a2ca78bfe7f33e8d65bf7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.871094;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_470fa29eac722939ae71377c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.689453;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_d463684912737839deb18668.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_22943180696beca472c50d80.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e33b8eb97b635635256d0cba.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.844727;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_55219717c22d145b1b2460ea.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.895996;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:fff;src:url('chunks/assets/font_3588134f90c73fa11ea1dfc0.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_1e34450a39632ac1b503dbdb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls32{letter-spacing:-0.447552px;}
.ls24{letter-spacing:-0.411264px;}
.ls37{letter-spacing:-0.393120px;}
.ls49{letter-spacing:-0.347328px;}
.ls45{letter-spacing:-0.342144px;}
.ls2c{letter-spacing:-0.338688px;}
.ls28{letter-spacing:-0.332640px;}
.ls46{letter-spacing:-0.310464px;}
.ls30{letter-spacing:-0.308448px;}
.ls29{letter-spacing:-0.302400px;}
.ls33{letter-spacing:-0.296352px;}
.ls23{letter-spacing:-0.278208px;}
.ls36{letter-spacing:-0.272160px;}
.ls3f{letter-spacing:-0.266112px;}
.ls2f{letter-spacing:-0.260064px;}
.ls27{letter-spacing:-0.254016px;}
.ls3a{letter-spacing:-0.253440px;}
.ls25{letter-spacing:-0.247968px;}
.ls2e{letter-spacing:-0.241920px;}
.ls3c{letter-spacing:-0.234432px;}
.ls47{letter-spacing:-0.221760px;}
.ls26{letter-spacing:-0.217728px;}
.ls44{letter-spacing:-0.215424px;}
.ls38{letter-spacing:-0.211680px;}
.ls15{letter-spacing:-0.205344px;}
.ls42{letter-spacing:-0.196416px;}
.ls2b{letter-spacing:-0.193536px;}
.ls1c{letter-spacing:-0.192096px;}
.ls3d{letter-spacing:-0.190080px;}
.ls31{letter-spacing:-0.187488px;}
.ls3e{letter-spacing:-0.177408px;}
.ls2a{letter-spacing:-0.175392px;}
.ls40{letter-spacing:-0.164736px;}
.ls39{letter-spacing:-0.163296px;}
.ls3b{letter-spacing:-0.158400px;}
.ls43{letter-spacing:-0.152064px;}
.ls18{letter-spacing:-0.145728px;}
.ls35{letter-spacing:-0.133056px;}
.ls4a{letter-spacing:-0.132480px;}
.ls19{letter-spacing:-0.125856px;}
.ls2d{letter-spacing:-0.120960px;}
.ls1a{letter-spacing:-0.119232px;}
.ls17{letter-spacing:-0.112608px;}
.ls1e{letter-spacing:-0.105984px;}
.ls1b{letter-spacing:-0.099360px;}
.ls41{letter-spacing:-0.095040px;}
.ls16{letter-spacing:-0.092736px;}
.ls1f{letter-spacing:-0.086112px;}
.ls34{letter-spacing:-0.078624px;}
.ls1d{letter-spacing:-0.059616px;}
.lsd{letter-spacing:-0.036000px;}
.lse{letter-spacing:-0.028800px;}
.lsf{letter-spacing:-0.021600px;}
.ls14{letter-spacing:-0.014400px;}
.ls13{letter-spacing:-0.007200px;}
.lsc{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.007200px;}
.ls6{letter-spacing:0.010080px;}
.ls8{letter-spacing:0.011520px;}
.ls5{letter-spacing:0.014400px;}
.ls12{letter-spacing:0.021600px;}
.ls11{letter-spacing:0.028800px;}
.ls10{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.215136px;}
.ls2{letter-spacing:2.091168px;}
.ls3{letter-spacing:2.091312px;}
.ls7{letter-spacing:2.092320px;}
.ls4{letter-spacing:2.093760px;}
.lsb{letter-spacing:7.152480px;}
.ls1{letter-spacing:18.983520px;}
.ls48{letter-spacing:33.315984px;}
.ls20{letter-spacing:54.866880px;}
.lsa{letter-spacing:59.227920px;}
.ls21{letter-spacing:847.728000px;}
.ls22{letter-spacing:850.331520px;}
.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;}
}
.ws2{word-spacing:-16.300800px;}
.ws3{word-spacing:-16.293600px;}
.ws0{word-spacing:-16.272000px;}
.ws4{word-spacing:-16.264800px;}
.ws5{word-spacing:-16.257600px;}
.ws1{word-spacing:-16.250400px;}
.ws8{word-spacing:-14.870880px;}
.ws28{word-spacing:-14.857632px;}
.ws29{word-spacing:-14.837760px;}
.ws7{word-spacing:-14.778144px;}
.ws23{word-spacing:-14.319360px;}
.ws25{word-spacing:-14.224320px;}
.ws1e{word-spacing:-14.186304px;}
.ws27{word-spacing:-14.160960px;}
.ws24{word-spacing:-14.154624px;}
.ws21{word-spacing:-14.141952px;}
.ws20{word-spacing:-14.129280px;}
.ws26{word-spacing:-14.122944px;}
.ws1f{word-spacing:-14.084928px;}
.ws22{word-spacing:-14.053248px;}
.wse{word-spacing:-13.668480px;}
.ws19{word-spacing:-13.589856px;}
.wsf{word-spacing:-13.547520px;}
.ws1a{word-spacing:-13.535424px;}
.ws1c{word-spacing:-13.505184px;}
.ws14{word-spacing:-13.480992px;}
.ws13{word-spacing:-13.474944px;}
.ws1b{word-spacing:-13.450752px;}
.ws10{word-spacing:-13.426560px;}
.wsc{word-spacing:-13.420512px;}
.wsd{word-spacing:-13.414464px;}
.ws12{word-spacing:-13.408416px;}
.ws11{word-spacing:-13.390272px;}
.ws18{word-spacing:-13.372128px;}
.ws17{word-spacing:-13.366080px;}
.ws16{word-spacing:-13.360032px;}
.ws1d{word-spacing:-13.329792px;}
.wsb{word-spacing:-13.257216px;}
.ws15{word-spacing:-13.220928px;}
.wsa{word-spacing:-0.072000px;}
.ws6{word-spacing:-0.066240px;}
.ws9{word-spacing:0.000000px;}
._a{margin-left:-1.000800px;}
._3{width:1.800720px;}
._4{width:2.958480px;}
._5{width:4.156560px;}
._7{width:5.256000px;}
._6{width:6.264000px;}
._e{width:7.353648px;}
._d{width:8.431920px;}
._0{width:9.598032px;}
._c{width:10.994400px;}
._8{width:12.002400px;}
._f{width:13.813488px;}
._14{width:15.156000px;}
._10{width:17.438400px;}
._2{width:18.943200px;}
._1{width:20.404800px;}
._9{width:22.291200px;}
._12{width:23.853600px;}
._18{width:25.797600px;}
._17{width:30.276000px;}
._11{width:31.456800px;}
._b{width:37.137600px;}
._13{width:45.194400px;}
._15{width:57.204000px;}
._16{width:847.728000px;}
.fc3{color:rgb(150,96,125);}
.fc2{color:rgb(15,71,97);}
.fc1{color:rgb(21,96,130);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:60.480000px;}
.fs6{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.fs3{font-size:96.480000px;}
.fs0{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y86{bottom:6.300000px;}
.yb4{bottom:6.420000px;}
.ye7{bottom:6.480000px;}
.y98{bottom:6.720000px;}
.yc3{bottom:6.780000px;}
.y6a{bottom:6.840000px;}
.y88{bottom:6.900000px;}
.y79{bottom:6.960000px;}
.yb6{bottom:7.020000px;}
.y6c{bottom:7.080000px;}
.y8a{bottom:7.140000px;}
.y7b{bottom:7.200000px;}
.yb8{bottom:7.260000px;}
.y6e{bottom:7.320000px;}
.y8c{bottom:7.380000px;}
.y7d{bottom:7.440000px;}
.yba{bottom:7.500000px;}
.y70{bottom:7.560000px;}
.y8e{bottom:7.620000px;}
.ya7{bottom:7.680000px;}
.y68{bottom:7.740000px;}
.y72{bottom:7.800000px;}
.y90{bottom:7.860000px;}
.ya9{bottom:7.920000px;}
.y96{bottom:7.980000px;}
.y74{bottom:8.040000px;}
.y92{bottom:8.100000px;}
.ydc{bottom:8.160000px;}
.ycd{bottom:8.220000px;}
.yd5{bottom:8.280000px;}
.yf5{bottom:8.340000px;}
.yd0{bottom:8.400000px;}
.yd8{bottom:8.460000px;}
.y108{bottom:8.520000px;}
.y110{bottom:8.580000px;}
.y102{bottom:8.640000px;}
.y10a{bottom:8.700000px;}
.yfd{bottom:8.760000px;}
.y105{bottom:8.820000px;}
.ya2{bottom:25.680000px;}
.ye5{bottom:26.040000px;}
.y9a{bottom:26.460000px;}
.yde{bottom:26.820000px;}
.y26{bottom:113.040000px;}
.yf2{bottom:126.000000px;}
.y25{bottom:133.200000px;}
.yf1{bottom:150.000000px;}
.yd3{bottom:155.880000px;}
.y24{bottom:156.960000px;}
.y113{bottom:169.560000px;}
.yf0{bottom:174.000000px;}
.y23{bottom:180.360000px;}
.yd2{bottom:191.160000px;}
.yef{bottom:198.000000px;}
.y22{bottom:200.880000px;}
.y112{bottom:204.840000px;}
.yee{bottom:220.500000px;}
.y21{bottom:224.280000px;}
.yd1{bottom:225.000000px;}
.y48{bottom:232.560000px;}
.y111{bottom:238.500000px;}
.y93{bottom:243.720000px;}
.yed{bottom:244.500000px;}
.y20{bottom:244.800000px;}
.ycf{bottom:249.000000px;}
.y10f{bottom:262.500000px;}
.y47{bottom:267.840000px;}
.yec{bottom:268.500000px;}
.yce{bottom:274.500000px;}
.y1f{bottom:279.360000px;}
.y10e{bottom:288.000000px;}
.y46{bottom:289.800000px;}
.y91{bottom:292.500000px;}
.ycc{bottom:298.500000px;}
.y1e{bottom:301.320000px;}
.y45{bottom:311.760000px;}
.y10d{bottom:312.000000px;}
.y8f{bottom:316.500000px;}
.y1d{bottom:323.280000px;}
.ycb{bottom:324.000000px;}
.y44{bottom:333.720000px;}
.y10c{bottom:337.500000px;}
.yeb{bottom:339.000000px;}
.y8d{bottom:340.500000px;}
.y65{bottom:343.440000px;}
.y1c{bottom:345.240000px;}
.yca{bottom:348.000000px;}
.y43{bottom:355.680000px;}
.y10b{bottom:361.500000px;}
.yea{bottom:363.000000px;}
.y8b{bottom:364.500000px;}
.y1b{bottom:367.200000px;}
.y64{bottom:384.120000px;}
.y109{bottom:385.500000px;}
.ye9{bottom:387.000000px;}
.y89{bottom:388.500000px;}
.y42{bottom:391.320000px;}
.y1a{bottom:402.840000px;}
.y63{bottom:406.080000px;}
.yc9{bottom:406.440000px;}
.ye8{bottom:411.000000px;}
.y87{bottom:412.500000px;}
.y41{bottom:426.960000px;}
.y62{bottom:428.040000px;}
.yc8{bottom:435.000000px;}
.y85{bottom:436.500000px;}
.y19{bottom:438.120000px;}
.y40{bottom:448.920000px;}
.y61{bottom:450.000000px;}
.y84{bottom:459.000000px;}
.y18{bottom:460.080000px;}
.y107{bottom:460.500000px;}
.y3f{bottom:470.880000px;}
.yc7{bottom:481.500000px;}
.y17{bottom:482.040000px;}
.y106{bottom:484.500000px;}
.y60{bottom:485.640000px;}
.y3e{bottom:492.840000px;}
.yab{bottom:495.720000px;}
.y16{bottom:504.000000px;}
.yc6{bottom:505.500000px;}
.y5f{bottom:507.600000px;}
.y104{bottom:508.500000px;}
.y83{bottom:512.280000px;}
.y3d{bottom:514.800000px;}
.y15{bottom:525.960000px;}
.yaa{bottom:527.400000px;}
.yc5{bottom:529.500000px;}
.y5e{bottom:529.560000px;}
.y103{bottom:534.000000px;}
.y3c{bottom:536.760000px;}
.y82{bottom:537.000000px;}
.y14{bottom:547.920000px;}
.y5d{bottom:551.520000px;}
.yc4{bottom:553.500000px;}
.ya8{bottom:558.000000px;}
.y3b{bottom:558.720000px;}
.y81{bottom:561.000000px;}
.yc2{bottom:577.500000px;}
.ya6{bottom:582.000000px;}
.y101{bottom:583.500000px;}
.y13{bottom:583.560000px;}
.y80{bottom:585.000000px;}
.y5c{bottom:587.160000px;}
.y3a{bottom:594.000000px;}
.yc1{bottom:600.000000px;}
.y12{bottom:605.520000px;}
.ya5{bottom:606.000000px;}
.y100{bottom:607.500000px;}
.y7f{bottom:609.000000px;}
.y5b{bottom:609.120000px;}
.y39{bottom:615.960000px;}
.yc0{bottom:624.000000px;}
.y11{bottom:627.480000px;}
.ya4{bottom:630.000000px;}
.y5a{bottom:631.080000px;}
.y123{bottom:632.880000px;}
.yff{bottom:633.000000px;}
.ye6{bottom:635.040000px;}
.y38{bottom:637.920000px;}
.ybf{bottom:648.000000px;}
.y10{bottom:649.440000px;}
.y59{bottom:653.040000px;}
.yfe{bottom:657.000000px;}
.y37{bottom:659.880000px;}
.y7e{bottom:661.680000px;}
.ye4{bottom:663.000000px;}
.y122{bottom:668.160000px;}
.yf{bottom:671.400000px;}
.ybe{bottom:672.000000px;}
.yfc{bottom:681.000000px;}
.y36{bottom:681.840000px;}
.ya3{bottom:682.920000px;}
.y7c{bottom:687.000000px;}
.y58{bottom:688.320000px;}
.y121{bottom:690.120000px;}
.ye{bottom:693.360000px;}
.ybd{bottom:696.000000px;}
.y35{bottom:703.800000px;}
.ye3{bottom:705.000000px;}
.yfb{bottom:706.500000px;}
.ya1{bottom:708.000000px;}
.y7a{bottom:711.000000px;}
.y120{bottom:712.080000px;}
.yd{bottom:715.320000px;}
.ybc{bottom:718.500000px;}
.y57{bottom:722.520000px;}
.ye2{bottom:729.000000px;}
.yfa{bottom:730.500000px;}
.y78{bottom:735.000000px;}
.y34{bottom:739.440000px;}
.ybb{bottom:742.500000px;}
.y56{bottom:744.480000px;}
.y11f{bottom:747.720000px;}
.ya0{bottom:750.000000px;}
.yc{bottom:750.960000px;}
.ye1{bottom:753.000000px;}
.yf9{bottom:756.000000px;}
.y33{bottom:761.400000px;}
.yb9{bottom:766.500000px;}
.y55{bottom:770.040000px;}
.y9f{bottom:774.000000px;}
.ye0{bottom:777.000000px;}
.yf8{bottom:780.000000px;}
.y77{bottom:781.560000px;}
.y32{bottom:783.360000px;}
.y11e{bottom:784.800000px;}
.yb{bottom:786.240000px;}
.yb7{bottom:790.500000px;}
.y54{bottom:792.000000px;}
.y9e{bottom:798.000000px;}
.y31{bottom:805.320000px;}
.yf7{bottom:805.500000px;}
.y11d{bottom:806.760000px;}
.ya{bottom:808.200000px;}
.y76{bottom:812.880000px;}
.yb5{bottom:814.500000px;}
.y53{bottom:817.560000px;}
.y9d{bottom:822.000000px;}
.y30{bottom:827.280000px;}
.y11c{bottom:828.720000px;}
.yf6{bottom:829.500000px;}
.y9{bottom:830.160000px;}
.ydf{bottom:832.680000px;}
.yb3{bottom:838.500000px;}
.y52{bottom:839.520000px;}
.y9c{bottom:844.500000px;}
.y2f{bottom:849.240000px;}
.yf4{bottom:853.500000px;}
.ydd{bottom:859.500000px;}
.yb2{bottom:861.000000px;}
.y75{bottom:863.280000px;}
.y51{bottom:865.080000px;}
.y11b{bottom:865.440000px;}
.y8{bottom:865.800000px;}
.yf3{bottom:879.000000px;}
.y2e{bottom:884.880000px;}
.yb1{bottom:885.000000px;}
.y50{bottom:887.040000px;}
.y11a{bottom:887.400000px;}
.y7{bottom:887.760000px;}
.y73{bottom:888.000000px;}
.y9b{bottom:897.840000px;}
.ydb{bottom:903.000000px;}
.y4f{bottom:909.000000px;}
.y71{bottom:912.000000px;}
.y2d{bottom:920.160000px;}
.y99{bottom:922.500000px;}
.y6{bottom:923.040000px;}
.y119{bottom:924.480000px;}
.yda{bottom:928.500000px;}
.yb0{bottom:933.000000px;}
.y4e{bottom:934.920000px;}
.y6f{bottom:936.000000px;}
.y2c{bottom:942.120000px;}
.y5{bottom:945.360000px;}
.y118{bottom:946.440000px;}
.yd9{bottom:952.500000px;}
.y4d{bottom:956.880000px;}
.yaf{bottom:957.000000px;}
.y6d{bottom:960.000000px;}
.y2b{bottom:964.080000px;}
.y97{bottom:966.000000px;}
.y4{bottom:967.320000px;}
.yd7{bottom:976.500000px;}
.yae{bottom:979.500000px;}
.y4c{bottom:982.440000px;}
.y117{bottom:983.520000px;}
.y6b{bottom:984.000000px;}
.y95{bottom:988.500000px;}
.y3{bottom:989.280000px;}
.y2a{bottom:999.360000px;}
.yd6{bottom:1002.000000px;}
.yad{bottom:1003.500000px;}
.y4b{bottom:1004.400000px;}
.y116{bottom:1005.480000px;}
.y69{bottom:1008.000000px;}
.y94{bottom:1012.500000px;}
.y2{bottom:1018.800000px;}
.y29{bottom:1019.520000px;}
.yd4{bottom:1026.000000px;}
.y4a{bottom:1026.360000px;}
.y115{bottom:1027.440000px;}
.yac{bottom:1027.500000px;}
.y67{bottom:1030.500000px;}
.y28{bottom:1043.280000px;}
.y1{bottom:1051.560000px;}
.y114{bottom:1057.320000px;}
.y49{bottom:1062.720000px;}
.y27{bottom:1063.440000px;}
.y66{bottom:1065.600000px;}
.h8{height:24.000000px;}
.h7{height:25.500000px;}
.hc{height:27.000000px;}
.h6{height:43.410938px;}
.ha{height:43.500000px;}
.hd{height:43.900313px;}
.h9{height:45.000000px;}
.h4{height:45.895781px;}
.h3{height:49.218750px;}
.h2{height:51.679688px;}
.hb{height:55.666406px;}
.h5{height:64.304297px;}
.h1{height:83.103750px;}
.h0{height:1188.000000px;}
.w9{width:64.500000px;}
.w19{width:67.500000px;}
.w12{width:69.000000px;}
.w18{width:84.000000px;}
.w2{width:85.500000px;}
.w5{width:94.500000px;}
.w11{width:100.500000px;}
.w15{width:105.000000px;}
.wb{width:111.000000px;}
.w3{width:117.000000px;}
.w10{width:126.000000px;}
.wd{width:127.500000px;}
.w14{width:130.500000px;}
.w13{width:132.000000px;}
.we{width:144.000000px;}
.w7{width:189.000000px;}
.wf{width:204.000000px;}
.w1{width:213.000000px;}
.w6{width:216.000000px;}
.wc{width:219.000000px;}
.w4{width:235.500000px;}
.w16{width:238.500000px;}
.w8{width:256.500000px;}
.wa{width:280.500000px;}
.w17{width:301.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:7.799928px;}
.x7{left:9.000000px;}
.x6{left:99.000000px;}
.x3{left:108.000000px;}
.x4{left:135.000000px;}
.x5{left:162.000000px;}
.x12{left:166.500000px;}
.x1{left:169.605468px;}
.x18{left:181.500000px;}
.xa{left:192.000000px;}
.xd{left:208.500000px;}
.x9{left:214.500000px;}
.xe{left:225.000000px;}
.x2{left:282.331044px;}
.xc{left:286.500000px;}
.x13{left:297.000000px;}
.xf{left:301.500000px;}
.x8{left:310.500000px;}
.x19{left:316.500000px;}
.x14{left:336.000000px;}
.x17{left:399.000000px;}
.x10{left:426.000000px;}
.x15{left:465.000000px;}
.x11{left:550.500000px;}
.x16{left:595.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls32{letter-spacing:-0.397824pt;}
.ls24{letter-spacing:-0.365568pt;}
.ls37{letter-spacing:-0.349440pt;}
.ls49{letter-spacing:-0.308736pt;}
.ls45{letter-spacing:-0.304128pt;}
.ls2c{letter-spacing:-0.301056pt;}
.ls28{letter-spacing:-0.295680pt;}
.ls46{letter-spacing:-0.275968pt;}
.ls30{letter-spacing:-0.274176pt;}
.ls29{letter-spacing:-0.268800pt;}
.ls33{letter-spacing:-0.263424pt;}
.ls23{letter-spacing:-0.247296pt;}
.ls36{letter-spacing:-0.241920pt;}
.ls3f{letter-spacing:-0.236544pt;}
.ls2f{letter-spacing:-0.231168pt;}
.ls27{letter-spacing:-0.225792pt;}
.ls3a{letter-spacing:-0.225280pt;}
.ls25{letter-spacing:-0.220416pt;}
.ls2e{letter-spacing:-0.215040pt;}
.ls3c{letter-spacing:-0.208384pt;}
.ls47{letter-spacing:-0.197120pt;}
.ls26{letter-spacing:-0.193536pt;}
.ls44{letter-spacing:-0.191488pt;}
.ls38{letter-spacing:-0.188160pt;}
.ls15{letter-spacing:-0.182528pt;}
.ls42{letter-spacing:-0.174592pt;}
.ls2b{letter-spacing:-0.172032pt;}
.ls1c{letter-spacing:-0.170752pt;}
.ls3d{letter-spacing:-0.168960pt;}
.ls31{letter-spacing:-0.166656pt;}
.ls3e{letter-spacing:-0.157696pt;}
.ls2a{letter-spacing:-0.155904pt;}
.ls40{letter-spacing:-0.146432pt;}
.ls39{letter-spacing:-0.145152pt;}
.ls3b{letter-spacing:-0.140800pt;}
.ls43{letter-spacing:-0.135168pt;}
.ls18{letter-spacing:-0.129536pt;}
.ls35{letter-spacing:-0.118272pt;}
.ls4a{letter-spacing:-0.117760pt;}
.ls19{letter-spacing:-0.111872pt;}
.ls2d{letter-spacing:-0.107520pt;}
.ls1a{letter-spacing:-0.105984pt;}
.ls17{letter-spacing:-0.100096pt;}
.ls1e{letter-spacing:-0.094208pt;}
.ls1b{letter-spacing:-0.088320pt;}
.ls41{letter-spacing:-0.084480pt;}
.ls16{letter-spacing:-0.082432pt;}
.ls1f{letter-spacing:-0.076544pt;}
.ls34{letter-spacing:-0.069888pt;}
.ls1d{letter-spacing:-0.052992pt;}
.lsd{letter-spacing:-0.032000pt;}
.lse{letter-spacing:-0.025600pt;}
.lsf{letter-spacing:-0.019200pt;}
.ls14{letter-spacing:-0.012800pt;}
.ls13{letter-spacing:-0.006400pt;}
.lsc{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.006400pt;}
.ls6{letter-spacing:0.008960pt;}
.ls8{letter-spacing:0.010240pt;}
.ls5{letter-spacing:0.012800pt;}
.ls12{letter-spacing:0.019200pt;}
.ls11{letter-spacing:0.025600pt;}
.ls10{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.191232pt;}
.ls2{letter-spacing:1.858816pt;}
.ls3{letter-spacing:1.858944pt;}
.ls7{letter-spacing:1.859840pt;}
.ls4{letter-spacing:1.861120pt;}
.lsb{letter-spacing:6.357760pt;}
.ls1{letter-spacing:16.874240pt;}
.ls48{letter-spacing:29.614208pt;}
.ls20{letter-spacing:48.770560pt;}
.lsa{letter-spacing:52.647040pt;}
.ls21{letter-spacing:753.536000pt;}
.ls22{letter-spacing:755.850240pt;}
.ws2{word-spacing:-14.489600pt;}
.ws3{word-spacing:-14.483200pt;}
.ws0{word-spacing:-14.464000pt;}
.ws4{word-spacing:-14.457600pt;}
.ws5{word-spacing:-14.451200pt;}
.ws1{word-spacing:-14.444800pt;}
.ws8{word-spacing:-13.218560pt;}
.ws28{word-spacing:-13.206784pt;}
.ws29{word-spacing:-13.189120pt;}
.ws7{word-spacing:-13.136128pt;}
.ws23{word-spacing:-12.728320pt;}
.ws25{word-spacing:-12.643840pt;}
.ws1e{word-spacing:-12.610048pt;}
.ws27{word-spacing:-12.587520pt;}
.ws24{word-spacing:-12.581888pt;}
.ws21{word-spacing:-12.570624pt;}
.ws20{word-spacing:-12.559360pt;}
.ws26{word-spacing:-12.553728pt;}
.ws1f{word-spacing:-12.519936pt;}
.ws22{word-spacing:-12.491776pt;}
.wse{word-spacing:-12.149760pt;}
.ws19{word-spacing:-12.079872pt;}
.wsf{word-spacing:-12.042240pt;}
.ws1a{word-spacing:-12.031488pt;}
.ws1c{word-spacing:-12.004608pt;}
.ws14{word-spacing:-11.983104pt;}
.ws13{word-spacing:-11.977728pt;}
.ws1b{word-spacing:-11.956224pt;}
.ws10{word-spacing:-11.934720pt;}
.wsc{word-spacing:-11.929344pt;}
.wsd{word-spacing:-11.923968pt;}
.ws12{word-spacing:-11.918592pt;}
.ws11{word-spacing:-11.902464pt;}
.ws18{word-spacing:-11.886336pt;}
.ws17{word-spacing:-11.880960pt;}
.ws16{word-spacing:-11.875584pt;}
.ws1d{word-spacing:-11.848704pt;}
.wsb{word-spacing:-11.784192pt;}
.ws15{word-spacing:-11.751936pt;}
.wsa{word-spacing:-0.064000pt;}
.ws6{word-spacing:-0.058880pt;}
.ws9{word-spacing:0.000000pt;}
._a{margin-left:-0.889600pt;}
._3{width:1.600640pt;}
._4{width:2.629760pt;}
._5{width:3.694720pt;}
._7{width:4.672000pt;}
._6{width:5.568000pt;}
._e{width:6.536576pt;}
._d{width:7.495040pt;}
._0{width:8.531584pt;}
._c{width:9.772800pt;}
._8{width:10.668800pt;}
._f{width:12.278656pt;}
._14{width:13.472000pt;}
._10{width:15.500800pt;}
._2{width:16.838400pt;}
._1{width:18.137600pt;}
._9{width:19.814400pt;}
._12{width:21.203200pt;}
._18{width:22.931200pt;}
._17{width:26.912000pt;}
._11{width:27.961600pt;}
._b{width:33.011200pt;}
._13{width:40.172800pt;}
._15{width:50.848000pt;}
._16{width:753.536000pt;}
.fs4{font-size:53.760000pt;}
.fs6{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.fs3{font-size:85.760000pt;}
.fs0{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:5.600000pt;}
.yb4{bottom:5.706667pt;}
.ye7{bottom:5.760000pt;}
.y98{bottom:5.973333pt;}
.yc3{bottom:6.026667pt;}
.y6a{bottom:6.080000pt;}
.y88{bottom:6.133333pt;}
.y79{bottom:6.186667pt;}
.yb6{bottom:6.240000pt;}
.y6c{bottom:6.293333pt;}
.y8a{bottom:6.346667pt;}
.y7b{bottom:6.400000pt;}
.yb8{bottom:6.453333pt;}
.y6e{bottom:6.506667pt;}
.y8c{bottom:6.560000pt;}
.y7d{bottom:6.613333pt;}
.yba{bottom:6.666667pt;}
.y70{bottom:6.720000pt;}
.y8e{bottom:6.773333pt;}
.ya7{bottom:6.826667pt;}
.y68{bottom:6.880000pt;}
.y72{bottom:6.933333pt;}
.y90{bottom:6.986667pt;}
.ya9{bottom:7.040000pt;}
.y96{bottom:7.093333pt;}
.y74{bottom:7.146667pt;}
.y92{bottom:7.200000pt;}
.ydc{bottom:7.253333pt;}
.ycd{bottom:7.306667pt;}
.yd5{bottom:7.360000pt;}
.yf5{bottom:7.413333pt;}
.yd0{bottom:7.466667pt;}
.yd8{bottom:7.520000pt;}
.y108{bottom:7.573333pt;}
.y110{bottom:7.626667pt;}
.y102{bottom:7.680000pt;}
.y10a{bottom:7.733333pt;}
.yfd{bottom:7.786667pt;}
.y105{bottom:7.840000pt;}
.ya2{bottom:22.826667pt;}
.ye5{bottom:23.146667pt;}
.y9a{bottom:23.520000pt;}
.yde{bottom:23.840000pt;}
.y26{bottom:100.480000pt;}
.yf2{bottom:112.000000pt;}
.y25{bottom:118.400000pt;}
.yf1{bottom:133.333333pt;}
.yd3{bottom:138.560000pt;}
.y24{bottom:139.520000pt;}
.y113{bottom:150.720000pt;}
.yf0{bottom:154.666667pt;}
.y23{bottom:160.320000pt;}
.yd2{bottom:169.920000pt;}
.yef{bottom:176.000000pt;}
.y22{bottom:178.560000pt;}
.y112{bottom:182.080000pt;}
.yee{bottom:196.000000pt;}
.y21{bottom:199.360000pt;}
.yd1{bottom:200.000000pt;}
.y48{bottom:206.720000pt;}
.y111{bottom:212.000000pt;}
.y93{bottom:216.640000pt;}
.yed{bottom:217.333333pt;}
.y20{bottom:217.600000pt;}
.ycf{bottom:221.333333pt;}
.y10f{bottom:233.333333pt;}
.y47{bottom:238.080000pt;}
.yec{bottom:238.666667pt;}
.yce{bottom:244.000000pt;}
.y1f{bottom:248.320000pt;}
.y10e{bottom:256.000000pt;}
.y46{bottom:257.600000pt;}
.y91{bottom:260.000000pt;}
.ycc{bottom:265.333333pt;}
.y1e{bottom:267.840000pt;}
.y45{bottom:277.120000pt;}
.y10d{bottom:277.333333pt;}
.y8f{bottom:281.333333pt;}
.y1d{bottom:287.360000pt;}
.ycb{bottom:288.000000pt;}
.y44{bottom:296.640000pt;}
.y10c{bottom:300.000000pt;}
.yeb{bottom:301.333333pt;}
.y8d{bottom:302.666667pt;}
.y65{bottom:305.280000pt;}
.y1c{bottom:306.880000pt;}
.yca{bottom:309.333333pt;}
.y43{bottom:316.160000pt;}
.y10b{bottom:321.333333pt;}
.yea{bottom:322.666667pt;}
.y8b{bottom:324.000000pt;}
.y1b{bottom:326.400000pt;}
.y64{bottom:341.440000pt;}
.y109{bottom:342.666667pt;}
.ye9{bottom:344.000000pt;}
.y89{bottom:345.333333pt;}
.y42{bottom:347.840000pt;}
.y1a{bottom:358.080000pt;}
.y63{bottom:360.960000pt;}
.yc9{bottom:361.280000pt;}
.ye8{bottom:365.333333pt;}
.y87{bottom:366.666667pt;}
.y41{bottom:379.520000pt;}
.y62{bottom:380.480000pt;}
.yc8{bottom:386.666667pt;}
.y85{bottom:388.000000pt;}
.y19{bottom:389.440000pt;}
.y40{bottom:399.040000pt;}
.y61{bottom:400.000000pt;}
.y84{bottom:408.000000pt;}
.y18{bottom:408.960000pt;}
.y107{bottom:409.333333pt;}
.y3f{bottom:418.560000pt;}
.yc7{bottom:428.000000pt;}
.y17{bottom:428.480000pt;}
.y106{bottom:430.666667pt;}
.y60{bottom:431.680000pt;}
.y3e{bottom:438.080000pt;}
.yab{bottom:440.640000pt;}
.y16{bottom:448.000000pt;}
.yc6{bottom:449.333333pt;}
.y5f{bottom:451.200000pt;}
.y104{bottom:452.000000pt;}
.y83{bottom:455.360000pt;}
.y3d{bottom:457.600000pt;}
.y15{bottom:467.520000pt;}
.yaa{bottom:468.800000pt;}
.yc5{bottom:470.666667pt;}
.y5e{bottom:470.720000pt;}
.y103{bottom:474.666667pt;}
.y3c{bottom:477.120000pt;}
.y82{bottom:477.333333pt;}
.y14{bottom:487.040000pt;}
.y5d{bottom:490.240000pt;}
.yc4{bottom:492.000000pt;}
.ya8{bottom:496.000000pt;}
.y3b{bottom:496.640000pt;}
.y81{bottom:498.666667pt;}
.yc2{bottom:513.333333pt;}
.ya6{bottom:517.333333pt;}
.y101{bottom:518.666667pt;}
.y13{bottom:518.720000pt;}
.y80{bottom:520.000000pt;}
.y5c{bottom:521.920000pt;}
.y3a{bottom:528.000000pt;}
.yc1{bottom:533.333333pt;}
.y12{bottom:538.240000pt;}
.ya5{bottom:538.666667pt;}
.y100{bottom:540.000000pt;}
.y7f{bottom:541.333333pt;}
.y5b{bottom:541.440000pt;}
.y39{bottom:547.520000pt;}
.yc0{bottom:554.666667pt;}
.y11{bottom:557.760000pt;}
.ya4{bottom:560.000000pt;}
.y5a{bottom:560.960000pt;}
.y123{bottom:562.560000pt;}
.yff{bottom:562.666667pt;}
.ye6{bottom:564.480000pt;}
.y38{bottom:567.040000pt;}
.ybf{bottom:576.000000pt;}
.y10{bottom:577.280000pt;}
.y59{bottom:580.480000pt;}
.yfe{bottom:584.000000pt;}
.y37{bottom:586.560000pt;}
.y7e{bottom:588.160000pt;}
.ye4{bottom:589.333333pt;}
.y122{bottom:593.920000pt;}
.yf{bottom:596.800000pt;}
.ybe{bottom:597.333333pt;}
.yfc{bottom:605.333333pt;}
.y36{bottom:606.080000pt;}
.ya3{bottom:607.040000pt;}
.y7c{bottom:610.666667pt;}
.y58{bottom:611.840000pt;}
.y121{bottom:613.440000pt;}
.ye{bottom:616.320000pt;}
.ybd{bottom:618.666667pt;}
.y35{bottom:625.600000pt;}
.ye3{bottom:626.666667pt;}
.yfb{bottom:628.000000pt;}
.ya1{bottom:629.333333pt;}
.y7a{bottom:632.000000pt;}
.y120{bottom:632.960000pt;}
.yd{bottom:635.840000pt;}
.ybc{bottom:638.666667pt;}
.y57{bottom:642.240000pt;}
.ye2{bottom:648.000000pt;}
.yfa{bottom:649.333333pt;}
.y78{bottom:653.333333pt;}
.y34{bottom:657.280000pt;}
.ybb{bottom:660.000000pt;}
.y56{bottom:661.760000pt;}
.y11f{bottom:664.640000pt;}
.ya0{bottom:666.666667pt;}
.yc{bottom:667.520000pt;}
.ye1{bottom:669.333333pt;}
.yf9{bottom:672.000000pt;}
.y33{bottom:676.800000pt;}
.yb9{bottom:681.333333pt;}
.y55{bottom:684.480000pt;}
.y9f{bottom:688.000000pt;}
.ye0{bottom:690.666667pt;}
.yf8{bottom:693.333333pt;}
.y77{bottom:694.720000pt;}
.y32{bottom:696.320000pt;}
.y11e{bottom:697.600000pt;}
.yb{bottom:698.880000pt;}
.yb7{bottom:702.666667pt;}
.y54{bottom:704.000000pt;}
.y9e{bottom:709.333333pt;}
.y31{bottom:715.840000pt;}
.yf7{bottom:716.000000pt;}
.y11d{bottom:717.120000pt;}
.ya{bottom:718.400000pt;}
.y76{bottom:722.560000pt;}
.yb5{bottom:724.000000pt;}
.y53{bottom:726.720000pt;}
.y9d{bottom:730.666667pt;}
.y30{bottom:735.360000pt;}
.y11c{bottom:736.640000pt;}
.yf6{bottom:737.333333pt;}
.y9{bottom:737.920000pt;}
.ydf{bottom:740.160000pt;}
.yb3{bottom:745.333333pt;}
.y52{bottom:746.240000pt;}
.y9c{bottom:750.666667pt;}
.y2f{bottom:754.880000pt;}
.yf4{bottom:758.666667pt;}
.ydd{bottom:764.000000pt;}
.yb2{bottom:765.333333pt;}
.y75{bottom:767.360000pt;}
.y51{bottom:768.960000pt;}
.y11b{bottom:769.280000pt;}
.y8{bottom:769.600000pt;}
.yf3{bottom:781.333333pt;}
.y2e{bottom:786.560000pt;}
.yb1{bottom:786.666667pt;}
.y50{bottom:788.480000pt;}
.y11a{bottom:788.800000pt;}
.y7{bottom:789.120000pt;}
.y73{bottom:789.333333pt;}
.y9b{bottom:798.080000pt;}
.ydb{bottom:802.666667pt;}
.y4f{bottom:808.000000pt;}
.y71{bottom:810.666667pt;}
.y2d{bottom:817.920000pt;}
.y99{bottom:820.000000pt;}
.y6{bottom:820.480000pt;}
.y119{bottom:821.760000pt;}
.yda{bottom:825.333333pt;}
.yb0{bottom:829.333333pt;}
.y4e{bottom:831.040000pt;}
.y6f{bottom:832.000000pt;}
.y2c{bottom:837.440000pt;}
.y5{bottom:840.320000pt;}
.y118{bottom:841.280000pt;}
.yd9{bottom:846.666667pt;}
.y4d{bottom:850.560000pt;}
.yaf{bottom:850.666667pt;}
.y6d{bottom:853.333333pt;}
.y2b{bottom:856.960000pt;}
.y97{bottom:858.666667pt;}
.y4{bottom:859.840000pt;}
.yd7{bottom:868.000000pt;}
.yae{bottom:870.666667pt;}
.y4c{bottom:873.280000pt;}
.y117{bottom:874.240000pt;}
.y6b{bottom:874.666667pt;}
.y95{bottom:878.666667pt;}
.y3{bottom:879.360000pt;}
.y2a{bottom:888.320000pt;}
.yd6{bottom:890.666667pt;}
.yad{bottom:892.000000pt;}
.y4b{bottom:892.800000pt;}
.y116{bottom:893.760000pt;}
.y69{bottom:896.000000pt;}
.y94{bottom:900.000000pt;}
.y2{bottom:905.600000pt;}
.y29{bottom:906.240000pt;}
.yd4{bottom:912.000000pt;}
.y4a{bottom:912.320000pt;}
.y115{bottom:913.280000pt;}
.yac{bottom:913.333333pt;}
.y67{bottom:916.000000pt;}
.y28{bottom:927.360000pt;}
.y1{bottom:934.720000pt;}
.y114{bottom:939.840000pt;}
.y49{bottom:944.640000pt;}
.y27{bottom:945.280000pt;}
.y66{bottom:947.200000pt;}
.h8{height:21.333333pt;}
.h7{height:22.666667pt;}
.hc{height:24.000000pt;}
.h6{height:38.587500pt;}
.ha{height:38.666667pt;}
.hd{height:39.022500pt;}
.h9{height:40.000000pt;}
.h4{height:40.796250pt;}
.h3{height:43.750000pt;}
.h2{height:45.937500pt;}
.hb{height:49.481250pt;}
.h5{height:57.159375pt;}
.h1{height:73.870000pt;}
.h0{height:1056.000000pt;}
.w9{width:57.333333pt;}
.w19{width:60.000000pt;}
.w12{width:61.333333pt;}
.w18{width:74.666667pt;}
.w2{width:76.000000pt;}
.w5{width:84.000000pt;}
.w11{width:89.333333pt;}
.w15{width:93.333333pt;}
.wb{width:98.666667pt;}
.w3{width:104.000000pt;}
.w10{width:112.000000pt;}
.wd{width:113.333333pt;}
.w14{width:116.000000pt;}
.w13{width:117.333333pt;}
.we{width:128.000000pt;}
.w7{width:168.000000pt;}
.wf{width:181.333333pt;}
.w1{width:189.333333pt;}
.w6{width:192.000000pt;}
.wc{width:194.666667pt;}
.w4{width:209.333333pt;}
.w16{width:212.000000pt;}
.w8{width:228.000000pt;}
.wa{width:249.333333pt;}
.w17{width:268.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.933269pt;}
.x7{left:8.000000pt;}
.x6{left:88.000000pt;}
.x3{left:96.000000pt;}
.x4{left:120.000000pt;}
.x5{left:144.000000pt;}
.x12{left:148.000000pt;}
.x1{left:150.760416pt;}
.x18{left:161.333333pt;}
.xa{left:170.666667pt;}
.xd{left:185.333333pt;}
.x9{left:190.666667pt;}
.xe{left:200.000000pt;}
.x2{left:250.960928pt;}
.xc{left:254.666667pt;}
.x13{left:264.000000pt;}
.xf{left:268.000000pt;}
.x8{left:276.000000pt;}
.x19{left:281.333333pt;}
.x14{left:298.666667pt;}
.x17{left:354.666667pt;}
.x10{left:378.666667pt;}
.x15{left:413.333333pt;}
.x11{left:489.333333pt;}
.x16{left:529.333333pt;}
}




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