
    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_73c4281f8d255ae8e63f3259.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.132000;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_b19696e3a77795c820ca62ab.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.930000;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_4ee26521150fe1b6f580fad1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.745000;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_b939d3dd7fdc0bcd133f81b1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f6d3e85edc929144ab5ef176.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.908203;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_762e2aa91ed312d4109adfa0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d1cb4c6171d43c39e18e3c55.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3fb97fc3802e4733f605ba90.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933594;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_f73409dc8917f29d9322c92e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.095703;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_33e1a3356283d3d1199268bd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.912598;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_4253eec5f9a1228e65b54485.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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);}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.977000px;}
.v3{vertical-align:33.000000px;}
.v4{vertical-align:66.000000px;}
.ls7{letter-spacing:-2.870400px;}
.ls6{letter-spacing:-2.220000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000300px;}
.ls3{letter-spacing:0.624000px;}
.ls1{letter-spacing:78.204000px;}
.ls5{letter-spacing:318.232800px;}
.ls4{letter-spacing:326.376000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-17.250000px;}
.ws33{word-spacing:-15.600000px;}
.ws4{word-spacing:-14.700000px;}
.ws39{word-spacing:-14.100000px;}
.ws5{word-spacing:-12.000000px;}
.ws0{word-spacing:-11.676000px;}
.ws2{word-spacing:-10.056750px;}
.ws28{word-spacing:-3.182400px;}
.ws24{word-spacing:-2.184000px;}
.ws45{word-spacing:-2.030400px;}
.ws3e{word-spacing:-1.804800px;}
.ws7{word-spacing:-1.646400px;}
.ws35{word-spacing:-1.622400px;}
.ws46{word-spacing:-1.353600px;}
.ws40{word-spacing:-1.240800px;}
.ws47{word-spacing:-0.958800px;}
.ws44{word-spacing:-0.902400px;}
.ws42{word-spacing:-0.676800px;}
.ws9{word-spacing:-0.624000px;}
.ws2e{word-spacing:-0.249600px;}
.ws8{word-spacing:-0.176400px;}
.ws2c{word-spacing:-0.062400px;}
.ws1{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.ws30{word-spacing:0.062400px;}
.ws27{word-spacing:0.124800px;}
.ws34{word-spacing:0.187200px;}
.ws41{word-spacing:0.338400px;}
.ws31{word-spacing:0.374400px;}
.ws43{word-spacing:0.451200px;}
.ws2b{word-spacing:0.811200px;}
.ws26{word-spacing:0.998400px;}
.ws3b{word-spacing:1.071600px;}
.ws2d{word-spacing:1.185600px;}
.ws2a{word-spacing:1.310400px;}
.ws23{word-spacing:1.435200px;}
.ws32{word-spacing:1.872000px;}
.ws25{word-spacing:1.996800px;}
.ws3c{word-spacing:2.086800px;}
.ws1c{word-spacing:2.184000px;}
.ws37{word-spacing:2.246400px;}
.ws3d{word-spacing:2.368800px;}
.ws1f{word-spacing:2.433600px;}
.ws1b{word-spacing:2.558400px;}
.ws29{word-spacing:2.808000px;}
.ws38{word-spacing:2.870400px;}
.ws2f{word-spacing:2.932800px;}
.ws3f{word-spacing:2.989200px;}
.ws21{word-spacing:2.995200px;}
.ws1e{word-spacing:3.120000px;}
.wsc{word-spacing:3.744000px;}
.ws20{word-spacing:4.118400px;}
.wsa{word-spacing:4.243200px;}
.ws36{word-spacing:4.430400px;}
.ws22{word-spacing:4.742400px;}
.ws3a{word-spacing:5.076000px;}
.ws1d{word-spacing:5.366400px;}
.wsb{word-spacing:6.864000px;}
.ws12{word-spacing:48.964200px;}
.wse{word-spacing:50.880000px;}
.ws10{word-spacing:50.995800px;}
.wsd{word-spacing:51.340800px;}
.wsf{word-spacing:77.435400px;}
.ws11{word-spacing:141.355800px;}
.ws1a{word-spacing:175.620000px;}
.ws14{word-spacing:195.213000px;}
.ws19{word-spacing:199.200000px;}
.ws18{word-spacing:209.100000px;}
.ws13{word-spacing:214.200000px;}
.ws15{word-spacing:236.547000px;}
.ws17{word-spacing:279.000000px;}
.ws16{word-spacing:303.232800px;}
._0{margin-left:-2891.338800px;}
._d{margin-left:-748.332000px;}
._f{margin-left:-220.176000px;}
._13{margin-left:-7.835280px;}
._8{margin-left:-6.454080px;}
._7{margin-left:-4.396380px;}
._3{margin-left:-3.282900px;}
._6{margin-left:-2.146200px;}
._5{margin-left:-1.062720px;}
._9{width:1.711080px;}
._b{width:2.998800px;}
._4{width:4.381500px;}
._a{width:5.783880px;}
._2{width:7.449300px;}
._1{width:9.188400px;}
._12{width:10.354680px;}
._11{width:11.429760px;}
._c{width:64.212000px;}
._1f{width:139.200000px;}
._20{width:149.100000px;}
._21{width:186.000000px;}
._1e{width:202.950000px;}
._1d{width:213.582000px;}
._1b{width:224.100000px;}
._14{width:242.280000px;}
._18{width:244.200000px;}
._19{width:246.000000px;}
._22{width:251.376000px;}
._1c{width:261.000000px;}
._15{width:277.950000px;}
._17{width:292.950000px;}
._1a{width:297.300000px;}
._16{width:326.376000px;}
._10{width:1603.677000px;}
._e{width:2511.321600px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:27.984000px;}
.fsa{font-size:36.000000px;}
.fs5{font-size:40.227000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:46.800000px;}
.fs2{font-size:48.000000px;}
.fsc{font-size:56.400000px;}
.fs7{font-size:58.800000px;}
.fs1{font-size:60.000000px;}
.fsb{font-size:62.400000px;}
.fs4{font-size:69.000000px;}
.fs8{font-size:84.000000px;}
.fs3{font-size:93.000000px;}
.y31{bottom:-20.829150px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.583450px;}
.yc4{bottom:77.878200px;}
.ye1{bottom:79.602900px;}
.y65{bottom:87.194100px;}
.yfb{bottom:88.649850px;}
.y9f{bottom:89.074950px;}
.y15c{bottom:89.500200px;}
.y30{bottom:90.736350px;}
.yc3{bottom:95.878200px;}
.ye0{bottom:97.602900px;}
.y2f{bottom:104.236350px;}
.y64{bottom:105.194100px;}
.yfa{bottom:106.649850px;}
.y12f{bottom:106.933200px;}
.y9e{bottom:107.074950px;}
.y15b{bottom:107.500200px;}
.yc2{bottom:113.878200px;}
.ydf{bottom:115.602900px;}
.y2e{bottom:117.736350px;}
.y63{bottom:123.194100px;}
.yf9{bottom:124.649850px;}
.y12e{bottom:124.933200px;}
.y9d{bottom:125.074950px;}
.y15a{bottom:125.500200px;}
.y2d{bottom:131.236500px;}
.yc1{bottom:131.878200px;}
.yde{bottom:133.602900px;}
.yf8{bottom:142.649850px;}
.y12d{bottom:142.933200px;}
.y9c{bottom:143.074950px;}
.y159{bottom:143.500200px;}
.y2c{bottom:144.736500px;}
.ydd{bottom:151.602900px;}
.y2b{bottom:158.236500px;}
.y62{bottom:159.052350px;}
.yf7{bottom:160.649850px;}
.y12c{bottom:160.933200px;}
.y9b{bottom:161.074950px;}
.y158{bottom:161.500200px;}
.yc0{bottom:167.736450px;}
.ydc{bottom:169.602900px;}
.y2a{bottom:171.736650px;}
.yf6{bottom:178.649850px;}
.y12b{bottom:178.933200px;}
.y9a{bottom:179.074950px;}
.y157{bottom:179.500200px;}
.y29{bottom:185.236650px;}
.ydb{bottom:187.602900px;}
.yf5{bottom:196.649850px;}
.y12a{bottom:196.933200px;}
.y99{bottom:197.074950px;}
.y156{bottom:197.500200px;}
.y28{bottom:198.736650px;}
.ybf{bottom:203.594700px;}
.yda{bottom:205.602900px;}
.y27{bottom:212.236800px;}
.y61{bottom:212.769000px;}
.yf4{bottom:214.649850px;}
.y129{bottom:214.933200px;}
.y98{bottom:215.074950px;}
.y155{bottom:215.500200px;}
.ybe{bottom:221.594700px;}
.yd9{bottom:223.602900px;}
.y26{bottom:225.736800px;}
.y60{bottom:230.769000px;}
.yf3{bottom:232.649850px;}
.y128{bottom:232.933200px;}
.y97{bottom:233.074950px;}
.y154{bottom:233.500200px;}
.y25{bottom:239.236800px;}
.ybd{bottom:239.594700px;}
.yd8{bottom:241.602900px;}
.y5f{bottom:248.769000px;}
.yf2{bottom:250.649850px;}
.y127{bottom:250.933200px;}
.y96{bottom:251.074950px;}
.y153{bottom:251.500200px;}
.ybc{bottom:257.594700px;}
.y5e{bottom:266.769000px;}
.yf1{bottom:268.649850px;}
.y126{bottom:268.933200px;}
.y95{bottom:269.074950px;}
.y152{bottom:269.500200px;}
.ybb{bottom:275.594700px;}
.yd7{bottom:276.610650px;}
.y5d{bottom:284.769000px;}
.yf0{bottom:286.649850px;}
.y125{bottom:286.933200px;}
.y94{bottom:287.074950px;}
.y151{bottom:287.500200px;}
.yba{bottom:293.594700px;}
.y5c{bottom:302.769000px;}
.yef{bottom:304.649850px;}
.y124{bottom:304.933200px;}
.y93{bottom:305.074950px;}
.y150{bottom:305.500200px;}
.yd6{bottom:312.468900px;}
.y5b{bottom:320.769000px;}
.yee{bottom:322.649850px;}
.y123{bottom:322.933200px;}
.y92{bottom:323.074950px;}
.y14f{bottom:323.500200px;}
.yb9{bottom:329.452950px;}
.y5a{bottom:338.769000px;}
.yed{bottom:340.649850px;}
.y122{bottom:340.933200px;}
.y91{bottom:341.074950px;}
.y14e{bottom:341.500200px;}
.y24{bottom:352.131150px;}
.y59{bottom:356.769000px;}
.yec{bottom:358.649850px;}
.y121{bottom:358.933200px;}
.y90{bottom:359.074950px;}
.y14d{bottom:359.500200px;}
.yd5{bottom:364.484700px;}
.yb8{bottom:365.311200px;}
.y23{bottom:368.631150px;}
.y58{bottom:374.769000px;}
.yeb{bottom:376.649850px;}
.y120{bottom:376.933200px;}
.y8f{bottom:377.074950px;}
.y14c{bottom:377.500200px;}
.yd4{bottom:382.484700px;}
.yb7{bottom:383.311200px;}
.y22{bottom:385.131150px;}
.y57{bottom:392.769000px;}
.yea{bottom:394.649850px;}
.y11f{bottom:394.933200px;}
.y8e{bottom:395.074950px;}
.y14b{bottom:395.500200px;}
.yd3{bottom:400.484700px;}
.yb6{bottom:401.311200px;}
.y21{bottom:401.631150px;}
.y56{bottom:410.769000px;}
.ye9{bottom:412.649850px;}
.y11e{bottom:412.933200px;}
.y8d{bottom:413.074950px;}
.y14a{bottom:413.500200px;}
.y20{bottom:418.131150px;}
.yd2{bottom:418.484700px;}
.yb5{bottom:419.311200px;}
.y55{bottom:428.768850px;}
.ye8{bottom:430.649850px;}
.y11d{bottom:430.933200px;}
.y8c{bottom:431.074950px;}
.y149{bottom:431.500200px;}
.y1f{bottom:434.631150px;}
.yd1{bottom:436.484700px;}
.yb4{bottom:437.311200px;}
.y54{bottom:446.768850px;}
.ye7{bottom:448.649850px;}
.y11c{bottom:448.933200px;}
.y8b{bottom:449.074950px;}
.y148{bottom:449.500200px;}
.y1e{bottom:451.131150px;}
.yd0{bottom:454.484700px;}
.yb3{bottom:455.311200px;}
.y53{bottom:464.768850px;}
.ye6{bottom:466.649850px;}
.y11b{bottom:466.933200px;}
.y8a{bottom:467.074950px;}
.y147{bottom:467.500200px;}
.y1d{bottom:467.631150px;}
.ycf{bottom:472.484700px;}
.yb2{bottom:473.311200px;}
.y52{bottom:482.768850px;}
.y1c{bottom:484.131150px;}
.ye5{bottom:484.649850px;}
.y11a{bottom:484.933200px;}
.y146{bottom:485.500200px;}
.yce{bottom:490.484700px;}
.yb1{bottom:491.311200px;}
.y1b{bottom:500.631150px;}
.y51{bottom:500.768850px;}
.ye4{bottom:502.649850px;}
.y89{bottom:502.933200px;}
.y145{bottom:503.500200px;}
.yb0{bottom:509.311200px;}
.y1a{bottom:517.131150px;}
.y50{bottom:518.768850px;}
.ye3{bottom:520.649850px;}
.y119{bottom:520.933200px;}
.y144{bottom:521.500200px;}
.ycd{bottom:523.485600px;}
.yaf{bottom:527.311200px;}
.y19{bottom:533.631150px;}
.y4f{bottom:536.768850px;}
.ye2{bottom:538.649850px;}
.y118{bottom:538.933200px;}
.y143{bottom:539.500200px;}
.yae{bottom:545.311200px;}
.ycc{bottom:547.860600px;}
.y4e{bottom:554.768850px;}
.y88{bottom:556.649850px;}
.y117{bottom:556.933200px;}
.y142{bottom:557.500200px;}
.yad{bottom:563.311200px;}
.y18{bottom:565.132050px;}
.ycb{bottom:570.261000px;}
.y4d{bottom:572.768850px;}
.y87{bottom:574.649850px;}
.y116{bottom:574.933200px;}
.yac{bottom:581.311200px;}
.y17{bottom:587.632050px;}
.y4c{bottom:590.768850px;}
.y86{bottom:592.649850px;}
.yca{bottom:592.661400px;}
.y115{bottom:592.933200px;}
.y141{bottom:593.358450px;}
.yab{bottom:599.311200px;}
.y4b{bottom:608.768850px;}
.y85{bottom:610.649850px;}
.y114{bottom:610.933200px;}
.y17c{bottom:611.689800px;}
.yc9{bottom:615.061800px;}
.yaa{bottom:617.311200px;}
.y4a{bottom:626.768850px;}
.y84{bottom:628.649850px;}
.y113{bottom:628.933200px;}
.y17b{bottom:629.689800px;}
.yc8{bottom:637.462200px;}
.y16{bottom:640.132050px;}
.y83{bottom:646.649850px;}
.y112{bottom:646.933200px;}
.y140{bottom:647.074950px;}
.y17a{bottom:647.689800px;}
.ya9{bottom:653.169450px;}
.y15{bottom:656.632050px;}
.yc7{bottom:659.862600px;}
.y49{bottom:662.627100px;}
.y82{bottom:664.649850px;}
.y111{bottom:664.933200px;}
.y13f{bottom:665.074950px;}
.y179{bottom:665.689800px;}
.yc6{bottom:668.112600px;}
.y14{bottom:673.132050px;}
.y81{bottom:682.649850px;}
.y110{bottom:682.933200px;}
.y13e{bottom:683.074950px;}
.y178{bottom:683.689800px;}
.ya8{bottom:689.027700px;}
.y13{bottom:689.632050px;}
.y80{bottom:700.649850px;}
.y10f{bottom:700.933200px;}
.y13d{bottom:701.074950px;}
.yc5{bottom:701.641950px;}
.y177{bottom:701.689800px;}
.y12{bottom:706.132050px;}
.ya7{bottom:707.027700px;}
.y7f{bottom:718.649850px;}
.y10e{bottom:718.933200px;}
.y13c{bottom:719.074950px;}
.y176{bottom:719.689800px;}
.y11{bottom:722.632050px;}
.ya6{bottom:725.027700px;}
.y48{bottom:731.344650px;}
.y7e{bottom:736.649850px;}
.y10d{bottom:736.933200px;}
.y13b{bottom:737.074950px;}
.y175{bottom:737.689800px;}
.y10{bottom:739.132050px;}
.ya5{bottom:743.027700px;}
.y47{bottom:749.344650px;}
.y7d{bottom:754.649850px;}
.y10c{bottom:754.933200px;}
.y13a{bottom:755.074950px;}
.yf{bottom:755.632050px;}
.y174{bottom:755.689800px;}
.ya4{bottom:761.027700px;}
.ye{bottom:772.132050px;}
.y7c{bottom:772.649850px;}
.y10b{bottom:772.933200px;}
.y139{bottom:773.074950px;}
.y173{bottom:773.689800px;}
.ya3{bottom:779.027700px;}
.yd{bottom:788.632050px;}
.y7b{bottom:790.649850px;}
.y10a{bottom:790.933200px;}
.y138{bottom:791.074950px;}
.y172{bottom:791.689800px;}
.ya2{bottom:797.027700px;}
.y46{bottom:797.344650px;}
.yc{bottom:805.132050px;}
.y7a{bottom:808.649850px;}
.y109{bottom:808.933200px;}
.y137{bottom:809.074950px;}
.y171{bottom:809.689800px;}
.y45{bottom:813.844650px;}
.ya1{bottom:815.027700px;}
.yb{bottom:821.632050px;}
.y79{bottom:826.649850px;}
.y108{bottom:826.933200px;}
.y136{bottom:827.074950px;}
.y170{bottom:827.689800px;}
.y44{bottom:830.344650px;}
.y78{bottom:844.649850px;}
.y107{bottom:844.933200px;}
.y135{bottom:845.074950px;}
.y16f{bottom:845.689800px;}
.y43{bottom:846.844650px;}
.ya0{bottom:850.885950px;}
.ya{bottom:853.132950px;}
.y77{bottom:862.649850px;}
.y106{bottom:862.933200px;}
.y134{bottom:863.074950px;}
.y42{bottom:863.344650px;}
.y16e{bottom:863.689800px;}
.y76{bottom:880.649850px;}
.y105{bottom:880.933200px;}
.y133{bottom:881.074950px;}
.y16d{bottom:881.689800px;}
.y75{bottom:898.649850px;}
.y104{bottom:898.933200px;}
.y132{bottom:899.074950px;}
.y16c{bottom:899.689800px;}
.y9{bottom:901.132950px;}
.y41{bottom:909.844650px;}
.y74{bottom:916.649850px;}
.y103{bottom:916.933200px;}
.y131{bottom:917.074950px;}
.y16b{bottom:917.689800px;}
.y8{bottom:919.132950px;}
.y40{bottom:926.344650px;}
.y73{bottom:934.649850px;}
.y102{bottom:934.933200px;}
.y130{bottom:935.074950px;}
.y16a{bottom:935.689800px;}
.y3f{bottom:942.844650px;}
.y7{bottom:952.134000px;}
.y72{bottom:952.649850px;}
.y101{bottom:952.933200px;}
.y169{bottom:953.689800px;}
.y3e{bottom:959.344650px;}
.y71{bottom:970.649850px;}
.y100{bottom:970.933200px;}
.y168{bottom:971.689800px;}
.y3d{bottom:975.844650px;}
.y6{bottom:976.134000px;}
.y70{bottom:988.649850px;}
.yff{bottom:988.933200px;}
.y167{bottom:989.689800px;}
.y3c{bottom:992.344650px;}
.y6f{bottom:1006.649850px;}
.yfe{bottom:1006.933200px;}
.y166{bottom:1007.689800px;}
.y3b{bottom:1008.844650px;}
.y6e{bottom:1024.649850px;}
.yfd{bottom:1024.933200px;}
.y3a{bottom:1025.344650px;}
.y165{bottom:1025.689800px;}
.y39{bottom:1041.844650px;}
.y6d{bottom:1042.649850px;}
.y164{bottom:1043.689800px;}
.y38{bottom:1058.344650px;}
.y6c{bottom:1060.649850px;}
.yfc{bottom:1060.791450px;}
.y163{bottom:1061.689800px;}
.y4{bottom:1065.787800px;}
.y37{bottom:1074.844650px;}
.y6b{bottom:1078.649850px;}
.y162{bottom:1079.689800px;}
.y36{bottom:1091.344650px;}
.y6a{bottom:1096.649850px;}
.y161{bottom:1097.689800px;}
.y35{bottom:1107.844650px;}
.y3{bottom:1109.299500px;}
.y69{bottom:1114.649850px;}
.y160{bottom:1115.689800px;}
.y2{bottom:1127.299500px;}
.y68{bottom:1132.649850px;}
.y15f{bottom:1133.689800px;}
.y34{bottom:1139.345550px;}
.y67{bottom:1150.649850px;}
.y15e{bottom:1151.689800px;}
.y33{bottom:1163.345550px;}
.y5{bottom:1166.150700px;}
.y66{bottom:1168.649850px;}
.y15d{bottom:1169.689800px;}
.y32{bottom:1207.994250px;}
.hc{height:26.133187px;}
.hd{height:26.525391px;}
.h2{height:38.724000px;}
.ha{height:40.826953px;}
.h7{height:41.064258px;}
.h17{height:43.326563px;}
.h11{height:43.478906px;}
.h4{height:44.256000px;}
.h19{height:49.487695px;}
.h18{height:49.625391px;}
.h9{height:51.593555px;}
.he{height:51.737109px;}
.h8{height:52.225195px;}
.h13{height:52.646484px;}
.h10{height:54.752344px;}
.h12{height:54.904688px;}
.h3{height:55.320000px;}
.hf{height:55.422656px;}
.h6{height:60.543457px;}
.hb{height:73.705078px;}
.h14{height:74.660156px;}
.h5{height:81.602051px;}
.h16{height:85.646484px;}
.h15{height:107.660156px;}
.h1{height:1264.500000px;}
.h0{height:1264.586850px;}
.w0{width:885.603450px;}
.w1{width:885.750000px;}
.x0{left:0.000000px;}
.x5{left:11.154450px;}
.x4{left:81.193800px;}
.x2{left:91.843800px;}
.x6{left:102.453600px;}
.xb{left:110.115450px;}
.x7{left:178.023750px;}
.x8{left:217.350150px;}
.xc{left:362.224200px;}
.x9{left:443.496450px;}
.xa{left:588.249450px;}
.x3{left:722.496300px;}
.x1{left:786.514500px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.424000pt;}
.v3{vertical-align:29.333333pt;}
.v4{vertical-align:58.666667pt;}
.ls7{letter-spacing:-2.551467pt;}
.ls6{letter-spacing:-1.973333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000267pt;}
.ls3{letter-spacing:0.554667pt;}
.ls1{letter-spacing:69.514667pt;}
.ls5{letter-spacing:282.873600pt;}
.ls4{letter-spacing:290.112000pt;}
.ws3{word-spacing:-15.333333pt;}
.ws33{word-spacing:-13.866667pt;}
.ws4{word-spacing:-13.066667pt;}
.ws39{word-spacing:-12.533333pt;}
.ws5{word-spacing:-10.666667pt;}
.ws0{word-spacing:-10.378667pt;}
.ws2{word-spacing:-8.939333pt;}
.ws28{word-spacing:-2.828800pt;}
.ws24{word-spacing:-1.941333pt;}
.ws45{word-spacing:-1.804800pt;}
.ws3e{word-spacing:-1.604267pt;}
.ws7{word-spacing:-1.463467pt;}
.ws35{word-spacing:-1.442133pt;}
.ws46{word-spacing:-1.203200pt;}
.ws40{word-spacing:-1.102933pt;}
.ws47{word-spacing:-0.852267pt;}
.ws44{word-spacing:-0.802133pt;}
.ws42{word-spacing:-0.601600pt;}
.ws9{word-spacing:-0.554667pt;}
.ws2e{word-spacing:-0.221867pt;}
.ws8{word-spacing:-0.156800pt;}
.ws2c{word-spacing:-0.055467pt;}
.ws1{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.ws30{word-spacing:0.055467pt;}
.ws27{word-spacing:0.110933pt;}
.ws34{word-spacing:0.166400pt;}
.ws41{word-spacing:0.300800pt;}
.ws31{word-spacing:0.332800pt;}
.ws43{word-spacing:0.401067pt;}
.ws2b{word-spacing:0.721067pt;}
.ws26{word-spacing:0.887467pt;}
.ws3b{word-spacing:0.952533pt;}
.ws2d{word-spacing:1.053867pt;}
.ws2a{word-spacing:1.164800pt;}
.ws23{word-spacing:1.275733pt;}
.ws32{word-spacing:1.664000pt;}
.ws25{word-spacing:1.774933pt;}
.ws3c{word-spacing:1.854933pt;}
.ws1c{word-spacing:1.941333pt;}
.ws37{word-spacing:1.996800pt;}
.ws3d{word-spacing:2.105600pt;}
.ws1f{word-spacing:2.163200pt;}
.ws1b{word-spacing:2.274133pt;}
.ws29{word-spacing:2.496000pt;}
.ws38{word-spacing:2.551467pt;}
.ws2f{word-spacing:2.606933pt;}
.ws3f{word-spacing:2.657067pt;}
.ws21{word-spacing:2.662400pt;}
.ws1e{word-spacing:2.773333pt;}
.wsc{word-spacing:3.328000pt;}
.ws20{word-spacing:3.660800pt;}
.wsa{word-spacing:3.771733pt;}
.ws36{word-spacing:3.938133pt;}
.ws22{word-spacing:4.215467pt;}
.ws3a{word-spacing:4.512000pt;}
.ws1d{word-spacing:4.770133pt;}
.wsb{word-spacing:6.101333pt;}
.ws12{word-spacing:43.523733pt;}
.wse{word-spacing:45.226667pt;}
.ws10{word-spacing:45.329600pt;}
.wsd{word-spacing:45.636267pt;}
.wsf{word-spacing:68.831467pt;}
.ws11{word-spacing:125.649600pt;}
.ws1a{word-spacing:156.106667pt;}
.ws14{word-spacing:173.522667pt;}
.ws19{word-spacing:177.066667pt;}
.ws18{word-spacing:185.866667pt;}
.ws13{word-spacing:190.400000pt;}
.ws15{word-spacing:210.264000pt;}
.ws17{word-spacing:248.000000pt;}
.ws16{word-spacing:269.540267pt;}
._0{margin-left:-2570.078933pt;}
._d{margin-left:-665.184000pt;}
._f{margin-left:-195.712000pt;}
._13{margin-left:-6.964693pt;}
._8{margin-left:-5.736960pt;}
._7{margin-left:-3.907893pt;}
._3{margin-left:-2.918133pt;}
._6{margin-left:-1.907733pt;}
._5{margin-left:-0.944640pt;}
._9{width:1.520960pt;}
._b{width:2.665600pt;}
._4{width:3.894667pt;}
._a{width:5.141227pt;}
._2{width:6.621600pt;}
._1{width:8.167467pt;}
._12{width:9.204160pt;}
._11{width:10.159787pt;}
._c{width:57.077333pt;}
._1f{width:123.733333pt;}
._20{width:132.533333pt;}
._21{width:165.333333pt;}
._1e{width:180.400000pt;}
._1d{width:189.850667pt;}
._1b{width:199.200000pt;}
._14{width:215.360000pt;}
._18{width:217.066667pt;}
._19{width:218.666667pt;}
._22{width:223.445333pt;}
._1c{width:232.000000pt;}
._15{width:247.066667pt;}
._17{width:260.400000pt;}
._1a{width:264.266667pt;}
._16{width:290.112000pt;}
._10{width:1425.490667pt;}
._e{width:2232.285867pt;}
.fs9{font-size:24.874667pt;}
.fsa{font-size:32.000000pt;}
.fs5{font-size:35.757333pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:41.600000pt;}
.fs2{font-size:42.666667pt;}
.fsc{font-size:50.133333pt;}
.fs7{font-size:52.266667pt;}
.fs1{font-size:53.333333pt;}
.fsb{font-size:55.466667pt;}
.fs4{font-size:61.333333pt;}
.fs8{font-size:74.666667pt;}
.fs3{font-size:82.666667pt;}
.y31{bottom:-18.514800pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.963067pt;}
.yc4{bottom:69.225067pt;}
.ye1{bottom:70.758133pt;}
.y65{bottom:77.505867pt;}
.yfb{bottom:78.799867pt;}
.y9f{bottom:79.177733pt;}
.y15c{bottom:79.555733pt;}
.y30{bottom:80.654533pt;}
.yc3{bottom:85.225067pt;}
.ye0{bottom:86.758133pt;}
.y2f{bottom:92.654533pt;}
.y64{bottom:93.505867pt;}
.yfa{bottom:94.799867pt;}
.y12f{bottom:95.051733pt;}
.y9e{bottom:95.177733pt;}
.y15b{bottom:95.555733pt;}
.yc2{bottom:101.225067pt;}
.ydf{bottom:102.758133pt;}
.y2e{bottom:104.654533pt;}
.y63{bottom:109.505867pt;}
.yf9{bottom:110.799867pt;}
.y12e{bottom:111.051733pt;}
.y9d{bottom:111.177733pt;}
.y15a{bottom:111.555733pt;}
.y2d{bottom:116.654667pt;}
.yc1{bottom:117.225067pt;}
.yde{bottom:118.758133pt;}
.yf8{bottom:126.799867pt;}
.y12d{bottom:127.051733pt;}
.y9c{bottom:127.177733pt;}
.y159{bottom:127.555733pt;}
.y2c{bottom:128.654667pt;}
.ydd{bottom:134.758133pt;}
.y2b{bottom:140.654667pt;}
.y62{bottom:141.379867pt;}
.yf7{bottom:142.799867pt;}
.y12c{bottom:143.051733pt;}
.y9b{bottom:143.177733pt;}
.y158{bottom:143.555733pt;}
.yc0{bottom:149.099067pt;}
.ydc{bottom:150.758133pt;}
.y2a{bottom:152.654800pt;}
.yf6{bottom:158.799867pt;}
.y12b{bottom:159.051733pt;}
.y9a{bottom:159.177733pt;}
.y157{bottom:159.555733pt;}
.y29{bottom:164.654800pt;}
.ydb{bottom:166.758133pt;}
.yf5{bottom:174.799867pt;}
.y12a{bottom:175.051733pt;}
.y99{bottom:175.177733pt;}
.y156{bottom:175.555733pt;}
.y28{bottom:176.654800pt;}
.ybf{bottom:180.973067pt;}
.yda{bottom:182.758133pt;}
.y27{bottom:188.654933pt;}
.y61{bottom:189.128000pt;}
.yf4{bottom:190.799867pt;}
.y129{bottom:191.051733pt;}
.y98{bottom:191.177733pt;}
.y155{bottom:191.555733pt;}
.ybe{bottom:196.973067pt;}
.yd9{bottom:198.758133pt;}
.y26{bottom:200.654933pt;}
.y60{bottom:205.128000pt;}
.yf3{bottom:206.799867pt;}
.y128{bottom:207.051733pt;}
.y97{bottom:207.177733pt;}
.y154{bottom:207.555733pt;}
.y25{bottom:212.654933pt;}
.ybd{bottom:212.973067pt;}
.yd8{bottom:214.758133pt;}
.y5f{bottom:221.128000pt;}
.yf2{bottom:222.799867pt;}
.y127{bottom:223.051733pt;}
.y96{bottom:223.177733pt;}
.y153{bottom:223.555733pt;}
.ybc{bottom:228.973067pt;}
.y5e{bottom:237.128000pt;}
.yf1{bottom:238.799867pt;}
.y126{bottom:239.051733pt;}
.y95{bottom:239.177733pt;}
.y152{bottom:239.555733pt;}
.ybb{bottom:244.973067pt;}
.yd7{bottom:245.876133pt;}
.y5d{bottom:253.128000pt;}
.yf0{bottom:254.799867pt;}
.y125{bottom:255.051733pt;}
.y94{bottom:255.177733pt;}
.y151{bottom:255.555733pt;}
.yba{bottom:260.973067pt;}
.y5c{bottom:269.128000pt;}
.yef{bottom:270.799867pt;}
.y124{bottom:271.051733pt;}
.y93{bottom:271.177733pt;}
.y150{bottom:271.555733pt;}
.yd6{bottom:277.750133pt;}
.y5b{bottom:285.128000pt;}
.yee{bottom:286.799867pt;}
.y123{bottom:287.051733pt;}
.y92{bottom:287.177733pt;}
.y14f{bottom:287.555733pt;}
.yb9{bottom:292.847067pt;}
.y5a{bottom:301.128000pt;}
.yed{bottom:302.799867pt;}
.y122{bottom:303.051733pt;}
.y91{bottom:303.177733pt;}
.y14e{bottom:303.555733pt;}
.y24{bottom:313.005467pt;}
.y59{bottom:317.128000pt;}
.yec{bottom:318.799867pt;}
.y121{bottom:319.051733pt;}
.y90{bottom:319.177733pt;}
.y14d{bottom:319.555733pt;}
.yd5{bottom:323.986400pt;}
.yb8{bottom:324.721067pt;}
.y23{bottom:327.672133pt;}
.y58{bottom:333.128000pt;}
.yeb{bottom:334.799867pt;}
.y120{bottom:335.051733pt;}
.y8f{bottom:335.177733pt;}
.y14c{bottom:335.555733pt;}
.yd4{bottom:339.986400pt;}
.yb7{bottom:340.721067pt;}
.y22{bottom:342.338800pt;}
.y57{bottom:349.128000pt;}
.yea{bottom:350.799867pt;}
.y11f{bottom:351.051733pt;}
.y8e{bottom:351.177733pt;}
.y14b{bottom:351.555733pt;}
.yd3{bottom:355.986400pt;}
.yb6{bottom:356.721067pt;}
.y21{bottom:357.005467pt;}
.y56{bottom:365.128000pt;}
.ye9{bottom:366.799867pt;}
.y11e{bottom:367.051733pt;}
.y8d{bottom:367.177733pt;}
.y14a{bottom:367.555733pt;}
.y20{bottom:371.672133pt;}
.yd2{bottom:371.986400pt;}
.yb5{bottom:372.721067pt;}
.y55{bottom:381.127867pt;}
.ye8{bottom:382.799867pt;}
.y11d{bottom:383.051733pt;}
.y8c{bottom:383.177733pt;}
.y149{bottom:383.555733pt;}
.y1f{bottom:386.338800pt;}
.yd1{bottom:387.986400pt;}
.yb4{bottom:388.721067pt;}
.y54{bottom:397.127867pt;}
.ye7{bottom:398.799867pt;}
.y11c{bottom:399.051733pt;}
.y8b{bottom:399.177733pt;}
.y148{bottom:399.555733pt;}
.y1e{bottom:401.005467pt;}
.yd0{bottom:403.986400pt;}
.yb3{bottom:404.721067pt;}
.y53{bottom:413.127867pt;}
.ye6{bottom:414.799867pt;}
.y11b{bottom:415.051733pt;}
.y8a{bottom:415.177733pt;}
.y147{bottom:415.555733pt;}
.y1d{bottom:415.672133pt;}
.ycf{bottom:419.986400pt;}
.yb2{bottom:420.721067pt;}
.y52{bottom:429.127867pt;}
.y1c{bottom:430.338800pt;}
.ye5{bottom:430.799867pt;}
.y11a{bottom:431.051733pt;}
.y146{bottom:431.555733pt;}
.yce{bottom:435.986400pt;}
.yb1{bottom:436.721067pt;}
.y1b{bottom:445.005467pt;}
.y51{bottom:445.127867pt;}
.ye4{bottom:446.799867pt;}
.y89{bottom:447.051733pt;}
.y145{bottom:447.555733pt;}
.yb0{bottom:452.721067pt;}
.y1a{bottom:459.672133pt;}
.y50{bottom:461.127867pt;}
.ye3{bottom:462.799867pt;}
.y119{bottom:463.051733pt;}
.y144{bottom:463.555733pt;}
.ycd{bottom:465.320533pt;}
.yaf{bottom:468.721067pt;}
.y19{bottom:474.338800pt;}
.y4f{bottom:477.127867pt;}
.ye2{bottom:478.799867pt;}
.y118{bottom:479.051733pt;}
.y143{bottom:479.555733pt;}
.yae{bottom:484.721067pt;}
.ycc{bottom:486.987200pt;}
.y4e{bottom:493.127867pt;}
.y88{bottom:494.799867pt;}
.y117{bottom:495.051733pt;}
.y142{bottom:495.555733pt;}
.yad{bottom:500.721067pt;}
.y18{bottom:502.339600pt;}
.ycb{bottom:506.898667pt;}
.y4d{bottom:509.127867pt;}
.y87{bottom:510.799867pt;}
.y116{bottom:511.051733pt;}
.yac{bottom:516.721067pt;}
.y17{bottom:522.339600pt;}
.y4c{bottom:525.127867pt;}
.y86{bottom:526.799867pt;}
.yca{bottom:526.810133pt;}
.y115{bottom:527.051733pt;}
.y141{bottom:527.429733pt;}
.yab{bottom:532.721067pt;}
.y4b{bottom:541.127867pt;}
.y85{bottom:542.799867pt;}
.y114{bottom:543.051733pt;}
.y17c{bottom:543.724267pt;}
.yc9{bottom:546.721600pt;}
.yaa{bottom:548.721067pt;}
.y4a{bottom:557.127867pt;}
.y84{bottom:558.799867pt;}
.y113{bottom:559.051733pt;}
.y17b{bottom:559.724267pt;}
.yc8{bottom:566.633067pt;}
.y16{bottom:569.006267pt;}
.y83{bottom:574.799867pt;}
.y112{bottom:575.051733pt;}
.y140{bottom:575.177733pt;}
.y17a{bottom:575.724267pt;}
.ya9{bottom:580.595067pt;}
.y15{bottom:583.672933pt;}
.yc7{bottom:586.544533pt;}
.y49{bottom:589.001867pt;}
.y82{bottom:590.799867pt;}
.y111{bottom:591.051733pt;}
.y13f{bottom:591.177733pt;}
.y179{bottom:591.724267pt;}
.yc6{bottom:593.877867pt;}
.y14{bottom:598.339600pt;}
.y81{bottom:606.799867pt;}
.y110{bottom:607.051733pt;}
.y13e{bottom:607.177733pt;}
.y178{bottom:607.724267pt;}
.ya8{bottom:612.469067pt;}
.y13{bottom:613.006267pt;}
.y80{bottom:622.799867pt;}
.y10f{bottom:623.051733pt;}
.y13d{bottom:623.177733pt;}
.yc5{bottom:623.681733pt;}
.y177{bottom:623.724267pt;}
.y12{bottom:627.672933pt;}
.ya7{bottom:628.469067pt;}
.y7f{bottom:638.799867pt;}
.y10e{bottom:639.051733pt;}
.y13c{bottom:639.177733pt;}
.y176{bottom:639.724267pt;}
.y11{bottom:642.339600pt;}
.ya6{bottom:644.469067pt;}
.y48{bottom:650.084133pt;}
.y7e{bottom:654.799867pt;}
.y10d{bottom:655.051733pt;}
.y13b{bottom:655.177733pt;}
.y175{bottom:655.724267pt;}
.y10{bottom:657.006267pt;}
.ya5{bottom:660.469067pt;}
.y47{bottom:666.084133pt;}
.y7d{bottom:670.799867pt;}
.y10c{bottom:671.051733pt;}
.y13a{bottom:671.177733pt;}
.yf{bottom:671.672933pt;}
.y174{bottom:671.724267pt;}
.ya4{bottom:676.469067pt;}
.ye{bottom:686.339600pt;}
.y7c{bottom:686.799867pt;}
.y10b{bottom:687.051733pt;}
.y139{bottom:687.177733pt;}
.y173{bottom:687.724267pt;}
.ya3{bottom:692.469067pt;}
.yd{bottom:701.006267pt;}
.y7b{bottom:702.799867pt;}
.y10a{bottom:703.051733pt;}
.y138{bottom:703.177733pt;}
.y172{bottom:703.724267pt;}
.ya2{bottom:708.469067pt;}
.y46{bottom:708.750800pt;}
.yc{bottom:715.672933pt;}
.y7a{bottom:718.799867pt;}
.y109{bottom:719.051733pt;}
.y137{bottom:719.177733pt;}
.y171{bottom:719.724267pt;}
.y45{bottom:723.417467pt;}
.ya1{bottom:724.469067pt;}
.yb{bottom:730.339600pt;}
.y79{bottom:734.799867pt;}
.y108{bottom:735.051733pt;}
.y136{bottom:735.177733pt;}
.y170{bottom:735.724267pt;}
.y44{bottom:738.084133pt;}
.y78{bottom:750.799867pt;}
.y107{bottom:751.051733pt;}
.y135{bottom:751.177733pt;}
.y16f{bottom:751.724267pt;}
.y43{bottom:752.750800pt;}
.ya0{bottom:756.343067pt;}
.ya{bottom:758.340400pt;}
.y77{bottom:766.799867pt;}
.y106{bottom:767.051733pt;}
.y134{bottom:767.177733pt;}
.y42{bottom:767.417467pt;}
.y16e{bottom:767.724267pt;}
.y76{bottom:782.799867pt;}
.y105{bottom:783.051733pt;}
.y133{bottom:783.177733pt;}
.y16d{bottom:783.724267pt;}
.y75{bottom:798.799867pt;}
.y104{bottom:799.051733pt;}
.y132{bottom:799.177733pt;}
.y16c{bottom:799.724267pt;}
.y9{bottom:801.007067pt;}
.y41{bottom:808.750800pt;}
.y74{bottom:814.799867pt;}
.y103{bottom:815.051733pt;}
.y131{bottom:815.177733pt;}
.y16b{bottom:815.724267pt;}
.y8{bottom:817.007067pt;}
.y40{bottom:823.417467pt;}
.y73{bottom:830.799867pt;}
.y102{bottom:831.051733pt;}
.y130{bottom:831.177733pt;}
.y16a{bottom:831.724267pt;}
.y3f{bottom:838.084133pt;}
.y7{bottom:846.341333pt;}
.y72{bottom:846.799867pt;}
.y101{bottom:847.051733pt;}
.y169{bottom:847.724267pt;}
.y3e{bottom:852.750800pt;}
.y71{bottom:862.799867pt;}
.y100{bottom:863.051733pt;}
.y168{bottom:863.724267pt;}
.y3d{bottom:867.417467pt;}
.y6{bottom:867.674667pt;}
.y70{bottom:878.799867pt;}
.yff{bottom:879.051733pt;}
.y167{bottom:879.724267pt;}
.y3c{bottom:882.084133pt;}
.y6f{bottom:894.799867pt;}
.yfe{bottom:895.051733pt;}
.y166{bottom:895.724267pt;}
.y3b{bottom:896.750800pt;}
.y6e{bottom:910.799867pt;}
.yfd{bottom:911.051733pt;}
.y3a{bottom:911.417467pt;}
.y165{bottom:911.724267pt;}
.y39{bottom:926.084133pt;}
.y6d{bottom:926.799867pt;}
.y164{bottom:927.724267pt;}
.y38{bottom:940.750800pt;}
.y6c{bottom:942.799867pt;}
.yfc{bottom:942.925733pt;}
.y163{bottom:943.724267pt;}
.y4{bottom:947.366933pt;}
.y37{bottom:955.417467pt;}
.y6b{bottom:958.799867pt;}
.y162{bottom:959.724267pt;}
.y36{bottom:970.084133pt;}
.y6a{bottom:974.799867pt;}
.y161{bottom:975.724267pt;}
.y35{bottom:984.750800pt;}
.y3{bottom:986.044000pt;}
.y69{bottom:990.799867pt;}
.y160{bottom:991.724267pt;}
.y2{bottom:1002.044000pt;}
.y68{bottom:1006.799867pt;}
.y15f{bottom:1007.724267pt;}
.y34{bottom:1012.751600pt;}
.y67{bottom:1022.799867pt;}
.y15e{bottom:1023.724267pt;}
.y33{bottom:1034.084933pt;}
.y5{bottom:1036.578400pt;}
.y66{bottom:1038.799867pt;}
.y15d{bottom:1039.724267pt;}
.y32{bottom:1073.772667pt;}
.hc{height:23.229500pt;}
.hd{height:23.578125pt;}
.h2{height:34.421333pt;}
.ha{height:36.290625pt;}
.h7{height:36.501562pt;}
.h17{height:38.512500pt;}
.h11{height:38.647917pt;}
.h4{height:39.338667pt;}
.h19{height:43.989063pt;}
.h18{height:44.111458pt;}
.h9{height:45.860937pt;}
.he{height:45.988542pt;}
.h8{height:46.422396pt;}
.h13{height:46.796875pt;}
.h10{height:48.668750pt;}
.h12{height:48.804167pt;}
.h3{height:49.173333pt;}
.hf{height:49.264583pt;}
.h6{height:53.816406pt;}
.hb{height:65.515625pt;}
.h14{height:66.364583pt;}
.h5{height:72.535156pt;}
.h16{height:76.130208pt;}
.h15{height:95.697917pt;}
.h1{height:1124.000000pt;}
.h0{height:1124.077200pt;}
.w0{width:787.203067pt;}
.w1{width:787.333333pt;}
.x0{left:0.000000pt;}
.x5{left:9.915067pt;}
.x4{left:72.172267pt;}
.x2{left:81.638933pt;}
.x6{left:91.069867pt;}
.xb{left:97.880400pt;}
.x7{left:158.243333pt;}
.x8{left:193.200133pt;}
.xc{left:321.977067pt;}
.x9{left:394.219067pt;}
.xa{left:522.888400pt;}
.x3{left:642.218933pt;}
.x1{left:699.124000pt;}
}




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