
    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_be1f61b8238ad5508da08967.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7dae4b8fc2643d7d06cb9965.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_15484381b754545789c60e04.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.694336;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_406387599edbe24fed6eb58c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_10056a51c626a5a49f9008b2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.904297;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_1230c074b56aedae04831374.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.715000;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_04d4b2a4aed181616dad2be7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.878418;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_438ed54ba64ae711de9623d0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.904297;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_9160668c3b2429392aaf1a3b.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m5{transform:matrix(0.197258,-0.033009,0.041263,0.246571,0,0);-ms-transform:matrix(0.197258,-0.033009,0.041263,0.246571,0,0);-webkit-transform:matrix(0.197258,-0.033009,0.041263,0.246571,0,0);}
.m3{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-55.944000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:23.976000px;}
.v4{vertical-align:27.971400px;}
.v3{vertical-align:42.372000px;}
.v1{vertical-align:55.944000px;}
.ls5{letter-spacing:-5.040000px;}
.lsa{letter-spacing:-3.240000px;}
.ls4{letter-spacing:-2.938320px;}
.ls8{letter-spacing:-0.587664px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:1.872000px;}
.ls9{letter-spacing:5.382000px;}
.ls3{letter-spacing:7.500000px;}
.ls2{letter-spacing:18.000000px;}
.ls7{letter-spacing:87.984000px;}
.ls6{letter-spacing:88.020000px;}
.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;}
}
.ws34{word-spacing:-180.000000px;}
.ws39{word-spacing:-158.760000px;}
.ws35{word-spacing:-150.000000px;}
.ws30{word-spacing:-143.382000px;}
.ws2b{word-spacing:-138.000000px;}
.ws9{word-spacing:-120.000000px;}
.ws23{word-spacing:-114.000000px;}
.ws3{word-spacing:-108.000000px;}
.ws16{word-spacing:-102.000000px;}
.ws0{word-spacing:-99.360000px;}
.ws38{word-spacing:-96.000000px;}
.ws10{word-spacing:-90.000000px;}
.ws1a{word-spacing:-84.000000px;}
.ws37{word-spacing:-79.728265px;}
.wsb{word-spacing:-72.000000px;}
.ws36{word-spacing:-70.978800px;}
.ws4{word-spacing:-66.000000px;}
.ws1f{word-spacing:-65.688000px;}
.ws2f{word-spacing:-63.314400px;}
.wse{word-spacing:-61.689600px;}
.ws25{word-spacing:-61.005600px;}
.ws24{word-spacing:-60.840000px;}
.ws31{word-spacing:-57.035400px;}
.ws20{word-spacing:-56.606400px;}
.wsc{word-spacing:-53.395200px;}
.ws2a{word-spacing:-51.336000px;}
.ws15{word-spacing:-40.680000px;}
.wsd{word-spacing:-39.607200px;}
.ws1{word-spacing:-37.968000px;}
.ws26{word-spacing:-34.128000px;}
.ws3a{word-spacing:-33.900000px;}
.ws29{word-spacing:-31.188000px;}
.ws27{word-spacing:-26.445600px;}
.wsf{word-spacing:-24.408000px;}
.ws11{word-spacing:-20.340000px;}
.ws2{word-spacing:-19.197024px;}
.ws18{word-spacing:-18.984000px;}
.wsa{word-spacing:-16.272000px;}
.ws5{word-spacing:-14.916000px;}
.ws6{word-spacing:-12.720000px;}
.ws19{word-spacing:-11.067672px;}
.ws1c{word-spacing:-10.480008px;}
.ws1b{word-spacing:-9.486576px;}
.ws1d{word-spacing:-8.898912px;}
.ws8{word-spacing:-7.500000px;}
.ws1e{word-spacing:-0.648000px;}
.ws7{word-spacing:0.000000px;}
.ws33{word-spacing:0.345000px;}
.ws21{word-spacing:3.312000px;}
.ws22{word-spacing:3.816000px;}
.ws12{word-spacing:5.832000px;}
.ws2e{word-spacing:5.904000px;}
.ws32{word-spacing:6.120000px;}
.ws13{word-spacing:9.000000px;}
.ws28{word-spacing:11.160000px;}
.ws2d{word-spacing:20.736000px;}
.ws14{word-spacing:25.560000px;}
.ws2c{word-spacing:40.176000px;}
.ws17{word-spacing:70.632000px;}
._59{margin-left:-744.942000px;}
._4e{margin-left:-554.760000px;}
._4a{margin-left:-445.850400px;}
._5c{margin-left:-358.648200px;}
._5e{margin-left:-326.718600px;}
._3f{margin-left:-295.488000px;}
._50{margin-left:-278.470200px;}
._3c{margin-left:-263.032200px;}
._54{margin-left:-252.444000px;}
._39{margin-left:-244.689600px;}
._4b{margin-left:-240.837600px;}
._40{margin-left:-231.192000px;}
._31{margin-left:-225.948000px;}
._5b{margin-left:-224.929800px;}
._47{margin-left:-215.017800px;}
._3d{margin-left:-197.983800px;}
._56{margin-left:-187.032000px;}
._4d{margin-left:-156.630000px;}
._51{margin-left:-153.193800px;}
._5d{margin-left:-149.937000px;}
._62{margin-left:-126.179013px;}
._35{margin-left:-118.617000px;}
._38{margin-left:-111.252600px;}
._3a{margin-left:-108.721800px;}
._3e{margin-left:-107.308200px;}
._3b{margin-left:-103.021800px;}
._57{margin-left:-99.222000px;}
._37{margin-left:-97.356000px;}
._5f{margin-left:-94.198800px;}
._5a{margin-left:-90.624600px;}
._53{margin-left:-83.270400px;}
._4f{margin-left:-73.968000px;}
._52{margin-left:-60.830400px;}
._33{margin-left:-58.607400px;}
._34{margin-left:-51.984000px;}
._36{margin-left:-38.463600px;}
._63{margin-left:-34.942863px;}
._64{margin-left:-33.445211px;}
._4c{margin-left:-31.188000px;}
._32{margin-left:-25.764000px;}
._48{margin-left:-16.915200px;}
._b{margin-left:-15.734400px;}
._65{margin-left:-14.711400px;}
._30{margin-left:-9.884400px;}
._5{margin-left:-8.667600px;}
._d{margin-left:-7.207200px;}
._6{margin-left:-5.695800px;}
._1{margin-left:-4.633200px;}
._2{margin-left:-3.504600px;}
._3{margin-left:-2.283600px;}
._0{margin-left:-1.089000px;}
._9{width:1.447200px;}
._a{width:2.451600px;}
._8{width:3.888000px;}
._1b{width:4.935600px;}
._4{width:6.048000px;}
._7{width:7.286400px;}
._18{width:9.007200px;}
._1a{width:10.830000px;}
._1f{width:12.261600px;}
._13{width:14.140800px;}
._2f{width:15.254400px;}
._e{width:17.496000px;}
._17{width:19.015200px;}
._11{width:20.944800px;}
._1d{width:22.724400px;}
._1e{width:23.969400px;}
._23{width:25.106400px;}
._26{width:26.123400px;}
._49{width:27.462600px;}
._2d{width:28.581600px;}
._21{width:29.607600px;}
._22{width:30.858000px;}
._19{width:32.385600px;}
._1c{width:33.477600px;}
._2b{width:35.016000px;}
._2e{width:36.445800px;}
._12{width:37.951200px;}
._14{width:39.594600px;}
._41{width:42.624000px;}
._28{width:44.020800px;}
._44{width:45.220200px;}
._25{width:46.264800px;}
._24{width:47.636400px;}
._29{width:48.722400px;}
._f{width:50.234400px;}
._20{width:51.366000px;}
._45{width:54.554400px;}
._46{width:56.010000px;}
._2a{width:65.750400px;}
._2c{width:69.733200px;}
._10{width:72.144000px;}
._42{width:78.480000px;}
._43{width:83.520000px;}
._60{width:85.536000px;}
._15{width:86.832000px;}
._27{width:92.004600px;}
._c{width:93.168000px;}
._16{width:122.688000px;}
._61{width:129.024000px;}
._55{width:248.634600px;}
._58{width:278.304600px;}
.fc8{color:rgb(145,209,237);}
.fc6{color:transparent;}
.fc5{color:rgb(33,94,158);}
.fc7{color:rgb(130,132,135);}
.fc4{color:rgb(33,157,214);}
.fc2{color:rgb(39,157,216);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(37,43,74);}
.fc0{color:rgb(255,255,255);}
.fsf{font-size:41.976000px;}
.fs7{font-size:48.000000px;}
.fse{font-size:48.972000px;}
.fs12{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs13{font-size:70.978800px;}
.fsa{font-size:72.000000px;}
.fs14{font-size:79.728265px;}
.fs8{font-size:84.000000px;}
.fsc{font-size:90.000000px;}
.fs15{font-size:96.000000px;}
.fs4{font-size:97.944000px;}
.fsd{font-size:102.000000px;}
.fs6{font-size:108.000000px;}
.fs10{font-size:114.000000px;}
.fs9{font-size:120.000000px;}
.fs5{font-size:132.000000px;}
.fs11{font-size:138.000000px;}
.fs2{font-size:150.000000px;}
.fs16{font-size:162.000000px;}
.fs3{font-size:168.000000px;}
.fsb{font-size:180.000000px;}
.fs1{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.ye{bottom:36.934350px;}
.yf{bottom:38.733150px;}
.y2{bottom:58.507650px;}
.y1{bottom:75.007650px;}
.yec{bottom:110.154300px;}
.ycf{bottom:126.896700px;}
.y80{bottom:128.085000px;}
.yeb{bottom:129.076500px;}
.y12f{bottom:129.294300px;}
.yb2{bottom:131.736000px;}
.ya2{bottom:136.149600px;}
.y110{bottom:137.579400px;}
.y5d{bottom:139.609500px;}
.yea{bottom:147.998700px;}
.yb1{bottom:150.402000px;}
.y7f{bottom:150.585000px;}
.y12e{bottom:150.894300px;}
.yce{bottom:157.748700px;}
.y10f{bottom:158.711400px;}
.y5c{bottom:162.109500px;}
.yd{bottom:163.631250px;}
.ye9{bottom:166.920750px;}
.ye8{bottom:166.929150px;}
.yb0{bottom:169.068000px;}
.y12d{bottom:172.494300px;}
.y7e{bottom:173.085000px;}
.y8a{bottom:173.985000px;}
.ya1{bottom:179.673600px;}
.y10e{bottom:179.843400px;}
.yc{bottom:183.431250px;}
.y141{bottom:184.149150px;}
.y5b{bottom:184.609500px;}
.y27{bottom:184.713750px;}
.ya0{bottom:190.674900px;}
.yae{bottom:191.323650px;}
.yaf{bottom:191.328750px;}
.y7d{bottom:195.585000px;}
.y86{bottom:196.485000px;}
.y130{bottom:200.136750px;}
.y10d{bottom:200.975400px;}
.ye7{bottom:204.765150px;}
.y5a{bottom:207.109500px;}
.y26{bottom:207.213750px;}
.yad{bottom:213.589650px;}
.y7c{bottom:218.085000px;}
.ycd{bottom:219.452100px;}
.y10c{bottom:222.107400px;}
.ye6{bottom:223.687200px;}
.y140{bottom:227.349150px;}
.y25{bottom:229.713750px;}
.y9f{bottom:234.972900px;}
.y59{bottom:239.345400px;}
.y7b{bottom:240.585000px;}
.ye5{bottom:242.609400px;}
.y9e{bottom:245.974200px;}
.y111{bottom:249.749700px;}
.yac{bottom:250.911300px;}
.y24{bottom:252.213750px;}
.ye4{bottom:261.531450px;}
.ye3{bottom:261.539850px;}
.y58{bottom:261.845400px;}
.y7a{bottom:263.085000px;}
.y15d{bottom:264.103650px;}
.y13f{bottom:270.549150px;}
.y12b{bottom:271.133850px;}
.y23{bottom:274.713750px;}
.yb{bottom:279.048000px;}
.y57{bottom:284.345400px;}
.y79{bottom:285.585000px;}
.yc6{bottom:288.355500px;}
.y9d{bottom:290.272200px;}
.y12a{bottom:291.185850px;}
.y13e{bottom:292.149150px;}
.y15c{bottom:297.103650px;}
.ye2{bottom:299.375850px;}
.y3d{bottom:300.139350px;}
.y9c{bottom:301.283850px;}
.y56{bottom:306.845400px;}
.y78{bottom:308.085000px;}
.y129{bottom:311.237850px;}
.ye1{bottom:318.297900px;}
.y22{bottom:319.713750px;}
.yc5{bottom:321.601500px;}
.y108{bottom:322.143000px;}
.y3c{bottom:322.639350px;}
.yba{bottom:322.699050px;}
.ya{bottom:324.111000px;}
.y77{bottom:330.585000px;}
.y128{bottom:331.289850px;}
.y13d{bottom:335.349150px;}
.ye0{bottom:337.220100px;}
.y21{bottom:342.213750px;}
.yb9{bottom:344.587050px;}
.y107{bottom:344.769000px;}
.y106{bottom:344.776800px;}
.y9b{bottom:344.807850px;}
.y3b{bottom:345.139350px;}
.y127{bottom:351.341850px;}
.y76{bottom:353.085000px;}
.y9a{bottom:355.819650px;}
.ydf{bottom:356.142300px;}
.yde{bottom:356.150550px;}
.y55{bottom:359.541000px;}
.y20{bottom:364.713750px;}
.yb8{bottom:366.475050px;}
.y105{bottom:367.402800px;}
.y3a{bottom:367.639350px;}
.y9{bottom:369.174000px;}
.y126{bottom:371.393850px;}
.y75{bottom:375.585000px;}
.y54{bottom:382.041000px;}
.y104{bottom:386.428800px;}
.y1f{bottom:387.213750px;}
.yb7{bottom:388.363050px;}
.y142{bottom:388.405050px;}
.y39{bottom:390.139350px;}
.y125{bottom:391.445850px;}
.yc4{bottom:391.680450px;}
.ydd{bottom:393.986550px;}
.y74{bottom:398.085000px;}
.y99{bottom:399.343650px;}
.y151{bottom:401.311312px;}
.y103{bottom:409.054800px;}
.y102{bottom:409.080450px;}
.yb6{bottom:410.251050px;}
.y98{bottom:410.355450px;}
.y38{bottom:412.639350px;}
.ydc{bottom:412.908750px;}
.ydb{bottom:412.917000px;}
.y8{bottom:414.237000px;}
.y73{bottom:420.585000px;}
.y124{bottom:431.567850px;}
.y101{bottom:431.706450px;}
.yb5{bottom:432.139050px;}
.y37{bottom:435.139350px;}
.y72{bottom:443.085000px;}
.y10b{bottom:445.065450px;}
.y53{bottom:448.026900px;}
.y100{bottom:450.732450px;}
.yda{bottom:450.753000px;}
.y123{bottom:451.619850px;}
.ycc{bottom:453.955500px;}
.yb4{bottom:454.027050px;}
.y7{bottom:459.300000px;}
.y10a{bottom:463.065450px;}
.y97{bottom:464.891100px;}
.y71{bottom:465.585000px;}
.yd9{bottom:469.675200px;}
.yd8{bottom:469.708350px;}
.yff{bottom:469.758450px;}
.y52{bottom:470.526900px;}
.y122{bottom:471.671850px;}
.y1e{bottom:479.108700px;}
.y36{bottom:480.139350px;}
.ycb{bottom:480.253500px;}
.yca{bottom:480.254550px;}
.y150{bottom:484.054781px;}
.y70{bottom:488.085000px;}
.y145{bottom:490.916850px;}
.y121{bottom:491.723850px;}
.y14c{bottom:495.017820px;}
.yb3{bottom:497.805300px;}
.y1d{bottom:501.608700px;}
.yc9{bottom:506.552550px;}
.yd7{bottom:507.544350px;}
.yfe{bottom:507.810450px;}
.y96{bottom:508.415100px;}
.y6f{bottom:510.585000px;}
.y120{bottom:511.775850px;}
.y14b{bottom:516.311460px;}
.y95{bottom:519.426750px;}
.y1c{bottom:524.108700px;}
.y35{bottom:525.139350px;}
.y6{bottom:526.050000px;}
.yfd{bottom:526.836450px;}
.y144{bottom:526.916850px;}
.y51{bottom:527.416200px;}
.y11f{bottom:531.827850px;}
.y6e{bottom:533.085000px;}
.y14a{bottom:537.605100px;}
.yd6{bottom:545.380350px;}
.yfc{bottom:545.862450px;}
.y34{bottom:547.639350px;}
.y50{bottom:549.916200px;}
.y11e{bottom:551.879850px;}
.yc8{bottom:555.549000px;}
.y6d{bottom:555.585000px;}
.y45{bottom:560.250000px;}
.y14f{bottom:561.647670px;}
.y94{bottom:562.950750px;}
.yd5{bottom:564.298350px;}
.yfb{bottom:564.888450px;}
.y157{bottom:569.617800px;}
.y33{bottom:570.139350px;}
.y4f{bottom:572.416200px;}
.ya7{bottom:573.438450px;}
.y93{bottom:573.962550px;}
.y6c{bottom:578.085000px;}
.yc7{bottom:578.250000px;}
.y12c{bottom:579.522300px;}
.y44{bottom:582.750000px;}
.yd4{bottom:583.216350px;}
.yfa{bottom:583.914450px;}
.y1b{bottom:588.109950px;}
.y4e{bottom:594.916200px;}
.ya6{bottom:596.370450px;}
.y6b{bottom:600.585000px;}
.yd3{bottom:602.134350px;}
.yf9{bottom:602.940450px;}
.y43{bottom:605.250000px;}
.y156{bottom:607.309800px;}
.y32{bottom:615.139350px;}
.y5{bottom:615.751200px;}
.y4d{bottom:617.416200px;}
.ya5{bottom:619.302450px;}
.y13c{bottom:620.286450px;}
.yd2{bottom:621.052350px;}
.y1a{bottom:621.625950px;}
.y6a{bottom:623.085000px;}
.y42{bottom:627.750000px;}
.y92{bottom:628.498200px;}
.y155{bottom:628.909800px;}
.y109{bottom:630.582900px;}
.y31{bottom:637.639350px;}
.y13b{bottom:639.672450px;}
.y14e{bottom:639.673050px;}
.yd1{bottom:639.974400px;}
.ya4{bottom:642.234450px;}
.y147{bottom:644.089500px;}
.y69{bottom:645.585000px;}
.yc3{bottom:646.391100px;}
.y11d{bottom:649.104300px;}
.y41{bottom:650.250000px;}
.y19{bottom:655.141950px;}
.y13a{bottom:659.058450px;}
.y30{bottom:660.139350px;}
.y11c{bottom:667.104300px;}
.y68{bottom:668.085000px;}
.y4c{bottom:670.224750px;}
.yc2{bottom:670.997100px;}
.y91{bottom:672.022200px;}
.y154{bottom:672.109800px;}
.y40{bottom:672.750000px;}
.y149{bottom:674.944800px;}
.yd0{bottom:677.818800px;}
.y139{bottom:678.444450px;}
.y146{bottom:680.089500px;}
.y4{bottom:681.300000px;}
.y90{bottom:683.034000px;}
.y11b{bottom:685.104300px;}
.ya3{bottom:688.087950px;}
.y18{bottom:688.657950px;}
.y67{bottom:690.585000px;}
.yf8{bottom:692.196600px;}
.y4b{bottom:692.724750px;}
.y3f{bottom:695.250000px;}
.yc1{bottom:695.603100px;}
.y138{bottom:697.830450px;}
.y153{bottom:700.909800px;}
.yf6{bottom:700.956750px;}
.y11a{bottom:703.104300px;}
.y2f{bottom:705.139350px;}
.y66{bottom:713.085000px;}
.y15a{bottom:714.944250px;}
.y4a{bottom:715.224750px;}
.y137{bottom:717.216450px;}
.y89{bottom:718.795650px;}
.y148{bottom:719.944800px;}
.yc0{bottom:720.209100px;}
.y119{bottom:721.104300px;}
.y17{bottom:722.173950px;}
.yf5{bottom:722.376750px;}
.y3{bottom:726.300000px;}
.y8f{bottom:726.558000px;}
.y2e{bottom:727.639350px;}
.y152{bottom:729.709800px;}
.y65{bottom:735.585000px;}
.y136{bottom:736.602450px;}
.y8e{bottom:737.569650px;}
.y3e{bottom:740.250000px;}
.yf4{bottom:743.796750px;}
.ybe{bottom:748.406400px;}
.ybf{bottom:748.415100px;}
.y2d{bottom:750.139350px;}
.y88{bottom:755.718150px;}
.y135{bottom:755.988450px;}
.y118{bottom:757.104300px;}
.y64{bottom:758.085000px;}
.y159{bottom:763.544250px;}
.yf3{bottom:765.216750px;}
.y85{bottom:769.578150px;}
.y2c{bottom:772.639350px;}
.yaa{bottom:773.918250px;}
.y117{bottom:775.104300px;}
.ybd{bottom:776.612400px;}
.y63{bottom:780.585000px;}
.y8d{bottom:781.093650px;}
.y15{bottom:786.139350px;}
.yf2{bottom:786.636750px;}
.y8c{bottom:792.100650px;}
.y87{bottom:792.640650px;}
.y116{bottom:793.104300px;}
.y134{bottom:794.760450px;}
.y49{bottom:796.500000px;}
.ya9{bottom:796.940250px;}
.y84{bottom:799.570650px;}
.y62{bottom:803.085000px;}
.yf1{bottom:808.056750px;}
.y14{bottom:808.639350px;}
.y133{bottom:814.146450px;}
.y115{bottom:814.704300px;}
.y114{bottom:814.704450px;}
.y2b{bottom:817.639350px;}
.y48{bottom:819.000000px;}
.y61{bottom:825.585000px;}
.ybc{bottom:825.813450px;}
.yf0{bottom:829.476750px;}
.y83{bottom:829.563150px;}
.y13{bottom:831.139350px;}
.y132{bottom:833.532450px;}
.y113{bottom:836.304450px;}
.y47{bottom:841.500000px;}
.ya8{bottom:842.990700px;}
.y143{bottom:843.760200px;}
.y60{bottom:848.085000px;}
.y8b{bottom:849.646200px;}
.ybb{bottom:850.404450px;}
.yee{bottom:850.884450px;}
.yef{bottom:850.890600px;}
.y131{bottom:852.918450px;}
.y12{bottom:853.639350px;}
.y112{bottom:854.304450px;}
.y46{bottom:864.000000px;}
.y82{bottom:866.485650px;}
.y5f{bottom:870.585000px;}
.y15b{bottom:871.415100px;}
.yed{bottom:872.304450px;}
.y11{bottom:876.139350px;}
.y158{bottom:879.635250px;}
.y2a{bottom:885.139350px;}
.yf7{bottom:899.946750px;}
.y29{bottom:907.639350px;}
.y5e{bottom:915.585000px;}
.y10{bottom:921.139350px;}
.yab{bottom:925.696350px;}
.y28{bottom:930.139350px;}
.y81{bottom:993.911850px;}
.y14d{bottom:997.767600px;}
.y16{bottom:1001.249850px;}
.ha{height:34.453125px;}
.h26{height:41.015625px;}
.h24{height:42.011719px;}
.h1{height:45.729492px;}
.h2{height:47.373047px;}
.h9{height:47.920898px;}
.h2c{height:48.486006px;}
.hd{height:49.183594px;}
.h11{height:49.886719px;}
.h14{height:50.414062px;}
.h1b{height:50.833088px;}
.h2b{height:51.535877px;}
.he{height:51.679688px;}
.h10{height:52.277344px;}
.h1e{height:53.059957px;}
.h21{height:57.380859px;}
.h2d{height:57.888638px;}
.hb{height:58.800000px;}
.h1f{height:60.990234px;}
.h1d{height:61.424441px;}
.h20{height:61.425041px;}
.h16{height:61.479492px;}
.h15{height:65.346680px;}
.h2e{height:69.703125px;}
.h7{height:73.775391px;}
.h17{height:74.059570px;}
.h13{height:74.830078px;}
.h30{height:77.519531px;}
.h8{height:78.416016px;}
.h12{height:81.972656px;}
.h22{height:82.772461px;}
.hc{height:87.128906px;}
.h6{height:90.169922px;}
.h1a{height:94.032488px;}
.h19{height:94.033088px;}
.h18{height:94.051688px;}
.h1c{height:94.074488px;}
.h23{height:94.268555px;}
.h4{height:99.975586px;}
.h25{height:100.198242px;}
.h29{height:102.465820px;}
.h31{height:107.666016px;}
.h2a{height:108.911133px;}
.h2f{height:117.624023px;}
.h5{height:122.850082px;}
.h28{height:124.716797px;}
.hf{height:129.199219px;}
.h27{height:130.693359px;}
.h3{height:258.398438px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:54.000000px;}
.x64{left:60.082950px;}
.x34{left:65.694000px;}
.x32{left:70.005000px;}
.x44{left:73.800000px;}
.x4b{left:78.985200px;}
.xb{left:82.566150px;}
.x65{left:83.734950px;}
.x33{left:100.650000px;}
.x4e{left:107.962500px;}
.x46{left:109.800000px;}
.x54{left:111.004350px;}
.x1d{left:117.730950px;}
.x20{left:118.905600px;}
.x10{left:121.596300px;}
.x9{left:125.542950px;}
.x4f{left:144.057750px;}
.x14{left:168.336450px;}
.x12{left:169.918500px;}
.x43{left:172.320000px;}
.x4c{left:174.605850px;}
.x1{left:178.200000px;}
.x55{left:183.085950px;}
.x58{left:194.214300px;}
.x5e{left:196.298357px;}
.x24{left:201.195000px;}
.x59{left:210.511800px;}
.x31{left:250.246950px;}
.x29{left:263.038200px;}
.x50{left:267.189150px;}
.x42{left:270.563700px;}
.x21{left:275.439450px;}
.x1f{left:281.014350px;}
.x51{left:296.157900px;}
.x63{left:298.819650px;}
.x57{left:301.488900px;}
.x35{left:322.433850px;}
.x52{left:332.956200px;}
.x56{left:335.100000px;}
.x40{left:337.239450px;}
.x5{left:353.700000px;}
.xc{left:364.359000px;}
.x36{left:366.813450px;}
.x53{left:369.545100px;}
.x3c{left:377.597250px;}
.x66{left:383.523900px;}
.x18{left:384.600000px;}
.x15{left:386.100000px;}
.x13{left:400.996200px;}
.x19{left:421.990650px;}
.x2{left:423.158250px;}
.xa{left:428.400000px;}
.xd{left:435.901950px;}
.x37{left:444.746100px;}
.x41{left:451.908300px;}
.x38{left:457.438050px;}
.x48{left:461.958150px;}
.x26{left:468.150450px;}
.x22{left:477.027900px;}
.x5f{left:479.081700px;}
.x2a{left:482.560200px;}
.x2c{left:487.198575px;}
.x27{left:490.316325px;}
.x11{left:491.374950px;}
.x4d{left:494.532150px;}
.x25{left:495.681450px;}
.x2d{left:503.871075px;}
.x30{left:507.302325px;}
.x2b{left:511.694325px;}
.x2f{left:516.600450px;}
.x45{left:520.200000px;}
.xf{left:522.000000px;}
.x39{left:534.298500px;}
.x3a{left:546.990450px;}
.x61{left:554.845950px;}
.x4{left:569.561550px;}
.x60{left:573.553350px;}
.xe{left:582.190050px;}
.x5b{left:587.884125px;}
.x1a{left:589.653150px;}
.x28{left:600.205200px;}
.x23{left:609.533400px;}
.x47{left:611.477850px;}
.x5c{left:613.849950px;}
.x5d{left:617.255155px;}
.x3b{left:618.533400px;}
.x16{left:622.725300px;}
.x62{left:624.648150px;}
.x2e{left:630.902700px;}
.x5a{left:638.364750px;}
.x1e{left:659.371800px;}
.x3e{left:692.970600px;}
.x3{left:696.407250px;}
.x17{left:718.905450px;}
.x49{left:733.843800px;}
.x3f{left:764.513550px;}
.x1b{left:775.269150px;}
.x7{left:805.240350px;}
.x4a{left:832.947750px;}
.x3d{left:862.159350px;}
.x1c{left:864.337500px;}
.x8{left:867.199350px;}
@media print{
.v2{vertical-align:-49.728000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:21.312000pt;}
.v4{vertical-align:24.863467pt;}
.v3{vertical-align:37.664000pt;}
.v1{vertical-align:49.728000pt;}
.ls5{letter-spacing:-4.480000pt;}
.lsa{letter-spacing:-2.880000pt;}
.ls4{letter-spacing:-2.611840pt;}
.ls8{letter-spacing:-0.522368pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:1.664000pt;}
.ls9{letter-spacing:4.784000pt;}
.ls3{letter-spacing:6.666667pt;}
.ls2{letter-spacing:16.000000pt;}
.ls7{letter-spacing:78.208000pt;}
.ls6{letter-spacing:78.240000pt;}
.ws34{word-spacing:-160.000000pt;}
.ws39{word-spacing:-141.120000pt;}
.ws35{word-spacing:-133.333333pt;}
.ws30{word-spacing:-127.450667pt;}
.ws2b{word-spacing:-122.666667pt;}
.ws9{word-spacing:-106.666667pt;}
.ws23{word-spacing:-101.333333pt;}
.ws3{word-spacing:-96.000000pt;}
.ws16{word-spacing:-90.666667pt;}
.ws0{word-spacing:-88.320000pt;}
.ws38{word-spacing:-85.333333pt;}
.ws10{word-spacing:-80.000000pt;}
.ws1a{word-spacing:-74.666667pt;}
.ws37{word-spacing:-70.869569pt;}
.wsb{word-spacing:-64.000000pt;}
.ws36{word-spacing:-63.092267pt;}
.ws4{word-spacing:-58.666667pt;}
.ws1f{word-spacing:-58.389333pt;}
.ws2f{word-spacing:-56.279467pt;}
.wse{word-spacing:-54.835200pt;}
.ws25{word-spacing:-54.227200pt;}
.ws24{word-spacing:-54.080000pt;}
.ws31{word-spacing:-50.698133pt;}
.ws20{word-spacing:-50.316800pt;}
.wsc{word-spacing:-47.462400pt;}
.ws2a{word-spacing:-45.632000pt;}
.ws15{word-spacing:-36.160000pt;}
.wsd{word-spacing:-35.206400pt;}
.ws1{word-spacing:-33.749333pt;}
.ws26{word-spacing:-30.336000pt;}
.ws3a{word-spacing:-30.133333pt;}
.ws29{word-spacing:-27.722667pt;}
.ws27{word-spacing:-23.507200pt;}
.wsf{word-spacing:-21.696000pt;}
.ws11{word-spacing:-18.080000pt;}
.ws2{word-spacing:-17.064021pt;}
.ws18{word-spacing:-16.874667pt;}
.wsa{word-spacing:-14.464000pt;}
.ws5{word-spacing:-13.258667pt;}
.ws6{word-spacing:-11.306667pt;}
.ws19{word-spacing:-9.837931pt;}
.ws1c{word-spacing:-9.315563pt;}
.ws1b{word-spacing:-8.432512pt;}
.ws1d{word-spacing:-7.910144pt;}
.ws8{word-spacing:-6.666667pt;}
.ws1e{word-spacing:-0.576000pt;}
.ws7{word-spacing:0.000000pt;}
.ws33{word-spacing:0.306667pt;}
.ws21{word-spacing:2.944000pt;}
.ws22{word-spacing:3.392000pt;}
.ws12{word-spacing:5.184000pt;}
.ws2e{word-spacing:5.248000pt;}
.ws32{word-spacing:5.440000pt;}
.ws13{word-spacing:8.000000pt;}
.ws28{word-spacing:9.920000pt;}
.ws2d{word-spacing:18.432000pt;}
.ws14{word-spacing:22.720000pt;}
.ws2c{word-spacing:35.712000pt;}
.ws17{word-spacing:62.784000pt;}
._59{margin-left:-662.170667pt;}
._4e{margin-left:-493.120000pt;}
._4a{margin-left:-396.311467pt;}
._5c{margin-left:-318.798400pt;}
._5e{margin-left:-290.416533pt;}
._3f{margin-left:-262.656000pt;}
._50{margin-left:-247.529067pt;}
._3c{margin-left:-233.806400pt;}
._54{margin-left:-224.394667pt;}
._39{margin-left:-217.501867pt;}
._4b{margin-left:-214.077867pt;}
._40{margin-left:-205.504000pt;}
._31{margin-left:-200.842667pt;}
._5b{margin-left:-199.937600pt;}
._47{margin-left:-191.126933pt;}
._3d{margin-left:-175.985600pt;}
._56{margin-left:-166.250667pt;}
._4d{margin-left:-139.226667pt;}
._51{margin-left:-136.172267pt;}
._5d{margin-left:-133.277333pt;}
._62{margin-left:-112.159122pt;}
._35{margin-left:-105.437333pt;}
._38{margin-left:-98.891200pt;}
._3a{margin-left:-96.641600pt;}
._3e{margin-left:-95.385067pt;}
._3b{margin-left:-91.574933pt;}
._57{margin-left:-88.197333pt;}
._37{margin-left:-86.538667pt;}
._5f{margin-left:-83.732267pt;}
._5a{margin-left:-80.555200pt;}
._53{margin-left:-74.018133pt;}
._4f{margin-left:-65.749333pt;}
._52{margin-left:-54.071467pt;}
._33{margin-left:-52.095467pt;}
._34{margin-left:-46.208000pt;}
._36{margin-left:-34.189867pt;}
._63{margin-left:-31.060323pt;}
._64{margin-left:-29.729076pt;}
._4c{margin-left:-27.722667pt;}
._32{margin-left:-22.901333pt;}
._48{margin-left:-15.035733pt;}
._b{margin-left:-13.986133pt;}
._65{margin-left:-13.076800pt;}
._30{margin-left:-8.786133pt;}
._5{margin-left:-7.704533pt;}
._d{margin-left:-6.406400pt;}
._6{margin-left:-5.062933pt;}
._1{margin-left:-4.118400pt;}
._2{margin-left:-3.115200pt;}
._3{margin-left:-2.029867pt;}
._0{margin-left:-0.968000pt;}
._9{width:1.286400pt;}
._a{width:2.179200pt;}
._8{width:3.456000pt;}
._1b{width:4.387200pt;}
._4{width:5.376000pt;}
._7{width:6.476800pt;}
._18{width:8.006400pt;}
._1a{width:9.626667pt;}
._1f{width:10.899200pt;}
._13{width:12.569600pt;}
._2f{width:13.559467pt;}
._e{width:15.552000pt;}
._17{width:16.902400pt;}
._11{width:18.617600pt;}
._1d{width:20.199467pt;}
._1e{width:21.306133pt;}
._23{width:22.316800pt;}
._26{width:23.220800pt;}
._49{width:24.411200pt;}
._2d{width:25.405867pt;}
._21{width:26.317867pt;}
._22{width:27.429333pt;}
._19{width:28.787200pt;}
._1c{width:29.757867pt;}
._2b{width:31.125333pt;}
._2e{width:32.396267pt;}
._12{width:33.734400pt;}
._14{width:35.195200pt;}
._41{width:37.888000pt;}
._28{width:39.129600pt;}
._44{width:40.195733pt;}
._25{width:41.124267pt;}
._24{width:42.343467pt;}
._29{width:43.308800pt;}
._f{width:44.652800pt;}
._20{width:45.658667pt;}
._45{width:48.492800pt;}
._46{width:49.786667pt;}
._2a{width:58.444800pt;}
._2c{width:61.985067pt;}
._10{width:64.128000pt;}
._42{width:69.760000pt;}
._43{width:74.240000pt;}
._60{width:76.032000pt;}
._15{width:77.184000pt;}
._27{width:81.781867pt;}
._c{width:82.816000pt;}
._16{width:109.056000pt;}
._61{width:114.688000pt;}
._55{width:221.008533pt;}
._58{width:247.381867pt;}
.fsf{font-size:37.312000pt;}
.fs7{font-size:42.666667pt;}
.fse{font-size:43.530667pt;}
.fs12{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs13{font-size:63.092267pt;}
.fsa{font-size:64.000000pt;}
.fs14{font-size:70.869569pt;}
.fs8{font-size:74.666667pt;}
.fsc{font-size:80.000000pt;}
.fs15{font-size:85.333333pt;}
.fs4{font-size:87.061333pt;}
.fsd{font-size:90.666667pt;}
.fs6{font-size:96.000000pt;}
.fs10{font-size:101.333333pt;}
.fs9{font-size:106.666667pt;}
.fs5{font-size:117.333333pt;}
.fs11{font-size:122.666667pt;}
.fs2{font-size:133.333333pt;}
.fs16{font-size:144.000000pt;}
.fs3{font-size:149.333333pt;}
.fsb{font-size:160.000000pt;}
.fs1{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:32.830533pt;}
.yf{bottom:34.429467pt;}
.y2{bottom:52.006800pt;}
.y1{bottom:66.673467pt;}
.yec{bottom:97.914933pt;}
.ycf{bottom:112.797067pt;}
.y80{bottom:113.853333pt;}
.yeb{bottom:114.734667pt;}
.y12f{bottom:114.928267pt;}
.yb2{bottom:117.098667pt;}
.ya2{bottom:121.021867pt;}
.y110{bottom:122.292800pt;}
.y5d{bottom:124.097333pt;}
.yea{bottom:131.554400pt;}
.yb1{bottom:133.690667pt;}
.y7f{bottom:133.853333pt;}
.y12e{bottom:134.128267pt;}
.yce{bottom:140.221067pt;}
.y10f{bottom:141.076800pt;}
.y5c{bottom:144.097333pt;}
.yd{bottom:145.450000pt;}
.ye9{bottom:148.374000pt;}
.ye8{bottom:148.381467pt;}
.yb0{bottom:150.282667pt;}
.y12d{bottom:153.328267pt;}
.y7e{bottom:153.853333pt;}
.y8a{bottom:154.653333pt;}
.ya1{bottom:159.709867pt;}
.y10e{bottom:159.860800pt;}
.yc{bottom:163.050000pt;}
.y141{bottom:163.688133pt;}
.y5b{bottom:164.097333pt;}
.y27{bottom:164.190000pt;}
.ya0{bottom:169.488800pt;}
.yae{bottom:170.065467pt;}
.yaf{bottom:170.070000pt;}
.y7d{bottom:173.853333pt;}
.y86{bottom:174.653333pt;}
.y130{bottom:177.899333pt;}
.y10d{bottom:178.644800pt;}
.ye7{bottom:182.013467pt;}
.y5a{bottom:184.097333pt;}
.y26{bottom:184.190000pt;}
.yad{bottom:189.857467pt;}
.y7c{bottom:193.853333pt;}
.ycd{bottom:195.068533pt;}
.y10c{bottom:197.428800pt;}
.ye6{bottom:198.833067pt;}
.y140{bottom:202.088133pt;}
.y25{bottom:204.190000pt;}
.y9f{bottom:208.864800pt;}
.y59{bottom:212.751467pt;}
.y7b{bottom:213.853333pt;}
.ye5{bottom:215.652800pt;}
.y9e{bottom:218.643733pt;}
.y111{bottom:221.999733pt;}
.yac{bottom:223.032267pt;}
.y24{bottom:224.190000pt;}
.ye4{bottom:232.472400pt;}
.ye3{bottom:232.479867pt;}
.y58{bottom:232.751467pt;}
.y7a{bottom:233.853333pt;}
.y15d{bottom:234.758800pt;}
.y13f{bottom:240.488133pt;}
.y12b{bottom:241.007867pt;}
.y23{bottom:244.190000pt;}
.yb{bottom:248.042667pt;}
.y57{bottom:252.751467pt;}
.y79{bottom:253.853333pt;}
.yc6{bottom:256.316000pt;}
.y9d{bottom:258.019733pt;}
.y12a{bottom:258.831867pt;}
.y13e{bottom:259.688133pt;}
.y15c{bottom:264.092133pt;}
.ye2{bottom:266.111867pt;}
.y3d{bottom:266.790533pt;}
.y9c{bottom:267.807867pt;}
.y56{bottom:272.751467pt;}
.y78{bottom:273.853333pt;}
.y129{bottom:276.655867pt;}
.ye1{bottom:282.931467pt;}
.y22{bottom:284.190000pt;}
.yc5{bottom:285.868000pt;}
.y108{bottom:286.349333pt;}
.y3c{bottom:286.790533pt;}
.yba{bottom:286.843600pt;}
.ya{bottom:288.098667pt;}
.y77{bottom:293.853333pt;}
.y128{bottom:294.479867pt;}
.y13d{bottom:298.088133pt;}
.ye0{bottom:299.751200pt;}
.y21{bottom:304.190000pt;}
.yb9{bottom:306.299600pt;}
.y107{bottom:306.461333pt;}
.y106{bottom:306.468267pt;}
.y9b{bottom:306.495867pt;}
.y3b{bottom:306.790533pt;}
.y127{bottom:312.303867pt;}
.y76{bottom:313.853333pt;}
.y9a{bottom:316.284133pt;}
.ydf{bottom:316.570933pt;}
.yde{bottom:316.578267pt;}
.y55{bottom:319.592000pt;}
.y20{bottom:324.190000pt;}
.yb8{bottom:325.755600pt;}
.y105{bottom:326.580267pt;}
.y3a{bottom:326.790533pt;}
.y9{bottom:328.154667pt;}
.y126{bottom:330.127867pt;}
.y75{bottom:333.853333pt;}
.y54{bottom:339.592000pt;}
.y104{bottom:343.492267pt;}
.y1f{bottom:344.190000pt;}
.yb7{bottom:345.211600pt;}
.y142{bottom:345.248933pt;}
.y39{bottom:346.790533pt;}
.y125{bottom:347.951867pt;}
.yc4{bottom:348.160400pt;}
.ydd{bottom:350.210267pt;}
.y74{bottom:353.853333pt;}
.y99{bottom:354.972133pt;}
.y151{bottom:356.721167pt;}
.y103{bottom:363.604267pt;}
.y102{bottom:363.627067pt;}
.yb6{bottom:364.667600pt;}
.y98{bottom:364.760400pt;}
.y38{bottom:366.790533pt;}
.ydc{bottom:367.030000pt;}
.ydb{bottom:367.037333pt;}
.y8{bottom:368.210667pt;}
.y73{bottom:373.853333pt;}
.y124{bottom:383.615867pt;}
.y101{bottom:383.739067pt;}
.yb5{bottom:384.123600pt;}
.y37{bottom:386.790533pt;}
.y72{bottom:393.853333pt;}
.y10b{bottom:395.613733pt;}
.y53{bottom:398.246133pt;}
.y100{bottom:400.651067pt;}
.yda{bottom:400.669333pt;}
.y123{bottom:401.439867pt;}
.ycc{bottom:403.516000pt;}
.yb4{bottom:403.579600pt;}
.y7{bottom:408.266667pt;}
.y10a{bottom:411.613733pt;}
.y97{bottom:413.236533pt;}
.y71{bottom:413.853333pt;}
.yd9{bottom:417.489067pt;}
.yd8{bottom:417.518533pt;}
.yff{bottom:417.563067pt;}
.y52{bottom:418.246133pt;}
.y122{bottom:419.263867pt;}
.y1e{bottom:425.874400pt;}
.y36{bottom:426.790533pt;}
.ycb{bottom:426.892000pt;}
.yca{bottom:426.892933pt;}
.y150{bottom:430.270916pt;}
.y70{bottom:433.853333pt;}
.y145{bottom:436.370533pt;}
.y121{bottom:437.087867pt;}
.y14c{bottom:440.015840pt;}
.yb3{bottom:442.493600pt;}
.y1d{bottom:445.874400pt;}
.yc9{bottom:450.268933pt;}
.yd7{bottom:451.150533pt;}
.yfe{bottom:451.387067pt;}
.y96{bottom:451.924533pt;}
.y6f{bottom:453.853333pt;}
.y120{bottom:454.911867pt;}
.y14b{bottom:458.943520pt;}
.y95{bottom:461.712667pt;}
.y1c{bottom:465.874400pt;}
.y35{bottom:466.790533pt;}
.y6{bottom:467.600000pt;}
.yfd{bottom:468.299067pt;}
.y144{bottom:468.370533pt;}
.y51{bottom:468.814400pt;}
.y11f{bottom:472.735867pt;}
.y6e{bottom:473.853333pt;}
.y14a{bottom:477.871200pt;}
.yd6{bottom:484.782533pt;}
.yfc{bottom:485.211067pt;}
.y34{bottom:486.790533pt;}
.y50{bottom:488.814400pt;}
.y11e{bottom:490.559867pt;}
.yc8{bottom:493.821333pt;}
.y6d{bottom:493.853333pt;}
.y45{bottom:498.000000pt;}
.y14f{bottom:499.242373pt;}
.y94{bottom:500.400667pt;}
.yd5{bottom:501.598533pt;}
.yfb{bottom:502.123067pt;}
.y157{bottom:506.326933pt;}
.y33{bottom:506.790533pt;}
.y4f{bottom:508.814400pt;}
.ya7{bottom:509.723067pt;}
.y93{bottom:510.188933pt;}
.y6c{bottom:513.853333pt;}
.yc7{bottom:514.000000pt;}
.y12c{bottom:515.130933pt;}
.y44{bottom:518.000000pt;}
.yd4{bottom:518.414533pt;}
.yfa{bottom:519.035067pt;}
.y1b{bottom:522.764400pt;}
.y4e{bottom:528.814400pt;}
.ya6{bottom:530.107067pt;}
.y6b{bottom:533.853333pt;}
.yd3{bottom:535.230533pt;}
.yf9{bottom:535.947067pt;}
.y43{bottom:538.000000pt;}
.y156{bottom:539.830933pt;}
.y32{bottom:546.790533pt;}
.y5{bottom:547.334400pt;}
.y4d{bottom:548.814400pt;}
.ya5{bottom:550.491067pt;}
.y13c{bottom:551.365733pt;}
.yd2{bottom:552.046533pt;}
.y1a{bottom:552.556400pt;}
.y6a{bottom:553.853333pt;}
.y42{bottom:558.000000pt;}
.y92{bottom:558.665067pt;}
.y155{bottom:559.030933pt;}
.y109{bottom:560.518133pt;}
.y31{bottom:566.790533pt;}
.y13b{bottom:568.597733pt;}
.y14e{bottom:568.598267pt;}
.yd1{bottom:568.866133pt;}
.ya4{bottom:570.875067pt;}
.y147{bottom:572.524000pt;}
.y69{bottom:573.853333pt;}
.yc3{bottom:574.569867pt;}
.y11d{bottom:576.981600pt;}
.y41{bottom:578.000000pt;}
.y19{bottom:582.348400pt;}
.y13a{bottom:585.829733pt;}
.y30{bottom:586.790533pt;}
.y11c{bottom:592.981600pt;}
.y68{bottom:593.853333pt;}
.y4c{bottom:595.755333pt;}
.yc2{bottom:596.441867pt;}
.y91{bottom:597.353067pt;}
.y154{bottom:597.430933pt;}
.y40{bottom:598.000000pt;}
.y149{bottom:599.950933pt;}
.yd0{bottom:602.505600pt;}
.y139{bottom:603.061733pt;}
.y146{bottom:604.524000pt;}
.y4{bottom:605.600000pt;}
.y90{bottom:607.141333pt;}
.y11b{bottom:608.981600pt;}
.ya3{bottom:611.633733pt;}
.y18{bottom:612.140400pt;}
.y67{bottom:613.853333pt;}
.yf8{bottom:615.285867pt;}
.y4b{bottom:615.755333pt;}
.y3f{bottom:618.000000pt;}
.yc1{bottom:618.313867pt;}
.y138{bottom:620.293733pt;}
.y153{bottom:623.030933pt;}
.yf6{bottom:623.072667pt;}
.y11a{bottom:624.981600pt;}
.y2f{bottom:626.790533pt;}
.y66{bottom:633.853333pt;}
.y15a{bottom:635.506000pt;}
.y4a{bottom:635.755333pt;}
.y137{bottom:637.525733pt;}
.y89{bottom:638.929467pt;}
.y148{bottom:639.950933pt;}
.yc0{bottom:640.185867pt;}
.y119{bottom:640.981600pt;}
.y17{bottom:641.932400pt;}
.yf5{bottom:642.112667pt;}
.y3{bottom:645.600000pt;}
.y8f{bottom:645.829333pt;}
.y2e{bottom:646.790533pt;}
.y152{bottom:648.630933pt;}
.y65{bottom:653.853333pt;}
.y136{bottom:654.757733pt;}
.y8e{bottom:655.617467pt;}
.y3e{bottom:658.000000pt;}
.yf4{bottom:661.152667pt;}
.ybe{bottom:665.250133pt;}
.ybf{bottom:665.257867pt;}
.y2d{bottom:666.790533pt;}
.y88{bottom:671.749467pt;}
.y135{bottom:671.989733pt;}
.y118{bottom:672.981600pt;}
.y64{bottom:673.853333pt;}
.y159{bottom:678.706000pt;}
.yf3{bottom:680.192667pt;}
.y85{bottom:684.069467pt;}
.y2c{bottom:686.790533pt;}
.yaa{bottom:687.927333pt;}
.y117{bottom:688.981600pt;}
.ybd{bottom:690.322133pt;}
.y63{bottom:693.853333pt;}
.y8d{bottom:694.305467pt;}
.y15{bottom:698.790533pt;}
.yf2{bottom:699.232667pt;}
.y8c{bottom:704.089467pt;}
.y87{bottom:704.569467pt;}
.y116{bottom:704.981600pt;}
.y134{bottom:706.453733pt;}
.y49{bottom:708.000000pt;}
.ya9{bottom:708.391333pt;}
.y84{bottom:710.729467pt;}
.y62{bottom:713.853333pt;}
.yf1{bottom:718.272667pt;}
.y14{bottom:718.790533pt;}
.y133{bottom:723.685733pt;}
.y115{bottom:724.181600pt;}
.y114{bottom:724.181733pt;}
.y2b{bottom:726.790533pt;}
.y48{bottom:728.000000pt;}
.y61{bottom:733.853333pt;}
.ybc{bottom:734.056400pt;}
.yf0{bottom:737.312667pt;}
.y83{bottom:737.389467pt;}
.y13{bottom:738.790533pt;}
.y132{bottom:740.917733pt;}
.y113{bottom:743.381733pt;}
.y47{bottom:748.000000pt;}
.ya8{bottom:749.325067pt;}
.y143{bottom:750.009067pt;}
.y60{bottom:753.853333pt;}
.y8b{bottom:755.241067pt;}
.ybb{bottom:755.915067pt;}
.yee{bottom:756.341733pt;}
.yef{bottom:756.347200pt;}
.y131{bottom:758.149733pt;}
.y12{bottom:758.790533pt;}
.y112{bottom:759.381733pt;}
.y46{bottom:768.000000pt;}
.y82{bottom:770.209467pt;}
.y5f{bottom:773.853333pt;}
.y15b{bottom:774.591200pt;}
.yed{bottom:775.381733pt;}
.y11{bottom:778.790533pt;}
.y158{bottom:781.898000pt;}
.y2a{bottom:786.790533pt;}
.yf7{bottom:799.952667pt;}
.y29{bottom:806.790533pt;}
.y5e{bottom:813.853333pt;}
.y10{bottom:818.790533pt;}
.yab{bottom:822.841200pt;}
.y28{bottom:826.790533pt;}
.y81{bottom:883.477200pt;}
.y14d{bottom:886.904533pt;}
.y16{bottom:889.999867pt;}
.ha{height:30.625000pt;}
.h26{height:36.458333pt;}
.h24{height:37.343750pt;}
.h1{height:40.648438pt;}
.h2{height:42.109375pt;}
.h9{height:42.596354pt;}
.h2c{height:43.098672pt;}
.hd{height:43.718750pt;}
.h11{height:44.343750pt;}
.h14{height:44.812500pt;}
.h1b{height:45.184967pt;}
.h2b{height:45.809668pt;}
.he{height:45.937500pt;}
.h10{height:46.468750pt;}
.h1e{height:47.164406pt;}
.h21{height:51.005208pt;}
.h2d{height:51.456567pt;}
.hb{height:52.266667pt;}
.h1f{height:54.213542pt;}
.h1d{height:54.599503pt;}
.h20{height:54.600036pt;}
.h16{height:54.648438pt;}
.h15{height:58.085938pt;}
.h2e{height:61.958333pt;}
.h7{height:65.578125pt;}
.h17{height:65.830729pt;}
.h13{height:66.515625pt;}
.h30{height:68.906250pt;}
.h8{height:69.703125pt;}
.h12{height:72.864583pt;}
.h22{height:73.575521pt;}
.hc{height:77.447917pt;}
.h6{height:80.151042pt;}
.h1a{height:83.584433pt;}
.h19{height:83.584967pt;}
.h18{height:83.601500pt;}
.h1c{height:83.621767pt;}
.h23{height:83.794271pt;}
.h4{height:88.867188pt;}
.h25{height:89.065104pt;}
.h29{height:91.080729pt;}
.h31{height:95.703125pt;}
.h2a{height:96.809896pt;}
.h2f{height:104.554688pt;}
.h5{height:109.200073pt;}
.h28{height:110.859375pt;}
.hf{height:114.843750pt;}
.h27{height:116.171875pt;}
.h3{height:229.687500pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:48.000000pt;}
.x64{left:53.407067pt;}
.x34{left:58.394667pt;}
.x32{left:62.226667pt;}
.x44{left:65.600000pt;}
.x4b{left:70.209067pt;}
.xb{left:73.392133pt;}
.x65{left:74.431067pt;}
.x33{left:89.466667pt;}
.x4e{left:95.966667pt;}
.x46{left:97.600000pt;}
.x54{left:98.670533pt;}
.x1d{left:104.649733pt;}
.x20{left:105.693867pt;}
.x10{left:108.085600pt;}
.x9{left:111.593733pt;}
.x4f{left:128.051333pt;}
.x14{left:149.632400pt;}
.x12{left:151.038667pt;}
.x43{left:153.173333pt;}
.x4c{left:155.205200pt;}
.x1{left:158.400000pt;}
.x55{left:162.743067pt;}
.x58{left:172.634933pt;}
.x5e{left:174.487428pt;}
.x24{left:178.840000pt;}
.x59{left:187.121600pt;}
.x31{left:222.441733pt;}
.x29{left:233.811733pt;}
.x50{left:237.501467pt;}
.x42{left:240.501067pt;}
.x21{left:244.835067pt;}
.x1f{left:249.790533pt;}
.x51{left:263.251467pt;}
.x63{left:265.617467pt;}
.x57{left:267.990133pt;}
.x35{left:286.607867pt;}
.x52{left:295.961067pt;}
.x56{left:297.866667pt;}
.x40{left:299.768400pt;}
.x5{left:314.400000pt;}
.xc{left:323.874667pt;}
.x36{left:326.056400pt;}
.x53{left:328.484533pt;}
.x3c{left:335.642000pt;}
.x66{left:340.910133pt;}
.x18{left:341.866667pt;}
.x15{left:343.200000pt;}
.x13{left:356.441067pt;}
.x19{left:375.102800pt;}
.x2{left:376.140667pt;}
.xa{left:380.800000pt;}
.xd{left:387.468400pt;}
.x37{left:395.329867pt;}
.x41{left:401.696267pt;}
.x38{left:406.611600pt;}
.x48{left:410.629467pt;}
.x26{left:416.133733pt;}
.x22{left:424.024800pt;}
.x5f{left:425.850400pt;}
.x2a{left:428.942400pt;}
.x2c{left:433.065400pt;}
.x27{left:435.836733pt;}
.x11{left:436.777733pt;}
.x4d{left:439.584133pt;}
.x25{left:440.605733pt;}
.x2d{left:447.885400pt;}
.x30{left:450.935400pt;}
.x2b{left:454.839400pt;}
.x2f{left:459.200400pt;}
.x45{left:462.400000pt;}
.xf{left:464.000000pt;}
.x39{left:474.932000pt;}
.x3a{left:486.213733pt;}
.x61{left:493.196400pt;}
.x4{left:506.276933pt;}
.x60{left:509.825200pt;}
.xe{left:517.502267pt;}
.x5b{left:522.563667pt;}
.x1a{left:524.136133pt;}
.x28{left:533.515733pt;}
.x23{left:541.807467pt;}
.x47{left:543.535867pt;}
.x5c{left:545.644400pt;}
.x5d{left:548.671249pt;}
.x3b{left:549.807467pt;}
.x16{left:553.533600pt;}
.x62{left:555.242800pt;}
.x2e{left:560.802400pt;}
.x5a{left:567.435333pt;}
.x1e{left:586.108267pt;}
.x3e{left:615.973867pt;}
.x3{left:619.028667pt;}
.x17{left:639.027067pt;}
.x49{left:652.305600pt;}
.x3f{left:679.567600pt;}
.x1b{left:689.128133pt;}
.x7{left:715.769200pt;}
.x4a{left:740.398000pt;}
.x3d{left:766.363867pt;}
.x1c{left:768.300000pt;}
.x8{left:770.843867pt;}
}




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